mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-22 00:32:44 +00:00
access
This commit is contained in:
parent
481da52aac
commit
58ab56e35e
16
mpw/mpw.cpp
16
mpw/mpw.cpp
@ -23,8 +23,22 @@ namespace {
|
|||||||
|
|
||||||
void ftrap_access(uint16_t trap)
|
void ftrap_access(uint16_t trap)
|
||||||
{
|
{
|
||||||
// should never hit... only used for opening a file
|
// open a file, rename a file, or delete a file.
|
||||||
|
|
||||||
|
uint32_t sp = cpuGetAReg(7);
|
||||||
|
|
||||||
|
// hmmm not sure if 3 or 4 parameters.
|
||||||
|
|
||||||
|
uint32_pt name = memoryReadLong(sp + 4);
|
||||||
|
uint32_t op = memoryReadLong(sp + 8);
|
||||||
|
uint32_t parm = memoryReadLong(sp + 12);
|
||||||
|
|
||||||
|
|
||||||
|
MPWFile f;
|
||||||
|
|
||||||
|
|
||||||
fprintf(stderr, "%04x Access()\n", trap);
|
fprintf(stderr, "%04x Access()\n", trap);
|
||||||
|
cpuSetDReg(0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ftrap_close(uint16_t trap)
|
void ftrap_close(uint16_t trap)
|
||||||
|
Loading…
Reference in New Issue
Block a user