pushlysp.s



;
; Ullrich von Bassewitz, 22.06.1998
;
; CC65 runtime: Push a long from somewhere in the stack
;


	.export		pushlysp
	.import		pusheax
	.importzp	sreg, sp

.proc	pushlysp

	iny
	iny
	lda	(sp),y
	iny
	sta	sreg
	lda	(sp),y
	sta	sreg+1
	dey
	dey
	lda	(sp),y
	dey
	tax
	lda 	(sp),y
	jmp	pusheax

.endproc




Valid HTML 4.0! pushlysp.s.html; generated on Sat Oct 13 22:41:33 2001 by ca65html
uz@cc65.org