1
0

変数周りのバグ取った

This commit is contained in:
otya128
2016-02-22 23:26:44 +09:00
parent 5f0078a8f9
commit 32af97aa8f
3 changed files with 31 additions and 7 deletions

View File

@@ -56,9 +56,14 @@ class VM
slots[i] = new VMSlot();
}
}
int currentSlotNumber()
{
return slot;
}
void setCurrentSlot(int slot)
{
currentSlot = slots[slot];
this.slot = slot;
}
void directSlot(int start, Code[] code, int len, VMVariable[wstring] globalTable, Function[wstring] functions, DataTable gdt/*GNU Debugging Tools*/,
int[wstring] globalLabel, DebugInfo dinfo)