mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-08 20:21:25 +00:00
More iCE40 bram improvements
This commit is contained in:
parent
49859393bb
commit
82a4722f46
4 changed files with 69 additions and 51 deletions
|
@ -86,7 +86,7 @@ module bram_tb #(
|
|||
xorshift64_next;
|
||||
|
||||
RD_ADDR = getaddr(i < 256 ? i[3:0] : xorshift64_state[59:56]);
|
||||
WR_EN = xorshift64_state[55] && (WR_ADDR != RD_ADDR);
|
||||
WR_EN = xorshift64_state[55] && ((WR_ADDR & 'hff) != (RD_ADDR & 'hff));
|
||||
xorshift64_next;
|
||||
|
||||
#1; clk <= 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue