2000-10-26 20:43:54 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 26.10.2000
|
|
|
|
;
|
|
|
|
; CC65 runtime: Push (int)3 onto the stack
|
|
|
|
;
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.export push3
|
|
|
|
.import pusha0
|
2000-10-26 20:43:54 +00:00
|
|
|
|
|
|
|
; Beware: The optimizer knows about this function!
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.proc push3
|
2000-10-26 20:43:54 +00:00
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
lda #3
|
|
|
|
jmp pusha0
|
2000-10-26 20:43:54 +00:00
|
|
|
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
|