Working version with loader from schmidt trigger
This commit is contained in:
BIN
Binary file not shown.
@@ -0,0 +1,766 @@
|
||||
--altsyncram ADDRESS_REG_B="CLOCK1" CBX_DECLARE_ALL_CONNECTED_PORTS="OFF" CLOCK_ENABLE_INPUT_A="BYPASS" CLOCK_ENABLE_INPUT_B="BYPASS" CLOCK_ENABLE_OUTPUT_A="BYPASS" CLOCK_ENABLE_OUTPUT_B="BYPASS" CYCLONEII_M4K_COMPATIBILITY="ON" DEVICE_FAMILY="Cyclone IV E" INDATA_REG_B="CLOCK1" LOW_POWER_MODE="AUTO" NUMWORDS_A=16384 NUMWORDS_B=16384 OPERATION_MODE="BIDIR_DUAL_PORT" OUTDATA_ACLR_A="NONE" OUTDATA_ACLR_B="NONE" OUTDATA_REG_A="CLOCK0" OUTDATA_REG_B="CLOCK1" POWER_UP_UNINITIALIZED="FALSE" read_during_write_mode_port_a="NEW_DATA_NO_NBE_READ" read_during_write_mode_port_b="NEW_DATA_NO_NBE_READ" WIDTH_A=8 WIDTH_B=8 WIDTH_BYTEENA_A=1 WIDTH_BYTEENA_B=1 WIDTHAD_A=14 WIDTHAD_B=14 WRCONTROL_WRADDRESS_REG_B="CLOCK1" address_a address_b clock0 clock1 data_a data_b q_a q_b wren_a wren_b CARRY_CHAIN="MANUAL" CARRY_CHAIN_LENGTH=48
|
||||
--VERSION_BEGIN 13.1 cbx_altsyncram 2013:10:17:09:48:19:SJ cbx_cycloneii 2013:10:17:09:48:19:SJ cbx_lpm_add_sub 2013:10:17:09:48:19:SJ cbx_lpm_compare 2013:10:17:09:48:19:SJ cbx_lpm_decode 2013:10:17:09:48:19:SJ cbx_lpm_mux 2013:10:17:09:48:19:SJ cbx_mgl 2013:10:17:09:48:49:SJ cbx_stratix 2013:10:17:09:48:19:SJ cbx_stratixii 2013:10:17:09:48:19:SJ cbx_stratixiii 2013:10:17:09:48:19:SJ cbx_stratixv 2013:10:17:09:48:19:SJ cbx_util_mgl 2013:10:17:09:48:19:SJ VERSION_END
|
||||
|
||||
|
||||
-- Copyright (C) 1991-2013 Altera Corporation
|
||||
-- Your use of Altera Corporation's design tools, logic functions
|
||||
-- and other software and tools, and its AMPP partner logic
|
||||
-- functions, and any output files from any of the foregoing
|
||||
-- (including device programming or simulation files), and any
|
||||
-- associated documentation or information are expressly subject
|
||||
-- to the terms and conditions of the Altera Program License
|
||||
-- Subscription Agreement, Altera MegaCore Function License
|
||||
-- Agreement, or other applicable license agreement, including,
|
||||
-- without limitation, that your use is for the sole purpose of
|
||||
-- programming logic devices manufactured by Altera and sold by
|
||||
-- Altera or its authorized distributors. Please refer to the
|
||||
-- applicable agreement for further details.
|
||||
|
||||
|
||||
FUNCTION decode_jsa (data[0..0], enable)
|
||||
RETURNS ( eq[1..0]);
|
||||
FUNCTION decode_c8a (data[0..0])
|
||||
RETURNS ( eq[1..0]);
|
||||
FUNCTION mux_3nb (data[15..0], sel[0..0])
|
||||
RETURNS ( result[7..0]);
|
||||
FUNCTION cycloneive_ram_block (clk0, clk1, clr0, clr1, ena0, ena1, ena2, ena3, portaaddr[PORT_A_ADDRESS_WIDTH-1..0], portaaddrstall, portabyteenamasks[PORT_A_BYTE_ENABLE_MASK_WIDTH-1..0], portadatain[PORT_A_DATA_WIDTH-1..0], portare, portawe, portbaddr[PORT_B_ADDRESS_WIDTH-1..0], portbaddrstall, portbbyteenamasks[PORT_B_BYTE_ENABLE_MASK_WIDTH-1..0], portbdatain[PORT_B_DATA_WIDTH-1..0], portbre, portbwe)
|
||||
WITH ( CLK0_CORE_CLOCK_ENABLE, CLK0_INPUT_CLOCK_ENABLE, CLK0_OUTPUT_CLOCK_ENABLE, CLK1_CORE_CLOCK_ENABLE, CLK1_INPUT_CLOCK_ENABLE, CLK1_OUTPUT_CLOCK_ENABLE, CONNECTIVITY_CHECKING, DATA_INTERLEAVE_OFFSET_IN_BITS, DATA_INTERLEAVE_WIDTH_IN_BITS, DONT_POWER_OPTIMIZE, INIT_FILE, INIT_FILE_LAYOUT, init_file_restructured, LOGICAL_RAM_NAME, mem_init0, mem_init1, mem_init2, mem_init3, mem_init4, MIXED_PORT_FEED_THROUGH_MODE, OPERATION_MODE, PORT_A_ADDRESS_CLEAR, PORT_A_ADDRESS_WIDTH = 1, PORT_A_BYTE_ENABLE_MASK_WIDTH = 1, PORT_A_BYTE_SIZE, PORT_A_DATA_OUT_CLEAR, PORT_A_DATA_OUT_CLOCK, PORT_A_DATA_WIDTH = 1, PORT_A_FIRST_ADDRESS, PORT_A_FIRST_BIT_NUMBER, PORT_A_LAST_ADDRESS, PORT_A_LOGICAL_RAM_DEPTH, PORT_A_LOGICAL_RAM_WIDTH, PORT_A_READ_DURING_WRITE_MODE, PORT_B_ADDRESS_CLEAR, PORT_B_ADDRESS_CLOCK, PORT_B_ADDRESS_WIDTH = 1, PORT_B_BYTE_ENABLE_CLOCK, PORT_B_BYTE_ENABLE_MASK_WIDTH = 1, PORT_B_BYTE_SIZE, PORT_B_DATA_IN_CLOCK, PORT_B_DATA_OUT_CLEAR, PORT_B_DATA_OUT_CLOCK, PORT_B_DATA_WIDTH = 1, PORT_B_FIRST_ADDRESS, PORT_B_FIRST_BIT_NUMBER, PORT_B_LAST_ADDRESS, PORT_B_LOGICAL_RAM_DEPTH, PORT_B_LOGICAL_RAM_WIDTH, PORT_B_READ_DURING_WRITE_MODE, PORT_B_READ_ENABLE_CLOCK, PORT_B_WRITE_ENABLE_CLOCK, POWER_UP_UNINITIALIZED, RAM_BLOCK_TYPE, SAFE_WRITE, WIDTH_ECCSTATUS)
|
||||
RETURNS ( portadataout[PORT_A_DATA_WIDTH-1..0], portbdataout[PORT_B_DATA_WIDTH-1..0]);
|
||||
|
||||
--synthesis_resources = M9K 16 reg 4
|
||||
OPTIONS ALTERA_INTERNAL_OPTION = "OPTIMIZE_POWER_DURING_SYNTHESIS=NORMAL_COMPILATION";
|
||||
|
||||
SUBDESIGN altsyncram_q7c2
|
||||
(
|
||||
address_a[13..0] : input;
|
||||
address_b[13..0] : input;
|
||||
clock0 : input;
|
||||
clock1 : input;
|
||||
data_a[7..0] : input;
|
||||
data_b[7..0] : input;
|
||||
q_a[7..0] : output;
|
||||
q_b[7..0] : output;
|
||||
wren_a : input;
|
||||
wren_b : input;
|
||||
)
|
||||
VARIABLE
|
||||
address_reg_a[0..0] : dffe;
|
||||
address_reg_b[0..0] : dffe;
|
||||
out_address_reg_a[0..0] : dffe;
|
||||
out_address_reg_b[0..0] : dffe;
|
||||
decode2 : decode_jsa;
|
||||
decode3 : decode_jsa;
|
||||
rden_decode_a : decode_c8a;
|
||||
rden_decode_b : decode_c8a;
|
||||
mux4 : mux_3nb;
|
||||
mux5 : mux_3nb;
|
||||
ram_block1a0 : cycloneive_ram_block
|
||||
WITH (
|
||||
CLK0_CORE_CLOCK_ENABLE = "ena0",
|
||||
CLK0_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK0_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_CORE_CLOCK_ENABLE = "ena1",
|
||||
CLK1_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CONNECTIVITY_CHECKING = "OFF",
|
||||
LOGICAL_RAM_NAME = "ALTSYNCRAM",
|
||||
MIXED_PORT_FEED_THROUGH_MODE = "dont_care",
|
||||
OPERATION_MODE = "bidir_dual_port",
|
||||
PORT_A_ADDRESS_WIDTH = 13,
|
||||
PORT_A_DATA_OUT_CLEAR = "none",
|
||||
PORT_A_DATA_OUT_CLOCK = "clock0",
|
||||
PORT_A_DATA_WIDTH = 1,
|
||||
PORT_A_FIRST_ADDRESS = 0,
|
||||
PORT_A_FIRST_BIT_NUMBER = 0,
|
||||
PORT_A_LAST_ADDRESS = 8191,
|
||||
PORT_A_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_A_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_A_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_ADDRESS_CLOCK = "clock1",
|
||||
PORT_B_ADDRESS_WIDTH = 13,
|
||||
PORT_B_DATA_IN_CLOCK = "clock1",
|
||||
PORT_B_DATA_OUT_CLEAR = "none",
|
||||
PORT_B_DATA_OUT_CLOCK = "clock1",
|
||||
PORT_B_DATA_WIDTH = 1,
|
||||
PORT_B_FIRST_ADDRESS = 0,
|
||||
PORT_B_FIRST_BIT_NUMBER = 0,
|
||||
PORT_B_LAST_ADDRESS = 8191,
|
||||
PORT_B_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_B_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_B_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_READ_ENABLE_CLOCK = "clock1",
|
||||
PORT_B_WRITE_ENABLE_CLOCK = "clock1",
|
||||
POWER_UP_UNINITIALIZED = "false",
|
||||
RAM_BLOCK_TYPE = "AUTO"
|
||||
);
|
||||
ram_block1a1 : cycloneive_ram_block
|
||||
WITH (
|
||||
CLK0_CORE_CLOCK_ENABLE = "ena0",
|
||||
CLK0_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK0_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_CORE_CLOCK_ENABLE = "ena1",
|
||||
CLK1_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CONNECTIVITY_CHECKING = "OFF",
|
||||
LOGICAL_RAM_NAME = "ALTSYNCRAM",
|
||||
MIXED_PORT_FEED_THROUGH_MODE = "dont_care",
|
||||
OPERATION_MODE = "bidir_dual_port",
|
||||
PORT_A_ADDRESS_WIDTH = 13,
|
||||
PORT_A_DATA_OUT_CLEAR = "none",
|
||||
PORT_A_DATA_OUT_CLOCK = "clock0",
|
||||
PORT_A_DATA_WIDTH = 1,
|
||||
PORT_A_FIRST_ADDRESS = 0,
|
||||
PORT_A_FIRST_BIT_NUMBER = 1,
|
||||
PORT_A_LAST_ADDRESS = 8191,
|
||||
PORT_A_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_A_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_A_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_ADDRESS_CLOCK = "clock1",
|
||||
PORT_B_ADDRESS_WIDTH = 13,
|
||||
PORT_B_DATA_IN_CLOCK = "clock1",
|
||||
PORT_B_DATA_OUT_CLEAR = "none",
|
||||
PORT_B_DATA_OUT_CLOCK = "clock1",
|
||||
PORT_B_DATA_WIDTH = 1,
|
||||
PORT_B_FIRST_ADDRESS = 0,
|
||||
PORT_B_FIRST_BIT_NUMBER = 1,
|
||||
PORT_B_LAST_ADDRESS = 8191,
|
||||
PORT_B_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_B_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_B_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_READ_ENABLE_CLOCK = "clock1",
|
||||
PORT_B_WRITE_ENABLE_CLOCK = "clock1",
|
||||
POWER_UP_UNINITIALIZED = "false",
|
||||
RAM_BLOCK_TYPE = "AUTO"
|
||||
);
|
||||
ram_block1a2 : cycloneive_ram_block
|
||||
WITH (
|
||||
CLK0_CORE_CLOCK_ENABLE = "ena0",
|
||||
CLK0_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK0_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_CORE_CLOCK_ENABLE = "ena1",
|
||||
CLK1_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CONNECTIVITY_CHECKING = "OFF",
|
||||
LOGICAL_RAM_NAME = "ALTSYNCRAM",
|
||||
MIXED_PORT_FEED_THROUGH_MODE = "dont_care",
|
||||
OPERATION_MODE = "bidir_dual_port",
|
||||
PORT_A_ADDRESS_WIDTH = 13,
|
||||
PORT_A_DATA_OUT_CLEAR = "none",
|
||||
PORT_A_DATA_OUT_CLOCK = "clock0",
|
||||
PORT_A_DATA_WIDTH = 1,
|
||||
PORT_A_FIRST_ADDRESS = 0,
|
||||
PORT_A_FIRST_BIT_NUMBER = 2,
|
||||
PORT_A_LAST_ADDRESS = 8191,
|
||||
PORT_A_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_A_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_A_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_ADDRESS_CLOCK = "clock1",
|
||||
PORT_B_ADDRESS_WIDTH = 13,
|
||||
PORT_B_DATA_IN_CLOCK = "clock1",
|
||||
PORT_B_DATA_OUT_CLEAR = "none",
|
||||
PORT_B_DATA_OUT_CLOCK = "clock1",
|
||||
PORT_B_DATA_WIDTH = 1,
|
||||
PORT_B_FIRST_ADDRESS = 0,
|
||||
PORT_B_FIRST_BIT_NUMBER = 2,
|
||||
PORT_B_LAST_ADDRESS = 8191,
|
||||
PORT_B_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_B_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_B_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_READ_ENABLE_CLOCK = "clock1",
|
||||
PORT_B_WRITE_ENABLE_CLOCK = "clock1",
|
||||
POWER_UP_UNINITIALIZED = "false",
|
||||
RAM_BLOCK_TYPE = "AUTO"
|
||||
);
|
||||
ram_block1a3 : cycloneive_ram_block
|
||||
WITH (
|
||||
CLK0_CORE_CLOCK_ENABLE = "ena0",
|
||||
CLK0_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK0_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_CORE_CLOCK_ENABLE = "ena1",
|
||||
CLK1_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CONNECTIVITY_CHECKING = "OFF",
|
||||
LOGICAL_RAM_NAME = "ALTSYNCRAM",
|
||||
MIXED_PORT_FEED_THROUGH_MODE = "dont_care",
|
||||
OPERATION_MODE = "bidir_dual_port",
|
||||
PORT_A_ADDRESS_WIDTH = 13,
|
||||
PORT_A_DATA_OUT_CLEAR = "none",
|
||||
PORT_A_DATA_OUT_CLOCK = "clock0",
|
||||
PORT_A_DATA_WIDTH = 1,
|
||||
PORT_A_FIRST_ADDRESS = 0,
|
||||
PORT_A_FIRST_BIT_NUMBER = 3,
|
||||
PORT_A_LAST_ADDRESS = 8191,
|
||||
PORT_A_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_A_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_A_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_ADDRESS_CLOCK = "clock1",
|
||||
PORT_B_ADDRESS_WIDTH = 13,
|
||||
PORT_B_DATA_IN_CLOCK = "clock1",
|
||||
PORT_B_DATA_OUT_CLEAR = "none",
|
||||
PORT_B_DATA_OUT_CLOCK = "clock1",
|
||||
PORT_B_DATA_WIDTH = 1,
|
||||
PORT_B_FIRST_ADDRESS = 0,
|
||||
PORT_B_FIRST_BIT_NUMBER = 3,
|
||||
PORT_B_LAST_ADDRESS = 8191,
|
||||
PORT_B_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_B_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_B_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_READ_ENABLE_CLOCK = "clock1",
|
||||
PORT_B_WRITE_ENABLE_CLOCK = "clock1",
|
||||
POWER_UP_UNINITIALIZED = "false",
|
||||
RAM_BLOCK_TYPE = "AUTO"
|
||||
);
|
||||
ram_block1a4 : cycloneive_ram_block
|
||||
WITH (
|
||||
CLK0_CORE_CLOCK_ENABLE = "ena0",
|
||||
CLK0_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK0_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_CORE_CLOCK_ENABLE = "ena1",
|
||||
CLK1_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CONNECTIVITY_CHECKING = "OFF",
|
||||
LOGICAL_RAM_NAME = "ALTSYNCRAM",
|
||||
MIXED_PORT_FEED_THROUGH_MODE = "dont_care",
|
||||
OPERATION_MODE = "bidir_dual_port",
|
||||
PORT_A_ADDRESS_WIDTH = 13,
|
||||
PORT_A_DATA_OUT_CLEAR = "none",
|
||||
PORT_A_DATA_OUT_CLOCK = "clock0",
|
||||
PORT_A_DATA_WIDTH = 1,
|
||||
PORT_A_FIRST_ADDRESS = 0,
|
||||
PORT_A_FIRST_BIT_NUMBER = 4,
|
||||
PORT_A_LAST_ADDRESS = 8191,
|
||||
PORT_A_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_A_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_A_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_ADDRESS_CLOCK = "clock1",
|
||||
PORT_B_ADDRESS_WIDTH = 13,
|
||||
PORT_B_DATA_IN_CLOCK = "clock1",
|
||||
PORT_B_DATA_OUT_CLEAR = "none",
|
||||
PORT_B_DATA_OUT_CLOCK = "clock1",
|
||||
PORT_B_DATA_WIDTH = 1,
|
||||
PORT_B_FIRST_ADDRESS = 0,
|
||||
PORT_B_FIRST_BIT_NUMBER = 4,
|
||||
PORT_B_LAST_ADDRESS = 8191,
|
||||
PORT_B_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_B_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_B_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_READ_ENABLE_CLOCK = "clock1",
|
||||
PORT_B_WRITE_ENABLE_CLOCK = "clock1",
|
||||
POWER_UP_UNINITIALIZED = "false",
|
||||
RAM_BLOCK_TYPE = "AUTO"
|
||||
);
|
||||
ram_block1a5 : cycloneive_ram_block
|
||||
WITH (
|
||||
CLK0_CORE_CLOCK_ENABLE = "ena0",
|
||||
CLK0_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK0_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_CORE_CLOCK_ENABLE = "ena1",
|
||||
CLK1_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CONNECTIVITY_CHECKING = "OFF",
|
||||
LOGICAL_RAM_NAME = "ALTSYNCRAM",
|
||||
MIXED_PORT_FEED_THROUGH_MODE = "dont_care",
|
||||
OPERATION_MODE = "bidir_dual_port",
|
||||
PORT_A_ADDRESS_WIDTH = 13,
|
||||
PORT_A_DATA_OUT_CLEAR = "none",
|
||||
PORT_A_DATA_OUT_CLOCK = "clock0",
|
||||
PORT_A_DATA_WIDTH = 1,
|
||||
PORT_A_FIRST_ADDRESS = 0,
|
||||
PORT_A_FIRST_BIT_NUMBER = 5,
|
||||
PORT_A_LAST_ADDRESS = 8191,
|
||||
PORT_A_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_A_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_A_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_ADDRESS_CLOCK = "clock1",
|
||||
PORT_B_ADDRESS_WIDTH = 13,
|
||||
PORT_B_DATA_IN_CLOCK = "clock1",
|
||||
PORT_B_DATA_OUT_CLEAR = "none",
|
||||
PORT_B_DATA_OUT_CLOCK = "clock1",
|
||||
PORT_B_DATA_WIDTH = 1,
|
||||
PORT_B_FIRST_ADDRESS = 0,
|
||||
PORT_B_FIRST_BIT_NUMBER = 5,
|
||||
PORT_B_LAST_ADDRESS = 8191,
|
||||
PORT_B_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_B_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_B_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_READ_ENABLE_CLOCK = "clock1",
|
||||
PORT_B_WRITE_ENABLE_CLOCK = "clock1",
|
||||
POWER_UP_UNINITIALIZED = "false",
|
||||
RAM_BLOCK_TYPE = "AUTO"
|
||||
);
|
||||
ram_block1a6 : cycloneive_ram_block
|
||||
WITH (
|
||||
CLK0_CORE_CLOCK_ENABLE = "ena0",
|
||||
CLK0_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK0_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_CORE_CLOCK_ENABLE = "ena1",
|
||||
CLK1_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CONNECTIVITY_CHECKING = "OFF",
|
||||
LOGICAL_RAM_NAME = "ALTSYNCRAM",
|
||||
MIXED_PORT_FEED_THROUGH_MODE = "dont_care",
|
||||
OPERATION_MODE = "bidir_dual_port",
|
||||
PORT_A_ADDRESS_WIDTH = 13,
|
||||
PORT_A_DATA_OUT_CLEAR = "none",
|
||||
PORT_A_DATA_OUT_CLOCK = "clock0",
|
||||
PORT_A_DATA_WIDTH = 1,
|
||||
PORT_A_FIRST_ADDRESS = 0,
|
||||
PORT_A_FIRST_BIT_NUMBER = 6,
|
||||
PORT_A_LAST_ADDRESS = 8191,
|
||||
PORT_A_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_A_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_A_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_ADDRESS_CLOCK = "clock1",
|
||||
PORT_B_ADDRESS_WIDTH = 13,
|
||||
PORT_B_DATA_IN_CLOCK = "clock1",
|
||||
PORT_B_DATA_OUT_CLEAR = "none",
|
||||
PORT_B_DATA_OUT_CLOCK = "clock1",
|
||||
PORT_B_DATA_WIDTH = 1,
|
||||
PORT_B_FIRST_ADDRESS = 0,
|
||||
PORT_B_FIRST_BIT_NUMBER = 6,
|
||||
PORT_B_LAST_ADDRESS = 8191,
|
||||
PORT_B_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_B_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_B_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_READ_ENABLE_CLOCK = "clock1",
|
||||
PORT_B_WRITE_ENABLE_CLOCK = "clock1",
|
||||
POWER_UP_UNINITIALIZED = "false",
|
||||
RAM_BLOCK_TYPE = "AUTO"
|
||||
);
|
||||
ram_block1a7 : cycloneive_ram_block
|
||||
WITH (
|
||||
CLK0_CORE_CLOCK_ENABLE = "ena0",
|
||||
CLK0_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK0_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_CORE_CLOCK_ENABLE = "ena1",
|
||||
CLK1_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CONNECTIVITY_CHECKING = "OFF",
|
||||
LOGICAL_RAM_NAME = "ALTSYNCRAM",
|
||||
MIXED_PORT_FEED_THROUGH_MODE = "dont_care",
|
||||
OPERATION_MODE = "bidir_dual_port",
|
||||
PORT_A_ADDRESS_WIDTH = 13,
|
||||
PORT_A_DATA_OUT_CLEAR = "none",
|
||||
PORT_A_DATA_OUT_CLOCK = "clock0",
|
||||
PORT_A_DATA_WIDTH = 1,
|
||||
PORT_A_FIRST_ADDRESS = 0,
|
||||
PORT_A_FIRST_BIT_NUMBER = 7,
|
||||
PORT_A_LAST_ADDRESS = 8191,
|
||||
PORT_A_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_A_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_A_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_ADDRESS_CLOCK = "clock1",
|
||||
PORT_B_ADDRESS_WIDTH = 13,
|
||||
PORT_B_DATA_IN_CLOCK = "clock1",
|
||||
PORT_B_DATA_OUT_CLEAR = "none",
|
||||
PORT_B_DATA_OUT_CLOCK = "clock1",
|
||||
PORT_B_DATA_WIDTH = 1,
|
||||
PORT_B_FIRST_ADDRESS = 0,
|
||||
PORT_B_FIRST_BIT_NUMBER = 7,
|
||||
PORT_B_LAST_ADDRESS = 8191,
|
||||
PORT_B_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_B_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_B_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_READ_ENABLE_CLOCK = "clock1",
|
||||
PORT_B_WRITE_ENABLE_CLOCK = "clock1",
|
||||
POWER_UP_UNINITIALIZED = "false",
|
||||
RAM_BLOCK_TYPE = "AUTO"
|
||||
);
|
||||
ram_block1a8 : cycloneive_ram_block
|
||||
WITH (
|
||||
CLK0_CORE_CLOCK_ENABLE = "ena0",
|
||||
CLK0_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK0_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_CORE_CLOCK_ENABLE = "ena1",
|
||||
CLK1_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CONNECTIVITY_CHECKING = "OFF",
|
||||
LOGICAL_RAM_NAME = "ALTSYNCRAM",
|
||||
MIXED_PORT_FEED_THROUGH_MODE = "dont_care",
|
||||
OPERATION_MODE = "bidir_dual_port",
|
||||
PORT_A_ADDRESS_WIDTH = 13,
|
||||
PORT_A_DATA_OUT_CLEAR = "none",
|
||||
PORT_A_DATA_OUT_CLOCK = "clock0",
|
||||
PORT_A_DATA_WIDTH = 1,
|
||||
PORT_A_FIRST_ADDRESS = 8192,
|
||||
PORT_A_FIRST_BIT_NUMBER = 0,
|
||||
PORT_A_LAST_ADDRESS = 16383,
|
||||
PORT_A_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_A_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_A_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_ADDRESS_CLOCK = "clock1",
|
||||
PORT_B_ADDRESS_WIDTH = 13,
|
||||
PORT_B_DATA_IN_CLOCK = "clock1",
|
||||
PORT_B_DATA_OUT_CLEAR = "none",
|
||||
PORT_B_DATA_OUT_CLOCK = "clock1",
|
||||
PORT_B_DATA_WIDTH = 1,
|
||||
PORT_B_FIRST_ADDRESS = 8192,
|
||||
PORT_B_FIRST_BIT_NUMBER = 0,
|
||||
PORT_B_LAST_ADDRESS = 16383,
|
||||
PORT_B_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_B_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_B_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_READ_ENABLE_CLOCK = "clock1",
|
||||
PORT_B_WRITE_ENABLE_CLOCK = "clock1",
|
||||
POWER_UP_UNINITIALIZED = "false",
|
||||
RAM_BLOCK_TYPE = "AUTO"
|
||||
);
|
||||
ram_block1a9 : cycloneive_ram_block
|
||||
WITH (
|
||||
CLK0_CORE_CLOCK_ENABLE = "ena0",
|
||||
CLK0_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK0_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_CORE_CLOCK_ENABLE = "ena1",
|
||||
CLK1_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CONNECTIVITY_CHECKING = "OFF",
|
||||
LOGICAL_RAM_NAME = "ALTSYNCRAM",
|
||||
MIXED_PORT_FEED_THROUGH_MODE = "dont_care",
|
||||
OPERATION_MODE = "bidir_dual_port",
|
||||
PORT_A_ADDRESS_WIDTH = 13,
|
||||
PORT_A_DATA_OUT_CLEAR = "none",
|
||||
PORT_A_DATA_OUT_CLOCK = "clock0",
|
||||
PORT_A_DATA_WIDTH = 1,
|
||||
PORT_A_FIRST_ADDRESS = 8192,
|
||||
PORT_A_FIRST_BIT_NUMBER = 1,
|
||||
PORT_A_LAST_ADDRESS = 16383,
|
||||
PORT_A_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_A_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_A_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_ADDRESS_CLOCK = "clock1",
|
||||
PORT_B_ADDRESS_WIDTH = 13,
|
||||
PORT_B_DATA_IN_CLOCK = "clock1",
|
||||
PORT_B_DATA_OUT_CLEAR = "none",
|
||||
PORT_B_DATA_OUT_CLOCK = "clock1",
|
||||
PORT_B_DATA_WIDTH = 1,
|
||||
PORT_B_FIRST_ADDRESS = 8192,
|
||||
PORT_B_FIRST_BIT_NUMBER = 1,
|
||||
PORT_B_LAST_ADDRESS = 16383,
|
||||
PORT_B_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_B_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_B_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_READ_ENABLE_CLOCK = "clock1",
|
||||
PORT_B_WRITE_ENABLE_CLOCK = "clock1",
|
||||
POWER_UP_UNINITIALIZED = "false",
|
||||
RAM_BLOCK_TYPE = "AUTO"
|
||||
);
|
||||
ram_block1a10 : cycloneive_ram_block
|
||||
WITH (
|
||||
CLK0_CORE_CLOCK_ENABLE = "ena0",
|
||||
CLK0_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK0_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_CORE_CLOCK_ENABLE = "ena1",
|
||||
CLK1_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CONNECTIVITY_CHECKING = "OFF",
|
||||
LOGICAL_RAM_NAME = "ALTSYNCRAM",
|
||||
MIXED_PORT_FEED_THROUGH_MODE = "dont_care",
|
||||
OPERATION_MODE = "bidir_dual_port",
|
||||
PORT_A_ADDRESS_WIDTH = 13,
|
||||
PORT_A_DATA_OUT_CLEAR = "none",
|
||||
PORT_A_DATA_OUT_CLOCK = "clock0",
|
||||
PORT_A_DATA_WIDTH = 1,
|
||||
PORT_A_FIRST_ADDRESS = 8192,
|
||||
PORT_A_FIRST_BIT_NUMBER = 2,
|
||||
PORT_A_LAST_ADDRESS = 16383,
|
||||
PORT_A_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_A_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_A_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_ADDRESS_CLOCK = "clock1",
|
||||
PORT_B_ADDRESS_WIDTH = 13,
|
||||
PORT_B_DATA_IN_CLOCK = "clock1",
|
||||
PORT_B_DATA_OUT_CLEAR = "none",
|
||||
PORT_B_DATA_OUT_CLOCK = "clock1",
|
||||
PORT_B_DATA_WIDTH = 1,
|
||||
PORT_B_FIRST_ADDRESS = 8192,
|
||||
PORT_B_FIRST_BIT_NUMBER = 2,
|
||||
PORT_B_LAST_ADDRESS = 16383,
|
||||
PORT_B_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_B_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_B_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_READ_ENABLE_CLOCK = "clock1",
|
||||
PORT_B_WRITE_ENABLE_CLOCK = "clock1",
|
||||
POWER_UP_UNINITIALIZED = "false",
|
||||
RAM_BLOCK_TYPE = "AUTO"
|
||||
);
|
||||
ram_block1a11 : cycloneive_ram_block
|
||||
WITH (
|
||||
CLK0_CORE_CLOCK_ENABLE = "ena0",
|
||||
CLK0_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK0_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_CORE_CLOCK_ENABLE = "ena1",
|
||||
CLK1_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CONNECTIVITY_CHECKING = "OFF",
|
||||
LOGICAL_RAM_NAME = "ALTSYNCRAM",
|
||||
MIXED_PORT_FEED_THROUGH_MODE = "dont_care",
|
||||
OPERATION_MODE = "bidir_dual_port",
|
||||
PORT_A_ADDRESS_WIDTH = 13,
|
||||
PORT_A_DATA_OUT_CLEAR = "none",
|
||||
PORT_A_DATA_OUT_CLOCK = "clock0",
|
||||
PORT_A_DATA_WIDTH = 1,
|
||||
PORT_A_FIRST_ADDRESS = 8192,
|
||||
PORT_A_FIRST_BIT_NUMBER = 3,
|
||||
PORT_A_LAST_ADDRESS = 16383,
|
||||
PORT_A_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_A_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_A_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_ADDRESS_CLOCK = "clock1",
|
||||
PORT_B_ADDRESS_WIDTH = 13,
|
||||
PORT_B_DATA_IN_CLOCK = "clock1",
|
||||
PORT_B_DATA_OUT_CLEAR = "none",
|
||||
PORT_B_DATA_OUT_CLOCK = "clock1",
|
||||
PORT_B_DATA_WIDTH = 1,
|
||||
PORT_B_FIRST_ADDRESS = 8192,
|
||||
PORT_B_FIRST_BIT_NUMBER = 3,
|
||||
PORT_B_LAST_ADDRESS = 16383,
|
||||
PORT_B_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_B_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_B_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_READ_ENABLE_CLOCK = "clock1",
|
||||
PORT_B_WRITE_ENABLE_CLOCK = "clock1",
|
||||
POWER_UP_UNINITIALIZED = "false",
|
||||
RAM_BLOCK_TYPE = "AUTO"
|
||||
);
|
||||
ram_block1a12 : cycloneive_ram_block
|
||||
WITH (
|
||||
CLK0_CORE_CLOCK_ENABLE = "ena0",
|
||||
CLK0_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK0_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_CORE_CLOCK_ENABLE = "ena1",
|
||||
CLK1_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CONNECTIVITY_CHECKING = "OFF",
|
||||
LOGICAL_RAM_NAME = "ALTSYNCRAM",
|
||||
MIXED_PORT_FEED_THROUGH_MODE = "dont_care",
|
||||
OPERATION_MODE = "bidir_dual_port",
|
||||
PORT_A_ADDRESS_WIDTH = 13,
|
||||
PORT_A_DATA_OUT_CLEAR = "none",
|
||||
PORT_A_DATA_OUT_CLOCK = "clock0",
|
||||
PORT_A_DATA_WIDTH = 1,
|
||||
PORT_A_FIRST_ADDRESS = 8192,
|
||||
PORT_A_FIRST_BIT_NUMBER = 4,
|
||||
PORT_A_LAST_ADDRESS = 16383,
|
||||
PORT_A_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_A_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_A_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_ADDRESS_CLOCK = "clock1",
|
||||
PORT_B_ADDRESS_WIDTH = 13,
|
||||
PORT_B_DATA_IN_CLOCK = "clock1",
|
||||
PORT_B_DATA_OUT_CLEAR = "none",
|
||||
PORT_B_DATA_OUT_CLOCK = "clock1",
|
||||
PORT_B_DATA_WIDTH = 1,
|
||||
PORT_B_FIRST_ADDRESS = 8192,
|
||||
PORT_B_FIRST_BIT_NUMBER = 4,
|
||||
PORT_B_LAST_ADDRESS = 16383,
|
||||
PORT_B_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_B_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_B_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_READ_ENABLE_CLOCK = "clock1",
|
||||
PORT_B_WRITE_ENABLE_CLOCK = "clock1",
|
||||
POWER_UP_UNINITIALIZED = "false",
|
||||
RAM_BLOCK_TYPE = "AUTO"
|
||||
);
|
||||
ram_block1a13 : cycloneive_ram_block
|
||||
WITH (
|
||||
CLK0_CORE_CLOCK_ENABLE = "ena0",
|
||||
CLK0_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK0_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_CORE_CLOCK_ENABLE = "ena1",
|
||||
CLK1_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CONNECTIVITY_CHECKING = "OFF",
|
||||
LOGICAL_RAM_NAME = "ALTSYNCRAM",
|
||||
MIXED_PORT_FEED_THROUGH_MODE = "dont_care",
|
||||
OPERATION_MODE = "bidir_dual_port",
|
||||
PORT_A_ADDRESS_WIDTH = 13,
|
||||
PORT_A_DATA_OUT_CLEAR = "none",
|
||||
PORT_A_DATA_OUT_CLOCK = "clock0",
|
||||
PORT_A_DATA_WIDTH = 1,
|
||||
PORT_A_FIRST_ADDRESS = 8192,
|
||||
PORT_A_FIRST_BIT_NUMBER = 5,
|
||||
PORT_A_LAST_ADDRESS = 16383,
|
||||
PORT_A_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_A_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_A_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_ADDRESS_CLOCK = "clock1",
|
||||
PORT_B_ADDRESS_WIDTH = 13,
|
||||
PORT_B_DATA_IN_CLOCK = "clock1",
|
||||
PORT_B_DATA_OUT_CLEAR = "none",
|
||||
PORT_B_DATA_OUT_CLOCK = "clock1",
|
||||
PORT_B_DATA_WIDTH = 1,
|
||||
PORT_B_FIRST_ADDRESS = 8192,
|
||||
PORT_B_FIRST_BIT_NUMBER = 5,
|
||||
PORT_B_LAST_ADDRESS = 16383,
|
||||
PORT_B_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_B_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_B_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_READ_ENABLE_CLOCK = "clock1",
|
||||
PORT_B_WRITE_ENABLE_CLOCK = "clock1",
|
||||
POWER_UP_UNINITIALIZED = "false",
|
||||
RAM_BLOCK_TYPE = "AUTO"
|
||||
);
|
||||
ram_block1a14 : cycloneive_ram_block
|
||||
WITH (
|
||||
CLK0_CORE_CLOCK_ENABLE = "ena0",
|
||||
CLK0_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK0_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_CORE_CLOCK_ENABLE = "ena1",
|
||||
CLK1_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CONNECTIVITY_CHECKING = "OFF",
|
||||
LOGICAL_RAM_NAME = "ALTSYNCRAM",
|
||||
MIXED_PORT_FEED_THROUGH_MODE = "dont_care",
|
||||
OPERATION_MODE = "bidir_dual_port",
|
||||
PORT_A_ADDRESS_WIDTH = 13,
|
||||
PORT_A_DATA_OUT_CLEAR = "none",
|
||||
PORT_A_DATA_OUT_CLOCK = "clock0",
|
||||
PORT_A_DATA_WIDTH = 1,
|
||||
PORT_A_FIRST_ADDRESS = 8192,
|
||||
PORT_A_FIRST_BIT_NUMBER = 6,
|
||||
PORT_A_LAST_ADDRESS = 16383,
|
||||
PORT_A_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_A_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_A_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_ADDRESS_CLOCK = "clock1",
|
||||
PORT_B_ADDRESS_WIDTH = 13,
|
||||
PORT_B_DATA_IN_CLOCK = "clock1",
|
||||
PORT_B_DATA_OUT_CLEAR = "none",
|
||||
PORT_B_DATA_OUT_CLOCK = "clock1",
|
||||
PORT_B_DATA_WIDTH = 1,
|
||||
PORT_B_FIRST_ADDRESS = 8192,
|
||||
PORT_B_FIRST_BIT_NUMBER = 6,
|
||||
PORT_B_LAST_ADDRESS = 16383,
|
||||
PORT_B_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_B_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_B_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_READ_ENABLE_CLOCK = "clock1",
|
||||
PORT_B_WRITE_ENABLE_CLOCK = "clock1",
|
||||
POWER_UP_UNINITIALIZED = "false",
|
||||
RAM_BLOCK_TYPE = "AUTO"
|
||||
);
|
||||
ram_block1a15 : cycloneive_ram_block
|
||||
WITH (
|
||||
CLK0_CORE_CLOCK_ENABLE = "ena0",
|
||||
CLK0_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK0_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_CORE_CLOCK_ENABLE = "ena1",
|
||||
CLK1_INPUT_CLOCK_ENABLE = "none",
|
||||
CLK1_OUTPUT_CLOCK_ENABLE = "none",
|
||||
CONNECTIVITY_CHECKING = "OFF",
|
||||
LOGICAL_RAM_NAME = "ALTSYNCRAM",
|
||||
MIXED_PORT_FEED_THROUGH_MODE = "dont_care",
|
||||
OPERATION_MODE = "bidir_dual_port",
|
||||
PORT_A_ADDRESS_WIDTH = 13,
|
||||
PORT_A_DATA_OUT_CLEAR = "none",
|
||||
PORT_A_DATA_OUT_CLOCK = "clock0",
|
||||
PORT_A_DATA_WIDTH = 1,
|
||||
PORT_A_FIRST_ADDRESS = 8192,
|
||||
PORT_A_FIRST_BIT_NUMBER = 7,
|
||||
PORT_A_LAST_ADDRESS = 16383,
|
||||
PORT_A_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_A_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_A_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_ADDRESS_CLOCK = "clock1",
|
||||
PORT_B_ADDRESS_WIDTH = 13,
|
||||
PORT_B_DATA_IN_CLOCK = "clock1",
|
||||
PORT_B_DATA_OUT_CLEAR = "none",
|
||||
PORT_B_DATA_OUT_CLOCK = "clock1",
|
||||
PORT_B_DATA_WIDTH = 1,
|
||||
PORT_B_FIRST_ADDRESS = 8192,
|
||||
PORT_B_FIRST_BIT_NUMBER = 7,
|
||||
PORT_B_LAST_ADDRESS = 16383,
|
||||
PORT_B_LOGICAL_RAM_DEPTH = 16384,
|
||||
PORT_B_LOGICAL_RAM_WIDTH = 8,
|
||||
PORT_B_READ_DURING_WRITE_MODE = "new_data_no_nbe_read",
|
||||
PORT_B_READ_ENABLE_CLOCK = "clock1",
|
||||
PORT_B_WRITE_ENABLE_CLOCK = "clock1",
|
||||
POWER_UP_UNINITIALIZED = "false",
|
||||
RAM_BLOCK_TYPE = "AUTO"
|
||||
);
|
||||
address_a_sel[0..0] : WIRE;
|
||||
address_a_wire[13..0] : WIRE;
|
||||
address_b_sel[0..0] : WIRE;
|
||||
address_b_wire[13..0] : WIRE;
|
||||
w_addr_val_a2w[0..0] : WIRE;
|
||||
w_addr_val_a7w[0..0] : WIRE;
|
||||
w_addr_val_b4w[0..0] : WIRE;
|
||||
w_addr_val_b8w[0..0] : WIRE;
|
||||
wren_decode_addr_sel_a[0..0] : WIRE;
|
||||
wren_decode_addr_sel_b[0..0] : WIRE;
|
||||
|
||||
BEGIN
|
||||
address_reg_a[].clk = clock0;
|
||||
address_reg_a[].d = address_a_sel[];
|
||||
address_reg_b[].clk = clock1;
|
||||
address_reg_b[].d = address_b_sel[];
|
||||
out_address_reg_a[].clk = clock0;
|
||||
out_address_reg_a[].d = address_reg_a[].q;
|
||||
out_address_reg_b[].clk = clock1;
|
||||
out_address_reg_b[].d = address_reg_b[].q;
|
||||
decode2.data[] = w_addr_val_a2w[];
|
||||
decode2.enable = wren_a;
|
||||
decode3.data[] = w_addr_val_b4w[];
|
||||
decode3.enable = wren_b;
|
||||
rden_decode_a.data[] = w_addr_val_a7w[];
|
||||
rden_decode_b.data[] = w_addr_val_b8w[];
|
||||
mux4.data[] = ( ram_block1a[15..0].portadataout[0..0]);
|
||||
mux4.sel[] = out_address_reg_a[].q;
|
||||
mux5.data[] = ( ram_block1a[15..0].portbdataout[0..0]);
|
||||
mux5.sel[] = out_address_reg_b[].q;
|
||||
ram_block1a[15..0].clk0 = clock0;
|
||||
ram_block1a[15..0].clk1 = clock1;
|
||||
ram_block1a[15..0].ena0 = ( rden_decode_a.eq[1..1], rden_decode_a.eq[1..1], rden_decode_a.eq[1..1], rden_decode_a.eq[1..1], rden_decode_a.eq[1..1], rden_decode_a.eq[1..1], rden_decode_a.eq[1..1], rden_decode_a.eq[1..0], rden_decode_a.eq[0..0], rden_decode_a.eq[0..0], rden_decode_a.eq[0..0], rden_decode_a.eq[0..0], rden_decode_a.eq[0..0], rden_decode_a.eq[0..0], rden_decode_a.eq[0..0]);
|
||||
ram_block1a[15..0].ena1 = ( rden_decode_b.eq[1..1], rden_decode_b.eq[1..1], rden_decode_b.eq[1..1], rden_decode_b.eq[1..1], rden_decode_b.eq[1..1], rden_decode_b.eq[1..1], rden_decode_b.eq[1..1], rden_decode_b.eq[1..0], rden_decode_b.eq[0..0], rden_decode_b.eq[0..0], rden_decode_b.eq[0..0], rden_decode_b.eq[0..0], rden_decode_b.eq[0..0], rden_decode_b.eq[0..0], rden_decode_b.eq[0..0]);
|
||||
ram_block1a[15..0].portaaddr[] = ( address_a_wire[12..0]);
|
||||
ram_block1a[0].portadatain[] = ( data_a[0..0]);
|
||||
ram_block1a[1].portadatain[] = ( data_a[1..1]);
|
||||
ram_block1a[2].portadatain[] = ( data_a[2..2]);
|
||||
ram_block1a[3].portadatain[] = ( data_a[3..3]);
|
||||
ram_block1a[4].portadatain[] = ( data_a[4..4]);
|
||||
ram_block1a[5].portadatain[] = ( data_a[5..5]);
|
||||
ram_block1a[6].portadatain[] = ( data_a[6..6]);
|
||||
ram_block1a[7].portadatain[] = ( data_a[7..7]);
|
||||
ram_block1a[8].portadatain[] = ( data_a[0..0]);
|
||||
ram_block1a[9].portadatain[] = ( data_a[1..1]);
|
||||
ram_block1a[10].portadatain[] = ( data_a[2..2]);
|
||||
ram_block1a[11].portadatain[] = ( data_a[3..3]);
|
||||
ram_block1a[12].portadatain[] = ( data_a[4..4]);
|
||||
ram_block1a[13].portadatain[] = ( data_a[5..5]);
|
||||
ram_block1a[14].portadatain[] = ( data_a[6..6]);
|
||||
ram_block1a[15].portadatain[] = ( data_a[7..7]);
|
||||
ram_block1a[15..0].portare = B"1111111111111111";
|
||||
ram_block1a[15..0].portawe = ( decode2.eq[1..1], decode2.eq[1..1], decode2.eq[1..1], decode2.eq[1..1], decode2.eq[1..1], decode2.eq[1..1], decode2.eq[1..1], decode2.eq[1..0], decode2.eq[0..0], decode2.eq[0..0], decode2.eq[0..0], decode2.eq[0..0], decode2.eq[0..0], decode2.eq[0..0], decode2.eq[0..0]);
|
||||
ram_block1a[15..0].portbaddr[] = ( address_b_wire[12..0]);
|
||||
ram_block1a[0].portbdatain[] = ( data_b[0..0]);
|
||||
ram_block1a[1].portbdatain[] = ( data_b[1..1]);
|
||||
ram_block1a[2].portbdatain[] = ( data_b[2..2]);
|
||||
ram_block1a[3].portbdatain[] = ( data_b[3..3]);
|
||||
ram_block1a[4].portbdatain[] = ( data_b[4..4]);
|
||||
ram_block1a[5].portbdatain[] = ( data_b[5..5]);
|
||||
ram_block1a[6].portbdatain[] = ( data_b[6..6]);
|
||||
ram_block1a[7].portbdatain[] = ( data_b[7..7]);
|
||||
ram_block1a[8].portbdatain[] = ( data_b[0..0]);
|
||||
ram_block1a[9].portbdatain[] = ( data_b[1..1]);
|
||||
ram_block1a[10].portbdatain[] = ( data_b[2..2]);
|
||||
ram_block1a[11].portbdatain[] = ( data_b[3..3]);
|
||||
ram_block1a[12].portbdatain[] = ( data_b[4..4]);
|
||||
ram_block1a[13].portbdatain[] = ( data_b[5..5]);
|
||||
ram_block1a[14].portbdatain[] = ( data_b[6..6]);
|
||||
ram_block1a[15].portbdatain[] = ( data_b[7..7]);
|
||||
ram_block1a[15..0].portbre = B"1111111111111111";
|
||||
ram_block1a[15..0].portbwe = ( decode3.eq[1..1], decode3.eq[1..1], decode3.eq[1..1], decode3.eq[1..1], decode3.eq[1..1], decode3.eq[1..1], decode3.eq[1..1], decode3.eq[1..0], decode3.eq[0..0], decode3.eq[0..0], decode3.eq[0..0], decode3.eq[0..0], decode3.eq[0..0], decode3.eq[0..0], decode3.eq[0..0]);
|
||||
address_a_sel[0..0] = address_a[13..13];
|
||||
address_a_wire[] = address_a[];
|
||||
address_b_sel[0..0] = address_b[13..13];
|
||||
address_b_wire[] = address_b[];
|
||||
q_a[] = mux4.result[];
|
||||
q_b[] = mux5.result[];
|
||||
w_addr_val_a2w[0..0] = address_a_wire[13..13];
|
||||
w_addr_val_a7w[] = wren_decode_addr_sel_a[];
|
||||
w_addr_val_b4w[0..0] = address_b_wire[13..13];
|
||||
w_addr_val_b8w[] = wren_decode_addr_sel_b[];
|
||||
wren_decode_addr_sel_a[0..0] = address_a_wire[13..13];
|
||||
wren_decode_addr_sel_b[0..0] = address_b_wire[13..13];
|
||||
END;
|
||||
--VALID FILE
|
||||
Binary file not shown.
+3
-3
@@ -1,4 +1,4 @@
|
||||
//altpll bandwidth_type="AUTO" CBX_DECLARE_ALL_CONNECTED_PORTS="OFF" clk0_divide_by=143 clk0_duty_cycle=50 clk0_multiply_by=72 clk0_phase_shift="0" clk1_divide_by=25 clk1_duty_cycle=50 clk1_multiply_by=7 clk1_phase_shift="0" clk2_divide_by=25 clk2_duty_cycle=50 clk2_multiply_by=12 clk2_phase_shift="0" compensate_clock="CLK0" device_family="Cyclone IV E" inclk0_input_frequency=20000 intended_device_family="Cyclone IV E" lpm_hint="CBX_MODULE_PREFIX=pll" operation_mode="normal" pll_type="AUTO" port_clk0="PORT_USED" port_clk1="PORT_USED" port_clk2="PORT_USED" port_clk3="PORT_UNUSED" port_clk4="PORT_UNUSED" port_clk5="PORT_UNUSED" port_extclk0="PORT_UNUSED" port_extclk1="PORT_UNUSED" port_extclk2="PORT_UNUSED" port_extclk3="PORT_UNUSED" port_inclk1="PORT_UNUSED" port_phasecounterselect="PORT_UNUSED" port_phasedone="PORT_UNUSED" port_scandata="PORT_UNUSED" port_scandataout="PORT_UNUSED" self_reset_on_loss_lock="OFF" width_clock=5 clk inclk locked CARRY_CHAIN="MANUAL" CARRY_CHAIN_LENGTH=48
|
||||
//altpll bandwidth_type="AUTO" CBX_DECLARE_ALL_CONNECTED_PORTS="OFF" clk0_divide_by=2000 clk0_duty_cycle=50 clk0_multiply_by=1007 clk0_phase_shift="0" clk1_divide_by=25 clk1_duty_cycle=50 clk1_multiply_by=7 clk1_phase_shift="0" clk2_divide_by=25 clk2_duty_cycle=50 clk2_multiply_by=12 clk2_phase_shift="0" compensate_clock="CLK0" device_family="Cyclone IV E" inclk0_input_frequency=20000 intended_device_family="Cyclone IV E" lpm_hint="CBX_MODULE_PREFIX=pll" operation_mode="normal" pll_type="AUTO" port_clk0="PORT_USED" port_clk1="PORT_USED" port_clk2="PORT_USED" port_clk3="PORT_UNUSED" port_clk4="PORT_UNUSED" port_clk5="PORT_UNUSED" port_extclk0="PORT_UNUSED" port_extclk1="PORT_UNUSED" port_extclk2="PORT_UNUSED" port_extclk3="PORT_UNUSED" port_inclk1="PORT_UNUSED" port_phasecounterselect="PORT_UNUSED" port_phasedone="PORT_UNUSED" port_scandata="PORT_UNUSED" port_scandataout="PORT_UNUSED" self_reset_on_loss_lock="OFF" width_clock=5 clk inclk locked CARRY_CHAIN="MANUAL" CARRY_CHAIN_LENGTH=48
|
||||
//VERSION_BEGIN 13.1 cbx_altclkbuf 2013:10:17:09:48:19:SJ cbx_altiobuf_bidir 2013:10:17:09:48:19:SJ cbx_altiobuf_in 2013:10:17:09:48:19:SJ cbx_altiobuf_out 2013:10:17:09:48:19:SJ cbx_altpll 2013:10:17:09:48:19:SJ cbx_cycloneii 2013:10:17:09:48:19:SJ cbx_lpm_add_sub 2013:10:17:09:48:19:SJ cbx_lpm_compare 2013:10:17:09:48:19:SJ cbx_lpm_counter 2013:10:17:09:48:19:SJ cbx_lpm_decode 2013:10:17:09:48:19:SJ cbx_lpm_mux 2013:10:17:09:48:19:SJ cbx_mgl 2013:10:17:09:48:49:SJ cbx_stratix 2013:10:17:09:48:19:SJ cbx_stratixii 2013:10:17:09:48:19:SJ cbx_stratixiii 2013:10:17:09:48:19:SJ cbx_stratixv 2013:10:17:09:48:19:SJ cbx_util_mgl 2013:10:17:09:48:19:SJ VERSION_END
|
||||
//CBXI_INSTANCE_NAME="spectrum_ula_ula_pll_pll_altpll_altpll_component"
|
||||
// synthesis VERILOG_INPUT_VERSION VERILOG_2001
|
||||
@@ -80,9 +80,9 @@ module pll_altpll
|
||||
);
|
||||
defparam
|
||||
pll1.bandwidth_type = "auto",
|
||||
pll1.clk0_divide_by = 143,
|
||||
pll1.clk0_divide_by = 2000,
|
||||
pll1.clk0_duty_cycle = 50,
|
||||
pll1.clk0_multiply_by = 72,
|
||||
pll1.clk0_multiply_by = 1007,
|
||||
pll1.clk0_phase_shift = "0",
|
||||
pll1.clk1_divide_by = 25,
|
||||
pll1.clk1_duty_cycle = 50,
|
||||
|
||||
+65
-321
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,6 +1,6 @@
|
||||
{ "Info" "IQEXE_SEPARATOR" "" "*******************************************************************" { } { } 3 0 "*******************************************************************" 0 0 "Quartus II" 0 -1 1648724654189 ""}
|
||||
{ "Info" "IQEXE_START_BANNER_PRODUCT" "Assembler Quartus II 32-bit " "Running Quartus II 32-bit Assembler" { { "Info" "IQEXE_START_BANNER_VERSION" "Version 13.1.0 Build 162 10/23/2013 SJ Web Edition " "Version 13.1.0 Build 162 10/23/2013 SJ Web Edition" { } { } 0 0 "%1!s!" 0 0 "Quartus II" 0 -1 1648724654190 ""} { "Info" "IQEXE_START_BANNER_TIME" "Thu Mar 31 14:04:14 2022 " "Processing started: Thu Mar 31 14:04:14 2022" { } { } 0 0 "Processing started: %1!s!" 0 0 "Quartus II" 0 -1 1648724654190 ""} } { } 4 0 "Running %2!s! %1!s!" 0 0 "Assembler" 0 -1 1648724654190 ""}
|
||||
{ "Info" "IQEXE_START_BANNER_COMMANDLINE" "quartus_asm --read_settings_files=off --write_settings_files=off spectrum -c spectrum " "Command: quartus_asm --read_settings_files=off --write_settings_files=off spectrum -c spectrum" { } { } 0 0 "Command: %1!s!" 0 0 "Assembler" 0 -1 1648724654190 ""}
|
||||
{ "Info" "IASM_ASM_GENERATING_POWER_DATA" "" "Writing out detailed assembly data for power analysis" { } { } 0 115031 "Writing out detailed assembly data for power analysis" 0 0 "Assembler" 0 -1 1648724655397 ""}
|
||||
{ "Info" "IASM_ASM_GENERATING_PROGRAMMING_FILES" "" "Assembler is generating device programming files" { } { } 0 115030 "Assembler is generating device programming files" 0 0 "Assembler" 0 -1 1648724655426 ""}
|
||||
{ "Info" "IQEXE_ERROR_COUNT" "Assembler 0 s 0 s Quartus II 32-bit " "Quartus II 32-bit Assembler was successful. 0 errors, 0 warnings" { { "Info" "IQEXE_END_PEAK_VSIZE_MEMORY" "375 " "Peak virtual memory: 375 megabytes" { } { } 0 0 "Peak virtual memory: %1!s! megabytes" 0 0 "Quartus II" 0 -1 1648724655745 ""} { "Info" "IQEXE_END_BANNER_TIME" "Thu Mar 31 14:04:15 2022 " "Processing ended: Thu Mar 31 14:04:15 2022" { } { } 0 0 "Processing ended: %1!s!" 0 0 "Quartus II" 0 -1 1648724655745 ""} { "Info" "IQEXE_ELAPSED_TIME" "00:00:01 " "Elapsed time: 00:00:01" { } { } 0 0 "Elapsed time: %1!s!" 0 0 "Quartus II" 0 -1 1648724655745 ""} { "Info" "IQEXE_ELAPSED_CPU_TIME" "00:00:02 " "Total CPU time (on all processors): 00:00:02" { } { } 0 0 "Total CPU time (on all processors): %1!s!" 0 0 "Quartus II" 0 -1 1648724655745 ""} } { } 0 0 "%6!s! %1!s! was successful. %2!d! error%3!s!, %4!d! warning%5!s!" 0 0 "Assembler" 0 -1 1648724655745 ""}
|
||||
{ "Info" "IQEXE_SEPARATOR" "" "*******************************************************************" { } { } 3 0 "*******************************************************************" 0 0 "Quartus II" 0 -1 1648828541709 ""}
|
||||
{ "Info" "IQEXE_START_BANNER_PRODUCT" "Assembler Quartus II 32-bit " "Running Quartus II 32-bit Assembler" { { "Info" "IQEXE_START_BANNER_VERSION" "Version 13.1.0 Build 162 10/23/2013 SJ Web Edition " "Version 13.1.0 Build 162 10/23/2013 SJ Web Edition" { } { } 0 0 "%1!s!" 0 0 "Quartus II" 0 -1 1648828541710 ""} { "Info" "IQEXE_START_BANNER_TIME" "Fri Apr 1 18:55:41 2022 " "Processing started: Fri Apr 1 18:55:41 2022" { } { } 0 0 "Processing started: %1!s!" 0 0 "Quartus II" 0 -1 1648828541710 ""} } { } 4 0 "Running %2!s! %1!s!" 0 0 "Assembler" 0 -1 1648828541710 ""}
|
||||
{ "Info" "IQEXE_START_BANNER_COMMANDLINE" "quartus_asm --read_settings_files=off --write_settings_files=off spectrum -c spectrum " "Command: quartus_asm --read_settings_files=off --write_settings_files=off spectrum -c spectrum" { } { } 0 0 "Command: %1!s!" 0 0 "Assembler" 0 -1 1648828541710 ""}
|
||||
{ "Info" "IASM_ASM_GENERATING_POWER_DATA" "" "Writing out detailed assembly data for power analysis" { } { } 0 115031 "Writing out detailed assembly data for power analysis" 0 0 "Assembler" 0 -1 1648828542963 ""}
|
||||
{ "Info" "IASM_ASM_GENERATING_PROGRAMMING_FILES" "" "Assembler is generating device programming files" { } { } 0 115030 "Assembler is generating device programming files" 0 0 "Assembler" 0 -1 1648828542993 ""}
|
||||
{ "Info" "IQEXE_ERROR_COUNT" "Assembler 0 s 0 s Quartus II 32-bit " "Quartus II 32-bit Assembler was successful. 0 errors, 0 warnings" { { "Info" "IQEXE_END_PEAK_VSIZE_MEMORY" "385 " "Peak virtual memory: 385 megabytes" { } { } 0 0 "Peak virtual memory: %1!s! megabytes" 0 0 "Quartus II" 0 -1 1648828543318 ""} { "Info" "IQEXE_END_BANNER_TIME" "Fri Apr 1 18:55:43 2022 " "Processing ended: Fri Apr 1 18:55:43 2022" { } { } 0 0 "Processing ended: %1!s!" 0 0 "Quartus II" 0 -1 1648828543318 ""} { "Info" "IQEXE_ELAPSED_TIME" "00:00:02 " "Elapsed time: 00:00:02" { } { } 0 0 "Elapsed time: %1!s!" 0 0 "Quartus II" 0 -1 1648828543318 ""} { "Info" "IQEXE_ELAPSED_CPU_TIME" "00:00:02 " "Total CPU time (on all processors): 00:00:02" { } { } 0 0 "Total CPU time (on all processors): %1!s!" 0 0 "Quartus II" 0 -1 1648828543318 ""} } { } 0 0 "%6!s! %1!s! was successful. %2!d! error%3!s!, %4!d! warning%5!s!" 0 0 "Assembler" 0 -1 1648828543318 ""}
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -30,9 +30,9 @@ IO_RULES,CURRENT_DENSITY_FOR_CONSECUTIVE_IO_NOT_EXCEED_CURRENT_VALUE,PASS,IO_000
|
||||
IO_RULES,SINGLE_ENDED_OUTPUTS_LAB_ROWS_FROM_DIFF_IO,INAPPLICABLE,IO_000034,SI Related Distance Checks,Single-ended outputs should be 5 LAB row(s) away from a differential I/O.,High,No Differential I/O Standard assignments found.,,I/O,,
|
||||
IO_RULES,MAX_20_OUTPUTS_ALLOWED_IN_VREFGROUP,INAPPLICABLE,IO_000042,SI Related SSO Limit Checks,No more than 20 outputs are allowed in a VREF group when VREF is being read from.,High,No VREF I/O Standard assignments found.,,I/O,,
|
||||
IO_RULES_MATRIX,Pin/Rules,IO_000001;IO_000002;IO_000003;IO_000004;IO_000005;IO_000006;IO_000007;IO_000008;IO_000009;IO_000010;IO_000011;IO_000012;IO_000013;IO_000014;IO_000015;IO_000018;IO_000019;IO_000020;IO_000021;IO_000022;IO_000023;IO_000024;IO_000026;IO_000027;IO_000045;IO_000046;IO_000047;IO_000033;IO_000034;IO_000042,
|
||||
IO_RULES_MATRIX,Total Pass,74;9;74;0;0;74;74;0;74;74;0;0;0;0;40;0;0;40;0;0;2;0;0;0;0;0;0;74;0;0,
|
||||
IO_RULES_MATRIX,Total Pass,75;9;75;0;0;75;75;0;75;75;0;0;0;0;41;0;0;41;0;0;2;0;0;0;0;0;0;75;0;0,
|
||||
IO_RULES_MATRIX,Total Unchecked,0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0,
|
||||
IO_RULES_MATRIX,Total Inapplicable,0;65;0;74;74;0;0;74;0;0;74;74;74;74;34;74;74;34;74;74;72;74;74;74;74;74;74;0;74;74,
|
||||
IO_RULES_MATRIX,Total Inapplicable,0;66;0;75;75;0;0;75;0;0;75;75;75;75;34;75;75;34;75;75;73;75;75;75;75;75;75;0;75;75,
|
||||
IO_RULES_MATRIX,Total Fail,0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0;0,
|
||||
IO_RULES_MATRIX,LED[0],Pass;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Pass;Inapplicable;Pass;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable,
|
||||
IO_RULES_MATRIX,LED[1],Pass;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Pass;Inapplicable;Pass;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable,
|
||||
@@ -102,10 +102,11 @@ IO_RULES_MATRIX,I2C_SCLK,Pass;Pass;Pass;Inapplicable;Inapplicable;Pass;Pass;Inap
|
||||
IO_RULES_MATRIX,I2C_SDAT,Pass;Pass;Pass;Inapplicable;Inapplicable;Pass;Pass;Inapplicable;Pass;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable,
|
||||
IO_RULES_MATRIX,SW[1],Pass;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Pass;Inapplicable;Pass;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable,
|
||||
IO_RULES_MATRIX,SW[2],Pass;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Pass;Inapplicable;Pass;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable,
|
||||
IO_RULES_MATRIX,raw_loader_in,Pass;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Pass;Inapplicable;Pass;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable,
|
||||
IO_RULES_MATRIX,KEY[0],Pass;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Pass;Inapplicable;Pass;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable,
|
||||
IO_RULES_MATRIX,CLOCK_50,Pass;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Pass;Inapplicable;Pass;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable,
|
||||
IO_RULES_MATRIX,KEY[1],Pass;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Pass;Inapplicable;Pass;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable,
|
||||
IO_RULES_MATRIX,PS2_DAT,Pass;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Pass;Inapplicable;Pass;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable,
|
||||
IO_RULES_MATRIX,KEY[1],Pass;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Pass;Inapplicable;Pass;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable,
|
||||
IO_RULES_MATRIX,PS2_CLK,Pass;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Pass;Inapplicable;Pass;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable,
|
||||
IO_RULES_MATRIX,AUD_ADCDAT,Pass;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Pass;Inapplicable;Pass;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Inapplicable;Pass;Inapplicable;Inapplicable,
|
||||
IO_RULES_SUMMARY,Total I/O Rules,30,
|
||||
|
||||
Binary file not shown.
Binary file not shown.
+12
-12
@@ -1,12 +1,12 @@
|
||||
{ "Info" "IQEXE_SEPARATOR" "" "*******************************************************************" { } { } 3 0 "*******************************************************************" 0 0 "Quartus II" 0 -1 1648724662545 ""}
|
||||
{ "Info" "IQEXE_START_BANNER_PRODUCT" "EDA Netlist Writer Quartus II 32-bit " "Running Quartus II 32-bit EDA Netlist Writer" { { "Info" "IQEXE_START_BANNER_VERSION" "Version 13.1.0 Build 162 10/23/2013 SJ Web Edition " "Version 13.1.0 Build 162 10/23/2013 SJ Web Edition" { } { } 0 0 "%1!s!" 0 0 "Quartus II" 0 -1 1648724662545 ""} { "Info" "IQEXE_START_BANNER_TIME" "Thu Mar 31 14:04:22 2022 " "Processing started: Thu Mar 31 14:04:22 2022" { } { } 0 0 "Processing started: %1!s!" 0 0 "Quartus II" 0 -1 1648724662545 ""} } { } 4 0 "Running %2!s! %1!s!" 0 0 "Quartus II" 0 -1 1648724662545 ""}
|
||||
{ "Info" "IQEXE_START_BANNER_COMMANDLINE" "quartus_eda --read_settings_files=off --write_settings_files=off spectrum -c spectrum " "Command: quartus_eda --read_settings_files=off --write_settings_files=off spectrum -c spectrum" { } { } 0 0 "Command: %1!s!" 0 0 "Quartus II" 0 -1 1648724662546 ""}
|
||||
{ "Info" "IWSC_DONE_HDL_GENERATION" "spectrum_6_1200mv_85c_slow.vo /home/benny/work/fpga/spectrum/simulation/modelsim/ simulation " "Generated file spectrum_6_1200mv_85c_slow.vo in folder \"/home/benny/work/fpga/spectrum/simulation/modelsim/\" for EDA simulation tool" { } { } 0 204019 "Generated file %1!s! in folder \"%2!s!\" for EDA %3!s! tool" 0 0 "Quartus II" 0 -1 1648724663449 ""}
|
||||
{ "Info" "IWSC_DONE_HDL_GENERATION" "spectrum_6_1200mv_0c_slow.vo /home/benny/work/fpga/spectrum/simulation/modelsim/ simulation " "Generated file spectrum_6_1200mv_0c_slow.vo in folder \"/home/benny/work/fpga/spectrum/simulation/modelsim/\" for EDA simulation tool" { } { } 0 204019 "Generated file %1!s! in folder \"%2!s!\" for EDA %3!s! tool" 0 0 "Quartus II" 0 -1 1648724663768 ""}
|
||||
{ "Info" "IWSC_DONE_HDL_GENERATION" "spectrum_min_1200mv_0c_fast.vo /home/benny/work/fpga/spectrum/simulation/modelsim/ simulation " "Generated file spectrum_min_1200mv_0c_fast.vo in folder \"/home/benny/work/fpga/spectrum/simulation/modelsim/\" for EDA simulation tool" { } { } 0 204019 "Generated file %1!s! in folder \"%2!s!\" for EDA %3!s! tool" 0 0 "Quartus II" 0 -1 1648724664086 ""}
|
||||
{ "Info" "IWSC_DONE_HDL_GENERATION" "spectrum.vo /home/benny/work/fpga/spectrum/simulation/modelsim/ simulation " "Generated file spectrum.vo in folder \"/home/benny/work/fpga/spectrum/simulation/modelsim/\" for EDA simulation tool" { } { } 0 204019 "Generated file %1!s! in folder \"%2!s!\" for EDA %3!s! tool" 0 0 "Quartus II" 0 -1 1648724664404 ""}
|
||||
{ "Info" "IWSC_DONE_HDL_GENERATION" "spectrum_6_1200mv_85c_v_slow.sdo /home/benny/work/fpga/spectrum/simulation/modelsim/ simulation " "Generated file spectrum_6_1200mv_85c_v_slow.sdo in folder \"/home/benny/work/fpga/spectrum/simulation/modelsim/\" for EDA simulation tool" { } { } 0 204019 "Generated file %1!s! in folder \"%2!s!\" for EDA %3!s! tool" 0 0 "Quartus II" 0 -1 1648724664660 ""}
|
||||
{ "Info" "IWSC_DONE_HDL_GENERATION" "spectrum_6_1200mv_0c_v_slow.sdo /home/benny/work/fpga/spectrum/simulation/modelsim/ simulation " "Generated file spectrum_6_1200mv_0c_v_slow.sdo in folder \"/home/benny/work/fpga/spectrum/simulation/modelsim/\" for EDA simulation tool" { } { } 0 204019 "Generated file %1!s! in folder \"%2!s!\" for EDA %3!s! tool" 0 0 "Quartus II" 0 -1 1648724664912 ""}
|
||||
{ "Info" "IWSC_DONE_HDL_GENERATION" "spectrum_min_1200mv_0c_v_fast.sdo /home/benny/work/fpga/spectrum/simulation/modelsim/ simulation " "Generated file spectrum_min_1200mv_0c_v_fast.sdo in folder \"/home/benny/work/fpga/spectrum/simulation/modelsim/\" for EDA simulation tool" { } { } 0 204019 "Generated file %1!s! in folder \"%2!s!\" for EDA %3!s! tool" 0 0 "Quartus II" 0 -1 1648724665163 ""}
|
||||
{ "Info" "IWSC_DONE_HDL_GENERATION" "spectrum_v.sdo /home/benny/work/fpga/spectrum/simulation/modelsim/ simulation " "Generated file spectrum_v.sdo in folder \"/home/benny/work/fpga/spectrum/simulation/modelsim/\" for EDA simulation tool" { } { } 0 204019 "Generated file %1!s! in folder \"%2!s!\" for EDA %3!s! tool" 0 0 "Quartus II" 0 -1 1648724665416 ""}
|
||||
{ "Info" "IQEXE_ERROR_COUNT" "EDA Netlist Writer 0 s 0 s Quartus II 32-bit " "Quartus II 32-bit EDA Netlist Writer was successful. 0 errors, 0 warnings" { { "Info" "IQEXE_END_PEAK_VSIZE_MEMORY" "383 " "Peak virtual memory: 383 megabytes" { } { } 0 0 "Peak virtual memory: %1!s! megabytes" 0 0 "Quartus II" 0 -1 1648724665513 ""} { "Info" "IQEXE_END_BANNER_TIME" "Thu Mar 31 14:04:25 2022 " "Processing ended: Thu Mar 31 14:04:25 2022" { } { } 0 0 "Processing ended: %1!s!" 0 0 "Quartus II" 0 -1 1648724665513 ""} { "Info" "IQEXE_ELAPSED_TIME" "00:00:03 " "Elapsed time: 00:00:03" { } { } 0 0 "Elapsed time: %1!s!" 0 0 "Quartus II" 0 -1 1648724665513 ""} { "Info" "IQEXE_ELAPSED_CPU_TIME" "00:00:03 " "Total CPU time (on all processors): 00:00:03" { } { } 0 0 "Total CPU time (on all processors): %1!s!" 0 0 "Quartus II" 0 -1 1648724665513 ""} } { } 0 0 "%6!s! %1!s! was successful. %2!d! error%3!s!, %4!d! warning%5!s!" 0 0 "Quartus II" 0 -1 1648724665513 ""}
|
||||
{ "Info" "IQEXE_SEPARATOR" "" "*******************************************************************" { } { } 3 0 "*******************************************************************" 0 0 "Quartus II" 0 -1 1648828550447 ""}
|
||||
{ "Info" "IQEXE_START_BANNER_PRODUCT" "EDA Netlist Writer Quartus II 32-bit " "Running Quartus II 32-bit EDA Netlist Writer" { { "Info" "IQEXE_START_BANNER_VERSION" "Version 13.1.0 Build 162 10/23/2013 SJ Web Edition " "Version 13.1.0 Build 162 10/23/2013 SJ Web Edition" { } { } 0 0 "%1!s!" 0 0 "Quartus II" 0 -1 1648828550448 ""} { "Info" "IQEXE_START_BANNER_TIME" "Fri Apr 1 18:55:50 2022 " "Processing started: Fri Apr 1 18:55:50 2022" { } { } 0 0 "Processing started: %1!s!" 0 0 "Quartus II" 0 -1 1648828550448 ""} } { } 4 0 "Running %2!s! %1!s!" 0 0 "Quartus II" 0 -1 1648828550448 ""}
|
||||
{ "Info" "IQEXE_START_BANNER_COMMANDLINE" "quartus_eda --read_settings_files=off --write_settings_files=off spectrum -c spectrum " "Command: quartus_eda --read_settings_files=off --write_settings_files=off spectrum -c spectrum" { } { } 0 0 "Command: %1!s!" 0 0 "Quartus II" 0 -1 1648828550448 ""}
|
||||
{ "Info" "IWSC_DONE_HDL_GENERATION" "spectrum_6_1200mv_85c_slow.vo /home/benny/work/fpga/spectrum/simulation/modelsim/ simulation " "Generated file spectrum_6_1200mv_85c_slow.vo in folder \"/home/benny/work/fpga/spectrum/simulation/modelsim/\" for EDA simulation tool" { } { } 0 204019 "Generated file %1!s! in folder \"%2!s!\" for EDA %3!s! tool" 0 0 "Quartus II" 0 -1 1648828551371 ""}
|
||||
{ "Info" "IWSC_DONE_HDL_GENERATION" "spectrum_6_1200mv_0c_slow.vo /home/benny/work/fpga/spectrum/simulation/modelsim/ simulation " "Generated file spectrum_6_1200mv_0c_slow.vo in folder \"/home/benny/work/fpga/spectrum/simulation/modelsim/\" for EDA simulation tool" { } { } 0 204019 "Generated file %1!s! in folder \"%2!s!\" for EDA %3!s! tool" 0 0 "Quartus II" 0 -1 1648828551694 ""}
|
||||
{ "Info" "IWSC_DONE_HDL_GENERATION" "spectrum_min_1200mv_0c_fast.vo /home/benny/work/fpga/spectrum/simulation/modelsim/ simulation " "Generated file spectrum_min_1200mv_0c_fast.vo in folder \"/home/benny/work/fpga/spectrum/simulation/modelsim/\" for EDA simulation tool" { } { } 0 204019 "Generated file %1!s! in folder \"%2!s!\" for EDA %3!s! tool" 0 0 "Quartus II" 0 -1 1648828552017 ""}
|
||||
{ "Info" "IWSC_DONE_HDL_GENERATION" "spectrum.vo /home/benny/work/fpga/spectrum/simulation/modelsim/ simulation " "Generated file spectrum.vo in folder \"/home/benny/work/fpga/spectrum/simulation/modelsim/\" for EDA simulation tool" { } { } 0 204019 "Generated file %1!s! in folder \"%2!s!\" for EDA %3!s! tool" 0 0 "Quartus II" 0 -1 1648828552344 ""}
|
||||
{ "Info" "IWSC_DONE_HDL_GENERATION" "spectrum_6_1200mv_85c_v_slow.sdo /home/benny/work/fpga/spectrum/simulation/modelsim/ simulation " "Generated file spectrum_6_1200mv_85c_v_slow.sdo in folder \"/home/benny/work/fpga/spectrum/simulation/modelsim/\" for EDA simulation tool" { } { } 0 204019 "Generated file %1!s! in folder \"%2!s!\" for EDA %3!s! tool" 0 0 "Quartus II" 0 -1 1648828552617 ""}
|
||||
{ "Info" "IWSC_DONE_HDL_GENERATION" "spectrum_6_1200mv_0c_v_slow.sdo /home/benny/work/fpga/spectrum/simulation/modelsim/ simulation " "Generated file spectrum_6_1200mv_0c_v_slow.sdo in folder \"/home/benny/work/fpga/spectrum/simulation/modelsim/\" for EDA simulation tool" { } { } 0 204019 "Generated file %1!s! in folder \"%2!s!\" for EDA %3!s! tool" 0 0 "Quartus II" 0 -1 1648828552883 ""}
|
||||
{ "Info" "IWSC_DONE_HDL_GENERATION" "spectrum_min_1200mv_0c_v_fast.sdo /home/benny/work/fpga/spectrum/simulation/modelsim/ simulation " "Generated file spectrum_min_1200mv_0c_v_fast.sdo in folder \"/home/benny/work/fpga/spectrum/simulation/modelsim/\" for EDA simulation tool" { } { } 0 204019 "Generated file %1!s! in folder \"%2!s!\" for EDA %3!s! tool" 0 0 "Quartus II" 0 -1 1648828553143 ""}
|
||||
{ "Info" "IWSC_DONE_HDL_GENERATION" "spectrum_v.sdo /home/benny/work/fpga/spectrum/simulation/modelsim/ simulation " "Generated file spectrum_v.sdo in folder \"/home/benny/work/fpga/spectrum/simulation/modelsim/\" for EDA simulation tool" { } { } 0 204019 "Generated file %1!s! in folder \"%2!s!\" for EDA %3!s! tool" 0 0 "Quartus II" 0 -1 1648828553404 ""}
|
||||
{ "Info" "IQEXE_ERROR_COUNT" "EDA Netlist Writer 0 s 0 s Quartus II 32-bit " "Quartus II 32-bit EDA Netlist Writer was successful. 0 errors, 0 warnings" { { "Info" "IQEXE_END_PEAK_VSIZE_MEMORY" "380 " "Peak virtual memory: 380 megabytes" { } { } 0 0 "Peak virtual memory: %1!s! megabytes" 0 0 "Quartus II" 0 -1 1648828553503 ""} { "Info" "IQEXE_END_BANNER_TIME" "Fri Apr 1 18:55:53 2022 " "Processing ended: Fri Apr 1 18:55:53 2022" { } { } 0 0 "Processing ended: %1!s!" 0 0 "Quartus II" 0 -1 1648828553503 ""} { "Info" "IQEXE_ELAPSED_TIME" "00:00:03 " "Elapsed time: 00:00:03" { } { } 0 0 "Elapsed time: %1!s!" 0 0 "Quartus II" 0 -1 1648828553503 ""} { "Info" "IQEXE_ELAPSED_CPU_TIME" "00:00:03 " "Total CPU time (on all processors): 00:00:03" { } { } 0 0 "Total CPU time (on all processors): %1!s!" 0 0 "Quartus II" 0 -1 1648828553503 ""} } { } 0 0 "%6!s! %1!s! was successful. %2!d! error%3!s!, %4!d! warning%5!s!" 0 0 "Quartus II" 0 -1 1648828553503 ""}
|
||||
|
||||
+72
-71
File diff suppressed because one or more lines are too long
+66
-63
@@ -1,12 +1,12 @@
|
||||
|spectrum
|
||||
LED[0] <= SW[1].DB_MAX_OUTPUT_PORT_TYPE
|
||||
LED[1] <= <GND>
|
||||
LED[2] <= SW[2].DB_MAX_OUTPUT_PORT_TYPE
|
||||
LED[3] <= <GND>
|
||||
LED[4] <= <GND>
|
||||
LED[5] <= <GND>
|
||||
LED[6] <= <GND>
|
||||
LED[7] <= <GND>
|
||||
LED[0] << SW[1].DB_MAX_OUTPUT_PORT_TYPE
|
||||
LED[1] << <GND>
|
||||
LED[2] << SW[2].DB_MAX_OUTPUT_PORT_TYPE
|
||||
LED[3] << raw_loader_in.DB_MAX_OUTPUT_PORT_TYPE
|
||||
LED[4] << <GND>
|
||||
LED[5] << <GND>
|
||||
LED[6] << <GND>
|
||||
LED[7] << <GND>
|
||||
CLOCK_50 => CLOCK_50.IN3
|
||||
KEY[0] => reset.IN1
|
||||
KEY[1] => nNMI.IN1
|
||||
@@ -14,66 +14,67 @@ PS2_CLK => PS2_CLK.IN1
|
||||
PS2_DAT => PS2_DAT.IN1
|
||||
I2C_SCLK <> ula:ula_.I2C_SCLK
|
||||
I2C_SDAT <> ula:ula_.I2C_SDAT
|
||||
AUD_XCK <= ula:ula_.AUD_XCK
|
||||
AUD_ADCLRCK <= ula:ula_.AUD_ADCLRCK
|
||||
AUD_DACLRCK <= ula:ula_.AUD_DACLRCK
|
||||
AUD_BCLK <= ula:ula_.AUD_BCLK
|
||||
AUD_DACDAT <= ula:ula_.AUD_DACDAT
|
||||
AUD_XCK << ula:ula_.AUD_XCK
|
||||
AUD_ADCLRCK << ula:ula_.AUD_ADCLRCK
|
||||
AUD_DACLRCK << ula:ula_.AUD_DACLRCK
|
||||
AUD_BCLK << ula:ula_.AUD_BCLK
|
||||
AUD_DACDAT << ula:ula_.AUD_DACDAT
|
||||
AUD_ADCDAT => AUD_ADCDAT.IN1
|
||||
VGA_R[0] <= ula:ula_.VGA_R
|
||||
VGA_R[1] <= ula:ula_.VGA_R
|
||||
VGA_R[2] <= ula:ula_.VGA_R
|
||||
VGA_R[3] <= ula:ula_.VGA_R
|
||||
VGA_G[0] <= ula:ula_.VGA_G
|
||||
VGA_G[1] <= ula:ula_.VGA_G
|
||||
VGA_G[2] <= ula:ula_.VGA_G
|
||||
VGA_G[3] <= ula:ula_.VGA_G
|
||||
VGA_B[0] <= ula:ula_.VGA_B
|
||||
VGA_B[1] <= ula:ula_.VGA_B
|
||||
VGA_B[2] <= ula:ula_.VGA_B
|
||||
VGA_B[3] <= ula:ula_.VGA_B
|
||||
VGA_HS <= ula:ula_.VGA_HS
|
||||
VGA_VS <= ula:ula_.VGA_VS
|
||||
VGA_R[0] << ula:ula_.VGA_R
|
||||
VGA_R[1] << ula:ula_.VGA_R
|
||||
VGA_R[2] << ula:ula_.VGA_R
|
||||
VGA_R[3] << ula:ula_.VGA_R
|
||||
VGA_G[0] << ula:ula_.VGA_G
|
||||
VGA_G[1] << ula:ula_.VGA_G
|
||||
VGA_G[2] << ula:ula_.VGA_G
|
||||
VGA_G[3] << ula:ula_.VGA_G
|
||||
VGA_B[0] << ula:ula_.VGA_B
|
||||
VGA_B[1] << ula:ula_.VGA_B
|
||||
VGA_B[2] << ula:ula_.VGA_B
|
||||
VGA_B[3] << ula:ula_.VGA_B
|
||||
VGA_HS << ula:ula_.VGA_HS
|
||||
VGA_VS << ula:ula_.VGA_VS
|
||||
SW[0] => ~NO_FANOUT~
|
||||
SW[1] => LED[0].DATAIN
|
||||
SW[1] => comb.OUTPUTSELECT
|
||||
SW[2] => SW[2].IN1
|
||||
SW[3] => ~NO_FANOUT~
|
||||
GPIO_1[0] <= A[0].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[1] <= A[1].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[2] <= A[2].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[3] <= A[3].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[4] <= A[4].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[5] <= A[5].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[6] <= A[6].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[7] <= A[7].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[8] <= A[8].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[9] <= A[9].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[10] <= A[10].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[11] <= A[11].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[12] <= A[12].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[13] <= A[13].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[14] <= A[14].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[15] <= A[15].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[16] <= D[0].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[17] <= D[1].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[18] <= D[2].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[19] <= D[3].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[20] <= D[4].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[21] <= D[5].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[22] <= D[6].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[23] <= D[7].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[24] <= z80_top_direct_n:z80_.nBUSACK
|
||||
GPIO_1[25] <= z80_top_direct_n:z80_.nHALT
|
||||
GPIO_1[26] <= z80_top_direct_n:z80_.nRFSH
|
||||
GPIO_1[27] <= z80_top_direct_n:z80_.nWR
|
||||
GPIO_1[28] <= z80_top_direct_n:z80_.nRD
|
||||
GPIO_1[29] <= z80_top_direct_n:z80_.nIORQ
|
||||
GPIO_1[30] <= z80_top_direct_n:z80_.nMREQ
|
||||
GPIO_1[31] <= z80_top_direct_n:z80_.nM1
|
||||
GPIO_1[32] <= <GND>
|
||||
GPIO_1[33] <= <GND>
|
||||
buzzer_out <= ula:ula_.beep
|
||||
GPIO_1[0] << A[0].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[1] << A[1].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[2] << A[2].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[3] << A[3].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[4] << A[4].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[5] << A[5].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[6] << A[6].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[7] << A[7].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[8] << A[8].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[9] << A[9].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[10] << A[10].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[11] << A[11].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[12] << A[12].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[13] << A[13].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[14] << A[14].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[15] << A[15].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[16] << D[0].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[17] << D[1].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[18] << D[2].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[19] << D[3].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[20] << D[4].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[21] << D[5].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[22] << D[6].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[23] << D[7].DB_MAX_OUTPUT_PORT_TYPE
|
||||
GPIO_1[24] << z80_top_direct_n:z80_.nBUSACK
|
||||
GPIO_1[25] << z80_top_direct_n:z80_.nHALT
|
||||
GPIO_1[26] << z80_top_direct_n:z80_.nRFSH
|
||||
GPIO_1[27] << z80_top_direct_n:z80_.nWR
|
||||
GPIO_1[28] << z80_top_direct_n:z80_.nRD
|
||||
GPIO_1[29] << z80_top_direct_n:z80_.nIORQ
|
||||
GPIO_1[30] << z80_top_direct_n:z80_.nMREQ
|
||||
GPIO_1[31] << z80_top_direct_n:z80_.nM1
|
||||
GPIO_1[32] << <GND>
|
||||
GPIO_1[33] << <GND>
|
||||
buzzer_out << ula:ula_.beep
|
||||
raw_loader_in => raw_loader_in.IN1
|
||||
|
||||
|
||||
|spectrum|rom0:rom
|
||||
@@ -2027,7 +2028,7 @@ D[2] => border[2].DATAIN
|
||||
D[3] => beep.IN1
|
||||
D[3] => pcm_outl.DATAB
|
||||
D[3] => pcm_outr.DATAB
|
||||
D[4] => beep.IN1
|
||||
D[4] => beep.IN0
|
||||
D[4] => pcm_outl.DATAB
|
||||
D[4] => pcm_outr.DATAB
|
||||
D[5] => ~NO_FANOUT~
|
||||
@@ -2076,6 +2077,8 @@ AUD_DACDAT <= i2s_intf:i2s_intf_.I2S_DOUT
|
||||
AUD_ADCDAT => AUD_ADCDAT.IN1
|
||||
beeper <= beeper~reg0.DB_MAX_OUTPUT_PORT_TYPE
|
||||
beep <= beep~reg0.DB_MAX_OUTPUT_PORT_TYPE
|
||||
raw_loader_in => beep.IN1
|
||||
raw_loader_in => ula_data.DATAB
|
||||
VGA_R[0] <= video:video_.VGA_R[0]
|
||||
VGA_R[1] <= video:video_.VGA_R[1]
|
||||
VGA_R[2] <= video:video_.VGA_R[2]
|
||||
|
||||
Binary file not shown.
Binary file not shown.
@@ -1409,7 +1409,7 @@
|
||||
</TR>
|
||||
<TR >
|
||||
<TD >ula_</TD>
|
||||
<TD >39</TD>
|
||||
<TD >40</TD>
|
||||
<TD >2</TD>
|
||||
<TD >3</TD>
|
||||
<TD >2</TD>
|
||||
|
||||
Binary file not shown.
+1
-1
@@ -1307,7 +1307,7 @@ Input only Bidir : 0
|
||||
Output only Bidir : 0
|
||||
|
||||
Hierarchy : ula_
|
||||
Input : 39
|
||||
Input : 40
|
||||
Constant Input : 2
|
||||
Unused Input : 3
|
||||
Floating Input : 2
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+159
-158
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
+58
-58
File diff suppressed because one or more lines are too long
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user