pushw.s



;
; Ullrich von Bassewitz, 31.08.1998
;
; CC65 runtime: Push word from stack
;

	.export		pushw, pushwidx
	.import		pushax
	.importzp	ptr1

pushwidx:
	sty	ptr1
	clc
	adc	ptr1
	bcc	pushw
	inx
pushw:	sta	ptr1
	stx	ptr1+1
	ldy	#1
	lda	(ptr1),y
	tax
	dey
	lda	(ptr1),y
	jmp	pushax



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