mirror of
https://github.com/mist64/msbasic.git
synced 2024-11-15 08:05:15 +00:00
29 lines
588 B
ArmAsm
29 lines
588 B
ArmAsm
.segment "CODE"
|
|
; ----------------------------------------------------------------------------
|
|
; SEE IF CONTROL-C TYPED
|
|
; ----------------------------------------------------------------------------
|
|
.ifndef CONFIG_CBM_ALL
|
|
.include "cbm_iscntc.s"
|
|
.endif
|
|
.ifdef KBD
|
|
.include "kbd_iscntc.s"
|
|
.endif
|
|
.ifdef OSI
|
|
.include "osi_iscntc.s"
|
|
.endif
|
|
.ifdef APPLE
|
|
.include "apple_iscntc.s"
|
|
.endif
|
|
.ifdef KIM
|
|
.include "kim_iscntc.s"
|
|
.endif
|
|
.ifdef MICROTAN
|
|
.include "microtan_iscntc.s"
|
|
.endif
|
|
.ifdef AIM65
|
|
.include "aim65_iscntc.s"
|
|
.endif
|
|
.ifdef SYM1
|
|
.include "sym1_iscntc.s"
|
|
.endif
|
|
;!!! runs into "STOP"
|