The next step is to drop the sprite card in and have fun with the registers. Now, where did I put that old color TV, RF modulator and the game/antenna switch...
Thanks for the code sample, Yves
Out of curiosity I tried this trivial program to see if I could click the speaker in Bernie to the Rescue:+ - + - + Cut click.pas + - + - + {$keep 'click'} program click(output);vars: byte; p: ^byte; i: integer;beginp:= Pointer($0c030); for i:= 1 to 27000 do begin s:= p^; end; end. + - + - + End click.pas + - + - +It caused Bernie to click the speaker. Cool, I learned something else new today :o) It's been so long since I wrote a Pascal program I hope I didn't do something wrong ;o)