1
0

Implement GSAVE -1

This commit is contained in:
otya128
2017-07-09 22:44:25 +09:00
parent 946e3a1c1b
commit ee4ab7bc9d
5 changed files with 60 additions and 5 deletions

View File

@@ -226,6 +226,14 @@ class IllegalSymbolString : SmileBasicError
super("Illegal symbol string");
}
}
class IllegalFileFormat : SmileBasicError
{
this(string func)
{
this.errnum = 35;
super("Illegal file format(" ~ func ~ ")");
}
}
class UsePRGEDITBeforeAnyPRGFunction : SmileBasicError
{
this(string func)