sim65: If mode argument is omitted, use a reasonable default.

This commit is contained in:
Patrick Pelletier
2018-08-17 10:50:16 -07:00
committed by Oliver Schmidt
parent aba320eade
commit 974188796c

View File

@@ -175,6 +175,13 @@ static void PVOpen (CPURegs* Regs)
unsigned Flags = PopParam (2);
unsigned Name = PopParam (2);
if (Regs->YR - 4 < 2) {
/* If the caller did not supply the mode argument,
** use a reasonable default.
*/
Mode = 0400 | 0200;
}
do {
Path[I] = MemReadByte (Name++);
}