From 2701bb9ebb5952d235566433454c1cced90cee8a Mon Sep 17 00:00:00 2001 From: otya128 Date: Thu, 1 Sep 2016 19:10:32 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=B7=E3=82=B9=E3=83=86=E3=83=A0=E5=A4=89?= =?UTF-8?q?=E6=95=B0=E3=82=92=E3=83=80=E3=82=A4=E3=83=AC=E3=82=AF=E3=83=88?= =?UTF-8?q?=E3=83=A2=E3=83=BC=E3=83=89=E3=81=A7=E3=82=82=E6=AD=A3=E5=B8=B8?= =?UTF-8?q?=E3=81=AB=E4=BD=BF=E3=81=88=E3=82=8B=E3=82=88=E3=81=86=E3=81=AB?= =?UTF-8?q?=E3=81=97=E3=81=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SMILEBASIC/compiler.d | 1 + 1 file changed, 1 insertion(+) diff --git a/SMILEBASIC/compiler.d b/SMILEBASIC/compiler.d index 6573b88..0331460 100644 --- a/SMILEBASIC/compiler.d +++ b/SMILEBASIC/compiler.d @@ -1151,6 +1151,7 @@ class Compiler globalIndex = cast(int)vm.currentSlot.global.length; functions = vm.currentSlot.functions; compileProgram(); + registerSystemVariable(vm); vm.directSlot(start, code, globalIndex + 1, global, functions, globalScope.data, globalLabel, debugInfo); } VM compile()