1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00
cc65/libsrc/apple2/tgi_stat_stddrv.s

23 lines
401 B
ArmAsm
Raw Permalink Normal View History

;
; Address of the static standard tgi driver
;
; Oliver Schmidt, 2012-11-01
;
; const void tgi_static_stddrv[];
;
.export _tgi_static_stddrv
.ifdef __APPLE2ENH__
.import _a2e_hi_tgi
.else
.import _a2_hi_tgi
.endif
.rodata
.ifdef __APPLE2ENH__
_tgi_static_stddrv := _a2e_hi_tgi
.else
_tgi_static_stddrv := _a2_hi_tgi
.endif