1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-08 16:54:52 +00:00
cc65/libsrc/c64/extra/soft80.s

58 lines
1.6 KiB
ArmAsm
Raw Normal View History

2015-10-12 12:40:12 +00:00
;
; Groepaz/Hitmen, 12.10.2015
;
; import/overload stubs for the soft80 implementation
; soft80_cgetc.s
.import soft80_cgetc
.export _cgetc := soft80_cgetc
; soft80_chline.s
.import soft80_chlinexy
.import soft80_chline
.export _chlinexy := soft80_chlinexy
.export _chline := soft80_chline
; soft80_color.s
.import soft80_textcolor
.import soft80_bgcolor
.import soft80_bordercolor
.export _textcolor := soft80_textcolor
.export _bgcolor := soft80_bgcolor
.export _bordercolor := soft80_bordercolor
; soft80_cputc.s
.import soft80_cputc
.import soft80_cputcxy
.import soft80_cputdirect
.import soft80_putchar
.import soft80_newline
.import soft80_plot
.export _cputc := soft80_cputc
.export _cputcxy := soft80_cputcxy
.export cputdirect := soft80_cputdirect
.export putchar := soft80_putchar
.export newline := soft80_newline
.export plot := soft80_plot
; soft80_cvline.s
.import soft80_cvlinexy
.import soft80_cvline
.export _cvlinexy := soft80_cvlinexy
.export _cvline := soft80_cvline
; soft80_kclrscr.s
.import soft80_kclrscr
.export _clrscr := soft80_kclrscr
.export CLRSCR := soft80_kclrscr
; soft80_kplot.s
.import soft80_kplot
.export PLOT := soft80_kplot
; soft80_kscreen.s
2015-10-01 13:03:11 +00:00
.import soft80_screensize
.export screensize := soft80_screensize