retro-muri.py: increase memory size for initial image
FossilOrigin-Name: d4b239f2980b0797d7498240c6c34783906e4c0825cb917a37fe8258a0c9fff1
This commit is contained in:
parent
f734da8780
commit
0102571278
3 changed files with 5 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -15,6 +15,7 @@
|
|||
- toolchain
|
||||
|
||||
- retro-describe(1) now uses embedded glossary data
|
||||
- retro-muri.py: increase memory size for initial image
|
||||
|
||||
- documentation
|
||||
|
||||
|
|
|
@ -143,7 +143,7 @@ def save(filename):
|
|||
|
||||
|
||||
if __name__ == "__main__":
|
||||
image.extend([0] * 1024)
|
||||
image.extend([0] * 1024 * 8)
|
||||
pass1()
|
||||
pass2()
|
||||
save("ngaImage")
|
||||
|
|
Loading…
Reference in a new issue