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:
mrintsch
2001-10-10 20:35:07 +00:00
parent 88dfee5642
commit babcf84f17
4 changed files with 41 additions and 24 deletions

View File

@@ -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