Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
zistvan-public
Caribou KVS with Privacy Perturbations
Commits
ccc55c01
Commit
ccc55c01
authored
May 28, 2019
by
Zsolt István
Browse files
fixed bug in which ht memory address bits were ignored. have 28 bits now
parent
b74023c7
Changes
2
Hide whitespace changes
Inline
Side-by-side
hw/src/muu/muu_top_module_lmem.v
View file @
ccc55c01
...
...
@@ -1411,11 +1411,11 @@ assign b_wrcmd_data ={24'b000000000000000100000001, 8'b00000001, 4'b0000, b_wrcm
assign
p_rdcmd_data
={
24'b000000000000000100000001
,
8'b00000001
,
4'b0000
,
p_rdcmd_data_short
[
27
:
0
]
}
;
assign
p_wrcmd_data
={
24'b000000000000000100000001
,
8'b00000001
,
4'b0000
,
p_wrcmd_data_short
[
27
:
0
]
}
;
assign
ht_rd_cmd_data
={
24'b000000000000000100000001
,
8'b00000001
,
4'b0000
,
4'b0000
,
rdcmd_data
[
2
3
:
0
]
}
;
assign
ht_rd_cmd_data
={
24'b000000000000000100000001
,
8'b00000001
,
4'b0000
,
rdcmd_data
[
2
7
:
0
]
}
;
assign
ht_rd_cmd_valid
=
rdcmd_valid
;
assign
rdcmd_ready
=
~
ht_rd_cmd_stall
;
assign
ht_wr_cmd_data
={
24'b000000000000000100000001
,
8'b00000001
,
4'b0000
,
4'b0000
,
wrcmd_data
[
2
3
:
0
]
}
;
assign
ht_wr_cmd_data
={
24'b000000000000000100000001
,
8'b00000001
,
4'b0000
,
wrcmd_data
[
2
7
:
0
]
}
;
assign
ht_wr_cmd_valid
=
wrcmd_valid
;
assign
wrcmd_ready
=
~
ht_wr_cmd_stall
;
...
...
hw/src/muu/muu_top_module_lmem_dedup.v
View file @
ccc55c01
...
...
@@ -1465,11 +1465,11 @@ assign b_wrcmd_data ={24'b000000000000000100000001, 8'b00000001, 4'b0000, b_wrcm
assign
p_rdcmd_data
={
24'b000000000000000100000001
,
8'b00000001
,
4'b0000
,
p_rdcmd_data_short
[
27
:
0
]
}
;
assign
p_wrcmd_data
={
24'b000000000000000100000001
,
8'b00000001
,
4'b0000
,
p_wrcmd_data_short
[
27
:
0
]
}
;
assign
ht_rd_cmd_data
={
24'b000000000000000100000001
,
8'b00000001
,
4'b0000
,
4'b0000
,
rdcmd_data
[
2
3
:
0
]
}
;
assign
ht_rd_cmd_data
={
24'b000000000000000100000001
,
8'b00000001
,
4'b0000
,
rdcmd_data
[
2
7
:
0
]
}
;
assign
ht_rd_cmd_valid
=
rdcmd_valid
;
assign
rdcmd_ready
=
~
ht_rd_cmd_stall
;
assign
ht_wr_cmd_data
={
24'b000000000000000100000001
,
8'b00000001
,
4'b0000
,
4'b0000
,
wrcmd_data
[
2
3
:
0
]
}
;
assign
ht_wr_cmd_data
={
24'b000000000000000100000001
,
8'b00000001
,
4'b0000
,
wrcmd_data
[
2
7
:
0
]
}
;
assign
ht_wr_cmd_valid
=
wrcmd_valid
;
assign
wrcmd_ready
=
~
ht_wr_cmd_stall
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment