1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-04 13:29:35 +00:00
cc65/libsrc/cbm/cbm_load.c

22 lines
609 B
C
Raw Normal View History

/*
* Marc 'BlackJack' Rintsch, 06.03.2001
*
* unsigned char cbm_load(const char* name, char device, unsigned int addr);
*/
#include <cbm.h>
#include <errno.h>
/* loads file "name" from given device to given address or to the load address
* of the file if addr is 0
*/
unsigned char cbm_load(const char* name, unsigned char device,
unsigned int addr)
{
/* 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);
cbm_k_setnam(name);
return _oserror = cbm_k_load(0, addr);
}