mirror of
https://github.com/ksherlock/mpw.git
synced 2024-11-21 09:30:55 +00:00
support the auto-pop bit for tool calls (MPW Pascal IIgs 1.0b1)
This commit is contained in:
parent
2e9ab5200c
commit
c0fe74c1b8
@ -262,16 +262,15 @@ namespace ToolBox {
|
||||
void dispatch(uint16_t trap)
|
||||
{
|
||||
|
||||
return native_dispatch(trap);
|
||||
|
||||
// hold off on actually _calling_ for now...
|
||||
#if 0
|
||||
|
||||
uint32_t returnPC = 0;
|
||||
|
||||
bool saveA0 = false;
|
||||
uint32_t a0 = cpuGetAReg(0);
|
||||
|
||||
|
||||
// hold off on actually _calling_ for now...
|
||||
#if 0
|
||||
|
||||
if (trap == 0xafff)
|
||||
{
|
||||
// called from the trap address stub.
|
||||
@ -330,7 +329,7 @@ namespace ToolBox {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
#endif
|
||||
|
||||
/*
|
||||
* The auto-pop bit is bit 10 in an A-line instruction for a
|
||||
@ -370,6 +369,7 @@ namespace ToolBox {
|
||||
}
|
||||
|
||||
|
||||
#if 0
|
||||
if (is_tool_trap(trap))
|
||||
{
|
||||
uint16_t tt = trap & 0x03ff;
|
||||
@ -414,13 +414,12 @@ namespace ToolBox {
|
||||
assert("OS trap overrides are not yet supported.");
|
||||
}
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
native_dispatch(trap);
|
||||
|
||||
if (saveA0) cpuSetAReg(0, a0);
|
||||
if (returnPC) cpuInitializeFromNewPC(returnPC);
|
||||
#endif
|
||||
}
|
||||
|
||||
void native_dispatch(uint16_t trap)
|
||||
|
Loading…
Reference in New Issue
Block a user