Skip to main content
Home Forums 68kMLA Apple IIgs Text mode doubled — #13
Post #13 by Elfen
Source Forum68kMLA
CategoryTroubleshooting
Post DateTue, 26 May 2015 - 18:04
Original URLhttps://68kmla.org/bb/threads/apple-iigs-text-mode-doubled.2004/
Post
I wonder if this is for all the characters in the ROM or just a segment of them?

Boot it up without the disk drives attached so it goes into AppleSoft Basic.

Then type the following:

for x = 0 to 255 : print chr$ ( x ) ; : next x 

Then press 'ENTER' and watch the entire character set print out. From this there you can determine if the whole ROM is affected or  part of it.

Another test in case some control characters goof this up is to poke each character on the screen. I'm assuming that the IIgs Screen memory map is in the same place as the older Apples, so this should work:

for x = 0 to 255 : poke 1024 + x , x : next x 

This will print out the ROM's characters across the screen, if 1024 is start of the text screen location.

Either way, this will show if addressing problem is in part of the ROM or all of it? If it is in all of it, I believe it would be an easier fix as it would be easier to locate as set amount of address lines affected.

mp.ls