1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-29 17:56:21 +00:00

Align rootdir() return value rather with POSIX functions than with DIO functions.

git-svn-id: svn://svn.cc65.org/cc65/trunk@4680 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
ol.sc 2010-06-02 07:03:54 +00:00
parent 2e0ab6f863
commit 710f59b654
2 changed files with 7 additions and 9 deletions

View File

@ -149,9 +149,9 @@ unsigned char get_ostype (void);
void rebootafterexit (void); void rebootafterexit (void);
/* Reboot machine after program termination has completed. */ /* Reboot machine after program termination has completed. */
unsigned char __fastcall__ rootdir (unsigned char drive, char* buf); int __fastcall__ rootdir (unsigned char drive, char* buf);
/* Fill buffer with root directory name of ProDOS 8 disk in ProDOS 8 drive. /* Fill buffer with root directory name of ProDOS 8 disk in
* Returns 0 for success and an OS specific error code in case of failure. * ProDOS 8 drive. Returns 0 on success and -1 on error.
*/ */
#define ser_apple2_slot(num) ser_ioctl (0, (void*) (num)) #define ser_apple2_slot(num) ser_ioctl (0, (void*) (num))

View File

@ -1,11 +1,11 @@
; ;
; Oliver Schmidt, 2010-05-24 ; Oliver Schmidt, 2010-05-24
; ;
; unsigned char __fastcall__ rootdir (unsigned char drive, char* buf); ; int __fastcall__ rootdir (unsigned char drive, char* buf);
; ;
.export _rootdir .export _rootdir
.import popax .import popax, oserrexit
.include "zeropage.inc" .include "zeropage.inc"
.include "errno.inc" .include "errno.inc"
@ -50,7 +50,5 @@ _rootdir:
tax tax
rts rts
; Return error ; Return oserror
oserr: sta __oserror oserr: jmp oserrexit
ldx #$00
rts