mirror of
https://github.com/cc65/cc65.git
synced 2024-11-19 21:32:19 +00:00
15 lines
234 B
ArmAsm
15 lines
234 B
ArmAsm
|
;
|
||
|
; Address of the static standard serial driver
|
||
|
;
|
||
|
; Oliver Schmidt, 2022-12-22
|
||
|
;
|
||
|
; const void ser_static_stddrv[];
|
||
|
;
|
||
|
|
||
|
.export _ser_static_stddrv
|
||
|
.import _cbm510_std_ser
|
||
|
|
||
|
.rodata
|
||
|
|
||
|
_ser_static_stddrv := _cbm510_std_ser
|