gw: increase ROM size

This commit is contained in:
David Lenfesty 2023-04-15 13:00:06 -06:00
parent 005a053624
commit d207181ef5

View File

@ -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