mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
d90c7e9853
There's no target with more than one serial driver (and I don't see that change anytime soon) so it's a no-brainer to apply the standard driver concept to serial drivers.
14 lines
182 B
ArmAsm
14 lines
182 B
ArmAsm
;
|
|
; Name of the standard serial driver
|
|
;
|
|
; Oliver Schmidt, 2022-12-22
|
|
;
|
|
; const char ser_stddrv[];
|
|
;
|
|
|
|
.export _ser_stddrv
|
|
|
|
.rodata
|
|
|
|
_ser_stddrv: .asciiz "c128_swlink.ser"
|