Added an entry point to push a 32 bit long value.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5705 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
efb4cc9e37
commit
85b25b3d22
1 changed files with 6 additions and 3 deletions
|
@ -7,10 +7,13 @@
|
|||
;
|
||||
; push eax on stack
|
||||
;
|
||||
.export push0ax, pusheax
|
||||
.import decsp4
|
||||
.importzp sp, sreg
|
||||
.export pushl0, push0ax, pusheax
|
||||
.import decsp4
|
||||
.importzp sp, sreg
|
||||
|
||||
pushl0:
|
||||
lda #0
|
||||
tax
|
||||
push0ax:
|
||||
ldy #0
|
||||
sty sreg
|
||||
|
|
Loading…
Add table
Reference in a new issue