From 01025712780580fbc73fb73ca0a62e396ab2ee15 Mon Sep 17 00:00:00 2001 From: crc <> Date: Wed, 30 Oct 2024 12:14:39 +0000 Subject: [PATCH] retro-muri.py: increase memory size for initial image FossilOrigin-Name: d4b239f2980b0797d7498240c6c34783906e4c0825cb917a37fe8258a0c9fff1 --- Configuration.mk | 5 +++-- RELEASE-NOTES | 1 + tools/retro-muri.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Configuration.mk b/Configuration.mk index 7b317a6..366b396 100644 --- a/Configuration.mk +++ b/Configuration.mk @@ -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 diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 6ec1ee8..6282f83 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -15,6 +15,7 @@ - toolchain - retro-describe(1) now uses embedded glossary data + - retro-muri.py: increase memory size for initial image - documentation diff --git a/tools/retro-muri.py b/tools/retro-muri.py index c66b4d4..3ba8df1 100755 --- a/tools/retro-muri.py +++ b/tools/retro-muri.py @@ -143,7 +143,7 @@ def save(filename): if __name__ == "__main__": - image.extend([0] * 1024) + image.extend([0] * 1024 * 8) pass1() pass2() save("ngaImage")