mpw/mpw/mpw_io.cpp

116 lines
2.0 KiB
C++
Raw Normal View History

2013-02-16 20:37:37 +00:00
#include "mpw.h"
#include "mpw_internal.h"
#include <algorithm>
#include <memory>
#include <cerrno>
#include <cstdio>
#include <unistd.h>
#include <cpu/defs.h>
#include <cpu/fmem.h>
#include <cpu/cpuModule.h>
#include <toolbox/os.h>
2013-02-26 01:16:55 +00:00
#include <toolbox/os_internal.h>
2013-02-16 20:37:37 +00:00
namespace MPW
{
void ftrap_read(uint16_t trap)
{
uint32_t d0;
uint32_t sp = cpuGetAReg(7);
uint32_t parm = memoryReadLong(sp + 4);
MPWFile f;
f.flags = memoryReadWord(parm);
f.error = memoryReadWord(parm + 2);
f.device = memoryReadLong(parm + 4);
f.cookie = memoryReadLong(parm + 8);
f.count = memoryReadLong(parm + 12);
f.buffer = memoryReadLong(parm + 16);
2013-03-02 22:39:13 +00:00
Log("%04x Read(%08x)\n", trap, parm);
2013-02-16 20:37:37 +00:00
d0 = 0;
2013-02-26 01:16:55 +00:00
int fd = f.cookie;
ssize_t size;
2013-02-16 20:37:37 +00:00
2013-03-02 22:39:13 +00:00
Log(" read(%04x, %08x, %08x)", fd, f.buffer, f.count);
2013-02-26 01:16:55 +00:00
size = OS::Internal::FDEntry::read(fd, memoryPointer(f.buffer), f.count);
2013-03-02 22:39:13 +00:00
//Log(" -> %ld\n", size);
2013-02-26 01:16:55 +00:00
if (size < 0)
2013-02-16 20:37:37 +00:00
{
2013-02-26 01:16:55 +00:00
//f.count = 0;
f.error = OS::ioErr; // ioErr
d0 = errno_to_errno(errno);
2013-02-16 20:37:37 +00:00
}
2013-02-26 01:16:55 +00:00
else
{
f.count -= size;
f.error = 0;
}
// write back...
memoryWriteWord(f.error, parm + 2);
memoryWriteLong(f.count, parm + 12);
2013-02-16 20:37:37 +00:00
cpuSetDReg(0, d0);
}
void ftrap_write(uint16_t trap)
{
uint32_t d0;
uint32_t sp = cpuGetAReg(7);
uint32_t parm = memoryReadLong(sp + 4);
MPWFile f;
f.flags = memoryReadWord(parm);
f.error = memoryReadWord(parm + 2);
f.device = memoryReadLong(parm + 4);
f.cookie = memoryReadLong(parm + 8);
f.count = memoryReadLong(parm + 12);
f.buffer = memoryReadLong(parm + 16);
2013-02-16 23:51:18 +00:00
Log("%04x Write(%08x)\n", trap, parm);
2013-02-16 20:37:37 +00:00
d0 = 0;
2013-02-26 01:16:55 +00:00
int fd = f.cookie;
ssize_t size;
2013-03-02 22:39:13 +00:00
Log(" write(%04x, %08x, %08x)\n", fd, f.buffer, f.count);
2013-02-26 01:16:55 +00:00
size = OS::Internal::FDEntry::write(fd, memoryPointer(f.buffer), f.count);
if (size < 0)
2013-02-16 20:37:37 +00:00
{
2013-02-26 01:16:55 +00:00
//f.count = 0;
f.error = OS::ioErr; // ioErr
d0 = errno_to_errno(errno);
2013-02-16 20:37:37 +00:00
}
2013-02-26 01:16:55 +00:00
else
{
f.count -= size;
f.error = 0;
}
// write back...
memoryWriteWord(f.error, parm + 2);
memoryWriteLong(f.count, parm + 12);
2013-02-16 20:37:37 +00:00
cpuSetDReg(0, d0);
}
}