mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
308785487f
git-svn-id: svn://svn.cc65.org/cc65/trunk@940 b7a2c559-68d2-44c3-8de9-860c34a00d81
32 lines
719 B
C
32 lines
719 B
C
/*
|
|
* Marc 'BlackJack' Rintsch, 25.03.2001
|
|
*
|
|
* int cbm_write(unsigned char lfn, void* buffer, unsigned int size);
|
|
*/
|
|
|
|
#include <cbm.h>
|
|
#include <errno.h>
|
|
|
|
int cbm_write(unsigned char lfn, void* buffer, unsigned int size) {
|
|
|
|
static unsigned int byteswritten;
|
|
|
|
/* if we can't change to the outputchannel #lfn then return an error */
|
|
if (_oserror = cbm_k_ckout(lfn)) return -1;
|
|
|
|
byteswritten = 0;
|
|
|
|
while (byteswritten<size && !cbm_k_readst()) {
|
|
cbm_k_bsout(((unsigned char*)buffer)[byteswritten++]);
|
|
}
|
|
|
|
if (cbm_k_readst()) {
|
|
_oserror = 5; /* device not present */
|
|
byteswritten = -1;
|
|
}
|
|
|
|
cbm_k_clrch();
|
|
|
|
return byteswritten;
|
|
}
|