2000-10-26 20:43:54 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 26.10.2000
|
|
|
|
;
|
|
|
|
; CC65 runtime: Push a extended with FF onto the stack
|
|
|
|
;
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.export pushaFF
|
|
|
|
.import pushax
|
2000-10-26 20:43:54 +00:00
|
|
|
|
|
|
|
; Beware: The optimizer knows about this function!
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.proc pushaFF
|
2000-10-26 20:43:54 +00:00
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
ldx #$FF
|
|
|
|
jmp pushax
|
2000-10-26 20:43:54 +00:00
|
|
|
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
|