_primary.vhd
来自「SDRAM 控制器」· VHDL 代码 · 共 27 行
VHD
27 行
library verilog;use verilog.vl_types.all;entity altaccumulate is generic( width_in : integer := 4; width_out : integer := 8; lpm_representation: string := "UNSIGNED"; extra_latency : integer := 0; use_wys : string := "ON"; lpm_hint : string := "UNUSED"; lpm_type : string := "altaccumulate" ); port( cin : in vl_logic; data : in vl_logic_vector; add_sub : in vl_logic; clock : in vl_logic; sload : in vl_logic; clken : in vl_logic; sign_data : in vl_logic; aclr : in vl_logic; result : out vl_logic_vector; cout : out vl_logic; overflow : out vl_logic );end altaccumulate;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?