mirror of
https://github.com/ksherlock/mpw.git
synced 2025-01-03 19:30:43 +00:00
Add MaxApplZone stub
This commit is contained in:
parent
5dcf23ad76
commit
e31c376a7d
@ -1455,4 +1455,18 @@ namespace MM
|
||||
return 0;
|
||||
}
|
||||
|
||||
uint16_t MaxApplZone(uint16_t trap)
|
||||
{
|
||||
// PROCEDURE MaxApplZone;
|
||||
|
||||
/*
|
||||
* on exit:
|
||||
* D0 Result code
|
||||
*/
|
||||
|
||||
Log("%04x MaxApplZone\n", trap);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
}
|
@ -81,6 +81,8 @@ namespace MM
|
||||
uint16_t HandleZone(uint16_t trap);
|
||||
uint16_t GetZone(uint16_t trap);
|
||||
uint16_t SetZone(uint16_t trap);
|
||||
|
||||
uint16_t MaxApplZone(uint16_t trap);
|
||||
}
|
||||
|
||||
|
||||
|
@ -254,6 +254,11 @@ namespace ToolBox {
|
||||
d0 = MM::HandleZone(trap);
|
||||
break;
|
||||
|
||||
// MaxApplZone
|
||||
case 0xa063:
|
||||
d0 = MM::MaxApplZone(trap);
|
||||
break;
|
||||
|
||||
// ReadDateTime (VAR sees: LONGINT) : OSErr;
|
||||
case 0xa039:
|
||||
d0 = OS::ReadDateTime(trap);
|
||||
|
Loading…
Reference in New Issue
Block a user