You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
527 B
ArmAsm
36 lines
527 B
ArmAsm
12 years ago
|
;
|
||
|
; Ullrich von Bassewitz, 05.08.1998
|
||
|
;
|
||
|
; CC65 runtime: sub ints
|
||
|
;
|
||
|
|
||
|
.export tossuba0, tossubax
|
||
|
.import addysp1
|
||
|
.importzp sp
|
||
|
|
||
|
.macpack cpu
|
||
|
|
||
|
; AX = TOS - AX
|
||
|
|
||
|
tossuba0:
|
||
|
ldx #0
|
||
|
tossubax:
|
||
|
sec
|
||
|
eor #$FF
|
||
|
.if (.cpu .bitand CPU_ISET_65SC02)
|
||
|
adc (sp)
|
||
|
ldy #1
|
||
|
.else
|
||
|
ldy #0
|
||
|
adc (sp),y ; Subtract low byte
|
||
|
iny
|
||
|
.endif
|
||
|
pha ; Save high byte
|
||
|
txa
|
||
|
eor #$FF
|
||
|
adc (sp),y ; Subtract high byte
|
||
|
tax ; High byte into X
|
||
|
pla ; Restore low byte
|
||
|
jmp addysp1 ; drop TOS
|
||
|
|