]> git.sur5r.net Git - cc65/commitdiff
Made cbm_load() be a fastcall function.
authorGreg King <gregdk@users.sf.net>
Fri, 13 Mar 2015 09:46:40 +0000 (05:46 -0400)
committerGreg King <gregdk@users.sf.net>
Fri, 13 Mar 2015 09:46:40 +0000 (05:46 -0400)
include/cbm.h
libsrc/cbm/cbm_load.c

index 1bc29bf4c684a564644a4b4f9c1f213a5d0175c6..701924d5714f9485d3dda640de3602a8442755d8 100644 (file)
@@ -222,7 +222,7 @@ void cbm_k_unlsn (void);
 
 
 
-unsigned int __cdecl__ cbm_load (const char* name, unsigned char device, void* data);
+unsigned int __fastcall__ cbm_load (const char* name, unsigned char device, void* data);
 /* Loads file "name", from given device, to given address -- or, to the load
 ** address of the file if "data" is the null pointer (like load"name",8,1
 ** in BASIC).
index 7d4a5086b40544b276763f5e67e61d3f58fb6192..eba864fcc1dccc3d74e5f3d0853e11064ff90f7b 100644 (file)
@@ -11,7 +11,7 @@
 /* loads file "name" from given device to given address or to the load address
 ** of the file if "data" is 0
 */
-unsigned int __cdecl__ cbm_load(const char* name, unsigned char device, void* data)
+unsigned int __fastcall__ cbm_load(const char* name, unsigned char device, void* data)
 {
     /* LFN is set to 0; but, it's not needed for loading
     ** (BASIC V2 sets it to the value of the SA for LOAD).