2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 06.08.1998
|
|
|
|
;
|
|
|
|
; CC65 runtime: function prologue
|
|
|
|
;
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.export enter
|
|
|
|
.importzp sp
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
enter: tya ; get arg size
|
|
|
|
ldy sp
|
|
|
|
bne L1
|
|
|
|
dec sp+1
|
|
|
|
L1: dec sp
|
|
|
|
ldy #0
|
|
|
|
sta (sp),y ; Store the arg count
|
|
|
|
rts
|
2000-05-28 13:40:48 +00:00
|
|
|
|