1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-28 10:55:43 +00:00

save a byte (idea by Uz, done by Daniel Serpell)

git-svn-id: svn://svn.cc65.org/cc65/trunk@4475 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cpg 2009-11-23 21:17:56 +00:00
parent c7a33334ba
commit 2011f92c3a

View File

@ -80,19 +80,19 @@ L1: lda sp,x
lda LMARGN
sta old_lmargin
lda #0
sta LMARGN
ldy #0
sty LMARGN
; set keyb to upper/lowercase mode
ldx SHFLOK
stx old_shflok
sta SHFLOK
sty SHFLOK
; Initialize conio stuff
lda #$FF
sta CH
dey ; Set X to $FF
sty CH
; Push arguments and call main