Changed the parameters of cbm_load and cbm_save to a more "C-like" way.
The API should be stable now. git-svn-id: svn://svn.cc65.org/cc65/trunk@1018 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -1,12 +1,13 @@
|
||||
;
|
||||
; Ullrich von Bassewitz, 03.06.1999
|
||||
;
|
||||
; unsigned char __fastcall__ cbm_k_load (unsigned char flag, unsigned addr);
|
||||
; unsigned int __fastcall__ cbm_k_load (unsigned char flag, unsigned addr);
|
||||
;
|
||||
|
||||
.include "cbm.inc"
|
||||
|
||||
.export _cbm_k_load
|
||||
.import __oserror
|
||||
.import popa
|
||||
.importzp ptr1
|
||||
|
||||
@@ -17,7 +18,14 @@ _cbm_k_load:
|
||||
ldx ptr1
|
||||
ldy ptr1+1
|
||||
jsr LOAD
|
||||
bcs @NotOk
|
||||
lda #0
|
||||
@NotOk: rts
|
||||
bcc @Ok
|
||||
sta __oserror
|
||||
ldx ptr1
|
||||
ldy ptr1+1
|
||||
@Ok: txa
|
||||
pha
|
||||
tya
|
||||
tax
|
||||
pla
|
||||
rts
|
||||
|
||||
|
||||
Reference in New Issue
Block a user