1
0

VERSION,FREEMEM,RIGHT$実装

This commit is contained in:
otya128
2015-08-27 21:35:15 +09:00
parent 7eabb17a22
commit f149ce596f
4 changed files with 30 additions and 5 deletions

View File

@@ -67,4 +67,19 @@ class CSRZ : SystemVariable
return Value(vm.petitcomputer.CSRZ);
}
}
class Version : SystemVariable
{
@property
override Value value(VM vm)
{
return Value(0x3010000);
}
}
class FreeMem : SystemVariable
{
@property
override Value value(VM vm)
{
return Value(8327164);
}
}