1
0

グラフィック系を大幅に高速化,16,2進数リテラルの実�

This commit is contained in:
otya128
2015-08-23 20:37:56 +09:00
parent e57782ea3d
commit 0a52b51371
7 changed files with 185 additions and 48 deletions

View File

@@ -160,6 +160,14 @@ class Compiler
sysVariable["DATE$"] = new Date();
global["TIME$"] = VMVariable(-1);
sysVariable["TIME$"] = new Time();
global["MAINCNT"] = VMVariable(-1);
sysVariable["MAINCNT"] = new Maincnt();
global["CSRX"] = VMVariable(-1);
sysVariable["CSRX"] = new CSRX();
global["CSRY"] = VMVariable(-1);
sysVariable["CSRY"] = new CSRY();
global["CSRZ"] = VMVariable(-1);
sysVariable["CSRZ"] = new CSRZ();
}
SystemVariable[wstring] sysVariable;