]> git.sur5r.net Git - cc65/blob - libsrc/c64/soft80.inc
some more rework, second attempt on fixing the color issues. added ifdefs to disable...
[cc65] / libsrc / c64 / soft80.inc
1
2 soft80_lo_charset       = $d000
3 soft80_hi_charset       = $d400
4 soft80_vram             = $d800 ; ram under i/o
5 soft80_colram           = $d800 ; color ram (used for temp. storage)
6 soft80_bitmap           = $e000
7
8 charsperline            = 80
9 screenrows              = 25
10
11 CH_ESC                  = 95
12 CH_HLINE                = 96
13 CH_CROSS                = 123
14 CH_VLINE                = 125
15 CH_PI                   = 126
16 CH_LTEE                 = 171
17 CH_URCORNER             = 174
18 CH_LLCORNER             = 173
19 CH_ULCORNER             = 176
20 CH_BTEE                 = 177
21 CH_TTEE                 = 178
22 CH_RTEE                 = 179
23 CH_LRCORNER             = 189
24
25 ;-------------------------------------------------------------------------------
26 ; set to 0 to disable the color-ram "voodoo" for debugging purposes
27 .define SOFT80COLORVOODOO 1
28 ; set to 0 to disable special case optimization for the "space" character
29 .define SOFT80FASTSPACE 1
30