_primary.vhd
来自「用verilog鉴定10010序列」· VHDL 代码 · 共 20 行
VHD
20 行
library verilog;use verilog.vl_types.all;entity lpm_latch is generic( lpm_width : integer := 1; lpm_avalue : string := "UNUSED"; lpm_pvalue : string := "UNUSED"; lpm_type : string := "lpm_latch"; lpm_hint : string := "UNUSED" ); port( data : in vl_logic_vector; gate : in vl_logic; aclr : in vl_logic; aset : in vl_logic; aconst : in vl_logic; q : out vl_logic_vector );end lpm_latch;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?