DescriptionApple II low-resolution graphics demo 2.png
English: A display of the Apple II low-resolution graphics mode, with each of the 16 colors in the low-res palette shown. This was created by a small BASIC program written by me, run on the Apple II emulator Applewin.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.
http://creativecommons.org/publicdomain/zero/1.0/deed.enCC0Creative Commons Zero, Public Domain Dedicationfalsefalse
Source Code
This image was created by a small BASIC program written by me, which I release into the public domain. The source code is below. 28bytes (talk) 02:59, 5 February 2012 (UTC)
100 GR
110 FOR X = 0 TO 39
120 FOR Y = 0 TO 39
130 COLOR = INT(X/10) + 4 * (INT(Y/10))
140 PLOT X,Y
150 NEXT
160 NEXT
200 PRINT "0=BLACK ";
210 PRINT "1=RED ";
220 PRINT "2=D.BLUE ";
230 PRINT "3=PURPLE ";
240 PRINT "4=D.GREEN ";
250 PRINT "5=GRAY 1 ";
260 PRINT "6=M.BLUE ";
270 PRINT "7=L.BLUE ";
280 PRINT "8=BROWN ";
290 PRINT "9=ORANGE ";
300 PRINT "10=GRAY 2 ";
310 PRINT "11=PINK ";
320 PRINT "12=L.GREEN ";
330 PRINT "13=YELLOW ";
340 PRINT "14=AQUA ";
350 PRINT "15=WHITE";
360 GET A$
Captions
Add a one-line explanation of what this file represents