mirror of
https://github.com/KevinMidboe/linguist.git
synced 2025-12-08 20:38:47 +00:00
Rename samples subdirectories
This commit is contained in:
14
samples/VHDL/foo.vhd
Normal file
14
samples/VHDL/foo.vhd
Normal file
@@ -0,0 +1,14 @@
|
||||
-- VHDL example file
|
||||
|
||||
library ieee;
|
||||
use ieee.std_logic_1164.all;
|
||||
|
||||
entity inverter is
|
||||
port(a : in std_logic;
|
||||
b : out std_logic);
|
||||
end entity;
|
||||
|
||||
architecture rtl of inverter is
|
||||
begin
|
||||
b <= not a;
|
||||
end architecture;
|
||||
Reference in New Issue
Block a user