Update README.md

This commit is contained in:
jhusak
2020-05-18 21:51:16 +02:00
committed by GitHub
parent b25bc3e607
commit df07e2b7e8
+4 -3
View File
@@ -12,7 +12,7 @@ The flasher must be (for now) preassembled using mads assembler with proper rom
If you want to write your own cartridge access, remember to fool the Operating System not to hang up by cart on/off, by: If you want to write your own cartridge access, remember to fool the Operating System not to hang up by cart on/off, by:
<pre> ```
carton (x - bank to switch) carton (x - bank to switch)
pha pha
sei sei
@@ -24,7 +24,7 @@ carton (x - bank to switch)
cli cli
pla pla
rts rts
</pre> ```
after each access. This will let the system think as cartridge never was switched/removed/inserted. Of course it is better (much better, obligue) that there is no display list, video memory and no interrupts in the area a000-bfff, which can be anything when bank swapping. after each access. This will let the system think as cartridge never was switched/removed/inserted. Of course it is better (much better, obligue) that there is no display list, video memory and no interrupts in the area a000-bfff, which can be anything when bank swapping.
@@ -40,4 +40,5 @@ Compile (mads needed, http://mads.atari8.info):
mads flashwrite.asx -o:flashwrite.xex mads flashwrite.asx -o:flashwrite.xex
# Warning: flasher works properly on stock Atari. There were reports that Ultimate 1MB makes problems, so may not other extensions/SO roms. This will change in the near future. ** Warning: flasher works properly on stock Atari. There were reports that Ultimate 1MB makes problems, so may not other extensions/SO roms. This will change in the near future.**