]> git.sur5r.net Git - cc65/blobdiff - libsrc/cbm/cbm_load.c
Remove the load address since it's supplied in its own module now.
[cc65] / libsrc / cbm / cbm_load.c
index 8dbd5b245bb84dc7b197262c3011be3925a14f78..297910615abb8999d114f4c96d8abd2414167bd6 100644 (file)
@@ -1,20 +1,21 @@
 /*
  * Marc 'BlackJack' Rintsch, 06.03.2001
  *
- * unsigned int cbm_load(const char* name, char device, unsigned int addr);
+ * unsigned int cbm_load(const char* name,
+ *                       unsigned char device,
+ *                       const unsigned char* data);
  */
 
 #include <cbm.h>
 
 /* loads file "name" from given device to given address or to the load address
- * of the file if addr is 0
+ * of the file if "data" is 0
  */
-unsigned int cbm_load(const char* name, char device, unsigned int addr)
+unsigned int 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)
-     */
-    cbm_k_setlfs(0, device, ((addr == 0) ? 1 : 0));
+     * (BASIC V2 sets it to the value of the SA for LOAD) */
+    cbm_k_setlfs(0, device, data == 0);
     cbm_k_setnam(name);
-    return cbm_k_load(0, addr);
+    return (cbm_k_load(0, (unsigned int)data) - (unsigned int)data);
 }