From d207181ef575c668bfc8717484d8fa86e7a2e871 Mon Sep 17 00:00:00 2001 From: David Lenfesty Date: Sat, 15 Apr 2023 13:00:06 -0600 Subject: [PATCH] gw: increase ROM size --- gateware/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gateware/main.py b/gateware/main.py index 0a7ea6b..7916ccd 100644 --- a/gateware/main.py +++ b/gateware/main.py @@ -122,7 +122,7 @@ class Core(Elaboratable): fw = load_firmware_for_mem() # Hook up memory space - self.rom = ROM(size_bytes=8192, data=fw) + self.rom = ROM(size_bytes=12288, data=fw) m.submodules.rom = self.rom # Problem: not sure to handle how we do byte vs word addressing properly # So doing this shift is a bit of a hacky way to impl anything