Refactor readback mux implementation. Improves performance (#155) and eliminates illegal streaming operator usage (#165)

This commit is contained in:
Alex Mykyta
2025-12-10 23:17:33 -08:00
parent 4201ce975e
commit 9fc95b8769
24 changed files with 1116 additions and 634 deletions

View File

@@ -0,0 +1,11 @@
addrmap top {
mem ext_mem #(
longint SIZE = 0x100
) {
memwidth = 32;
mementries = SIZE / 4;
};
external ext_mem #(.SIZE(0x10)) mem1 @ 0x0000;
external ext_mem #(.SIZE(0x90)) mem2 @ 0x0200;
};