Home » Personal collection » Commodore disks » disk34a_commodore_world_7.d64 » hires display
hires display
This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.
Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.
Tape/disk: | Home » Personal collection » Commodore disks » disk34a_commodore_world_7.d64 |
Filename: | hires display |
Read OK: | ✔ |
File size: | 02A4 bytes |
Load address: | 0801 |
Exec address: | 0000 |
File contents
0 POKE 53272,22 1 REM ** HIRES PICTURE DISPLAY 2 REM ** BY RUSS MICHAELS 3 REM ** USE LINES 15-70 IN YOUR OWN 5 PRINT"<clr>🭾RESS 1 TO DISPLAY PICTURE" 6 PRINT"🭾RESS 2 FOR NORMAL DISPLAY" 7 GET A$:IF A$=""THEN 7 8 IF A$="1"THEN GOSUB 15 9 IF A$="2"THEN GOSUB 100 10 GOTO 7 14 REM ** DISPLAY HIRES PICTURE 15 POKE 56576,2 :REM ** BANK 20 POKE 53272,127 :REM ** BITMAP POS 30 POKE 53265,59 :REM ** BITMAP ON 40 POKE 53270,8 :REM ** HIRES MODE ON 50 POKE 53280,0 :REM ** BORDER COLOR 60 POKE 53281,0 :REM ** SCREEN COLOR 70 RETURN 99 REM ** NORMAL COMMODORE DISPLAY 100 POKE 56576,3 110 POKE 53272,20 120 POKE 53265,27 130 POKE 53270,8 140 POKE 53280,14 150 POKE 53281,6 160 RETURN 200 REM ** USE THE APPROPRIATE ROUTINE 210 REM ** IN YOUR OWN PROGRAMS
� 53272,22 / � ** HIRES PICTURE DISPLAY I � ** BY RUSS MICHAELS n � ** USE LINES 15-70 IN YOUR OWN � �"��RESS 1 TO DISPLAY PICTURE"