📄 coregen.xml
字号:
<?xml version="1.0" encoding="UTF-8"?>
<RootFolder label="COREGEN" treetype="folder" language="COREGEN">
<Folder label="VERILOG Component Instantiation" treetype="folder">
<Template label="core_counnt" treetype="template">
// The following must be inserted into your Verilog file for this
// core to be instantiated. Change the instance name and port connections
// (in parentheses) to your own signal names.
core_counnt YourInstanceName (
.Q(Q),
.CLK(CLK),
.UP(UP),
.LOAD(LOAD),
.L(L),
.CE(CE),
.ACLR(ACLR));
</Template>
</Folder>
<Folder label="VHDL Component Instantiation" treetype="folder">
<Template label="core_counnt" treetype="template">
-- The following code must appear in the VHDL architecture header:
component core_counnt
port (
Q: OUT std_logic_VECTOR(15 downto 0);
CLK: IN std_logic;
UP: IN std_logic;
LOAD: IN std_logic;
L: IN std_logic_VECTOR(15 downto 0);
CE: IN std_logic;
ACLR: IN std_logic);
end component;
-------------------------------------------------------------
-- The following code must appear in the VHDL architecture body.
-- Substitute your own instance name and net names.
your_instance_name : core_counnt
port map (
Q => Q,
CLK => CLK,
UP => UP,
LOAD => LOAD,
L => L,
CE => CE,
ACLR => ACLR);
</Template>
</Folder>
</RootFolder>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -