Applesoft BASIC Double Low Resolution Graphics
- In the normal Lo-Res graphics mode, the screen resolution is 40x40 pixels.
- The Double Lo-Res graphics mode is so named because the pixels along the X-axis are doubled to create a 80x40 pixel screen.
Lo-Res Colors (0 - 15)
- 0 black
- 1 red
- 2 Dark Blue
- 3 purple
- 4 Dark Green
- 5 Gray
- 6 medium blue
- 7 light blue
- 8 Brown
- 9 orange
- 10 gray
- 11 Pink
- 12 light green
- 13 Yellow
- 14 Aqua
- 15 white
On the IIc and IIgs, double lo-res can be accessed from Applesoft:
- Use the standard lo-res commands to draw.
- The available drawing area is 80 columns and 40 or 48 rows.
- The colours are identical to standard lo-res.
- The
SCRN
function, which reads the color of a pixel at an X,Y coordinate, does not work properly in double lo-res.
Normal Lo-Res has a resolution of 40x40.
______________________________
|(0,0) (39,0)|
| |
| | GRAPHICS
| |
|(0,39) (39,39)|
|------------------------------|
|HTAB 1 | TEXT
|VTAB 21 | 4 rows
|______________________________|
Double Lo-Res has a resolution of 80x40.
______________________________
|(0,0) (79,0)|
| |
| | GRAPHICS
| |
|(0,39) (79,39)|
|------------------------------|
|HTAB 1 | TEXT
|VTAB 21 | 4 rows
|______________________________|