📄 l_block.vhd
字号:
-- POSITIVE LEVEL TRIGGERED FLIP FLOPS D???library ieee ;use ieee.std_logic_1164.all ;use ieee.std_logic_arith.all ;use work.butter_lib.all ;use ieee.std_logic_unsigned.all ;entity l_block is port ( data_l : in std_logic_vector(31 downto 0) ; trigger_l : in std_logic ; l_out : out std_logic_vector(31 downto 0) ) ;end l_block ;architecture rtl of l_block isbeginprocess(data_l , trigger_l)beginif (trigger_l='1') thenl_out <= data_l ;end if ;end process ;end rtl ;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -