[libre-riscv-dev] [Bug 216] LOAD STORE buffer needed
bugzilla-daemon at libre-soc.org
bugzilla-daemon at libre-soc.org
Thu Jun 4 17:49:19 BST 2020
https://bugs.libre-soc.org/show_bug.cgi?id=216
--- Comment #55 from Luke Kenneth Casson Leighton <lkcl at lkcl.net> ---
proof_datamerger.py:
for b in range(0,8):
just range(8). there is no need to specify a start range of 0
comb += dut.addr_array_i[j].eq(AnySeq(dut.array_size))
comb += dut.data_i[j].eq(AnySeq(16+128))
AnySeq is for synchronous data where the value changes on every clock.
use AnyConst instead which will not change.
--
You are receiving this mail because:
You are on the CC list for the bug.
More information about the libre-riscv-dev
mailing list