1
0

Implement LINPUT

This commit is contained in:
otya128
2016-12-29 17:59:47 +09:00
parent c0f1e4e9e5
commit 20889c28e1
5 changed files with 80 additions and 0 deletions

View File

@@ -2551,3 +2551,13 @@ class GosubUndefinedLabel : Code
throw new UndefinedLabel(label);
}
}
class Linput : Code
{
override void execute(VM vm)
{
Value guide;
vm.pop(guide);
vm.push(Value(vm.petitcomputer.input(guide.castDString, false)));
}
}