retro-muri.py: increase memory size for initial image

FossilOrigin-Name: d4b239f2980b0797d7498240c6c34783906e4c0825cb917a37fe8258a0c9fff1
This commit is contained in:
crc 2024-10-30 12:14:39 +00:00
parent f734da8780
commit 0102571278
3 changed files with 5 additions and 3 deletions

View file

@ -28,7 +28,7 @@ LIBDL ?=
# -------------------------------------------------------------
OPTIONS ?=
OPTIONS += -DBIT64
#OPTIONS += -DBIT64
# This helps improve performance on some systems.
@ -97,7 +97,8 @@ DEVICES += interface/descriptions.retro
# -------------------------------------------------------------
GLOSSARY ?= ./bin/retro tools/glossary.retro
ASSEMBLE ?= ./bin/retro-muri
ASSEMBLE ?= ./tools/retro-muri.py
#EXTEND ?= ./tools/retro-extend.py
EXTEND ?= ./bin/retro-extend
EXPORT ?= ./bin/retro-embedimage
RETRO ?= ./bin/retro

View file

@ -15,6 +15,7 @@
- toolchain
- retro-describe(1) now uses embedded glossary data
- retro-muri.py: increase memory size for initial image
- documentation

View file

@ -143,7 +143,7 @@ def save(filename):
if __name__ == "__main__":
image.extend([0] * 1024)
image.extend([0] * 1024 * 8)
pass1()
pass2()
save("ngaImage")