From e786d1cf4911e3c82fcf2687f5798145f2334b17 Mon Sep 17 00:00:00 2001 From: alexthissen Date: Sat, 27 Aug 2016 21:58:13 +0200 Subject: [PATCH] Update exehdr.s Fix for memory bank 1 which should be zero for almost all cartridges for emulators to work correctly. --- libsrc/lynx/exehdr.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libsrc/lynx/exehdr.s b/libsrc/lynx/exehdr.s index 4f077fb82..3be926bb3 100644 --- a/libsrc/lynx/exehdr.s +++ b/libsrc/lynx/exehdr.s @@ -12,7 +12,7 @@ .segment "EXEHDR" .byte 'L','Y','N','X' ; magic .word __BLOCKSIZE__ ; bank 0 page size - .word __BLOCKSIZE__ ; bank 1 page size + .word 0 ; bank 1 page size .word 1 ; version number .asciiz "Cart name " ; 32 bytes cart name .asciiz "Manufacturer " ; 16 bytes manufacturer -- 2.39.5