1
0

TABの実装

This commit is contained in:
otya128
2015-08-30 13:41:52 +09:00
parent 4c45325f3e
commit 45c72df297
5 changed files with 75 additions and 19 deletions

View File

@@ -224,7 +224,7 @@ class PrintCode : Code
case ValueType.String:
//write(arg.stringValue);
if(vm.petitcomputer)
vm.petitcomputer.printConsole(arg.stringValue);
vm.petitcomputer.printConsoleString(arg.stringValue);
break;
default:
//type mismatch
@@ -1421,7 +1421,7 @@ class PushSystemVariable : Code
}
override void execute(VM vm)
{
vm.push(var.value(vm));
vm.push(var.value);
}
override string toString(VM vm)
{