]> git.sur5r.net Git - cc65/blob - libsrc/c64/extra/soft80.s
added some more comments and -headers
[cc65] / libsrc / c64 / extra / soft80.s
1 ;
2 ; Groepaz/Hitmen, 12.10.2015
3 ;
4 ; import/overload stubs for the soft80 implementation
5
6
7         ; soft80_cgetc.s
8         .import soft80_cgetc
9         .export _cgetc := soft80_cgetc
10
11         ; soft80_chline.s
12         .import soft80_chlinexy
13         .import soft80_chline
14         .export _chlinexy := soft80_chlinexy
15         .export _chline := soft80_chline
16
17         ; soft80_color.s
18         .import soft80_textcolor
19         .import soft80_bgcolor
20         .import soft80_bordercolor
21         .export _textcolor := soft80_textcolor
22         .export _bgcolor := soft80_bgcolor
23         .export _bordercolor := soft80_bordercolor
24
25         ; soft80_cputc.s
26         .import soft80_cputc
27         .import soft80_cputcxy
28         .import soft80_cputdirect
29         .import soft80_putchar
30         .import soft80_newline
31         .import soft80_plot
32         .export _cputc := soft80_cputc
33         .export _cputcxy := soft80_cputcxy
34         .export cputdirect := soft80_cputdirect
35         .export putchar := soft80_putchar
36         .export newline := soft80_newline
37         .export plot := soft80_plot
38
39         ; soft80_cvline.s
40         .import soft80_cvlinexy
41         .import soft80_cvline
42         .export _cvlinexy := soft80_cvlinexy
43         .export _cvline := soft80_cvline
44
45         ; soft80_kclrscr.s
46         .import soft80_kclrscr
47         .export _clrscr := soft80_kclrscr
48         .export CLRSCR := soft80_kclrscr
49
50         ; soft80_kplot.s
51         .import soft80_kplot
52         .export PLOT := soft80_kplot
53
54         ; soft80_kscreen.s
55         .import soft80_screensize
56         .export screensize := soft80_screensize
57