Skip to content
Snippets Groups Projects
Commit 22468977 authored by Maciej Lipinski's avatar Maciej Lipinski
Browse files

swcore[v2->v3 port]: working with ip_cores/general-cores altera

parent c096489d
Branches
Tags
No related merge requests found
...@@ -149,7 +149,7 @@ architecture syn of swc_multiport_linked_list is ...@@ -149,7 +149,7 @@ architecture syn of swc_multiport_linked_list is
signal free_pck_read_done : std_logic_vector(c_swc_num_ports-1 downto 0); signal free_pck_read_done : std_logic_vector(c_swc_num_ports-1 downto 0);
signal ram_zeros : std_logic_vector( c_swc_page_addr_width - 1 downto 0); signal ram_zeros : std_logic_vector( c_swc_page_addr_width - 1 downto 0);
signal ram_ones : std_logic_vector((c_swc_page_addr_width)/8 - 1 downto 0); signal ram_ones : std_logic_vector((c_swc_page_addr_width+7)/8 - 1 downto 0);
begin -- syn begin -- syn
......
...@@ -308,12 +308,12 @@ begin -- syn ...@@ -308,12 +308,12 @@ begin -- syn
aa_i => usecnt_mem_wraddr, aa_i => usecnt_mem_wraddr,
qa_o => open, qa_o => open,
wea_i => usecnt_mem_wr, wea_i => usecnt_mem_wr,
bwea_i => ones((g_use_count_bits)/8 -1 downto 0),--ones((g_use_count_bits+7)/8 -1 downto 0), bwea_i => ones((g_use_count_bits+7)/8 -1 downto 0),--ones((g_use_count_bits+7)/8 -1 downto 0),
ab_i => usecnt_mem_rdaddr, ab_i => usecnt_mem_rdaddr,
qb_o => usecnt_mem_rddata, qb_o => usecnt_mem_rddata,
db_i => ones(g_use_count_bits-1 downto 0), db_i => ones(g_use_count_bits-1 downto 0),
bweb_i => ones((g_use_count_bits)/8-1 downto 0), --ones((g_use_count_bits+7)/8-1 downto 0), bweb_i => ones((g_use_count_bits+7)/8-1 downto 0), --ones((g_use_count_bits+7)/8-1 downto 0),
web_i => '0' web_i => '0'
); );
......
*.wlf vsim.wlf
...@@ -9,9 +9,9 @@ vlog_opt="+incdir+../../../sim " ...@@ -9,9 +9,9 @@ vlog_opt="+incdir+../../../sim "
modules = {"local": modules = {"local":
[ [
"../../platform/altera", #"../../platform/altera",
"../../platform/genrams/altera", #"../../platform/genrams/altera",
#"../../ip_cores/general-cores/modules/genrams/", "../../ip_cores/general-cores/modules/genrams/",
"../../modules/wrsw_swcore", "../../modules/wrsw_swcore",
], ],
#"git" : #"git" :
......
File deleted
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment