Added initcwd.s from Stefan Haubenthal which initializes _cwd on startup.
git-svn-id: svn://svn.cc65.org/cc65/trunk@3540 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -70,6 +70,7 @@ S_OBJS = c_acptr.o \
|
|||||||
gotox.o \
|
gotox.o \
|
||||||
gotoxy.o \
|
gotoxy.o \
|
||||||
gotoy.o \
|
gotoy.o \
|
||||||
|
initcwd.o \
|
||||||
open.o \
|
open.o \
|
||||||
oserrlist.o \
|
oserrlist.o \
|
||||||
oserror.o \
|
oserror.o \
|
||||||
|
|||||||
35
libsrc/cbm/initcwd.s
Normal file
35
libsrc/cbm/initcwd.s
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
;
|
||||||
|
; Stefan Haubenthal, 2005-06-08
|
||||||
|
;
|
||||||
|
; CBM _curunit to _cwd
|
||||||
|
;
|
||||||
|
|
||||||
|
.export initcwd
|
||||||
|
.import __curunit, __cwd
|
||||||
|
.import pusha0, tosudiva0
|
||||||
|
.importzp sreg, ptr1
|
||||||
|
|
||||||
|
.macpack generic
|
||||||
|
|
||||||
|
.segment "INIT"
|
||||||
|
|
||||||
|
.proc initcwd
|
||||||
|
|
||||||
|
lda __curunit
|
||||||
|
jsr pusha0
|
||||||
|
lda #10
|
||||||
|
jsr tosudiva0
|
||||||
|
ldx #0
|
||||||
|
lda sreg
|
||||||
|
beq :+ ; >=10
|
||||||
|
add #'0'
|
||||||
|
sta __cwd
|
||||||
|
inx
|
||||||
|
: lda ptr1 ; rem
|
||||||
|
add #'0'
|
||||||
|
sta __cwd,x
|
||||||
|
lda #0
|
||||||
|
sta __cwd+1,x
|
||||||
|
rts
|
||||||
|
|
||||||
|
.endproc
|
||||||
Reference in New Issue
Block a user