From 6b42cd1dd030776466fdf05edff5485ce7e0e368 Mon Sep 17 00:00:00 2001 From: Yuuki Wesp Date: Fri, 22 May 2020 03:49:13 +0300 Subject: [PATCH] fix --- acc/Host.cs | 2 -- submodules/runtime | 2 +- vm/csharp/component/Bus.cs | 2 -- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/acc/Host.cs b/acc/Host.cs index 81afbdc..fc4556b 100644 --- a/acc/Host.cs +++ b/acc/Host.cs @@ -22,7 +22,6 @@ namespace ancient.compiler using static System.Console; using static _term; using Color = System.Drawing.Color; - internal class Host { public static int Main(string[] c_args) @@ -38,7 +37,6 @@ public static int Main(string[] c_args) ForegroundColor = ConsoleColor.White; } - Module.Boot(); AppDomain.CurrentDomain.ProcessExit += (sender, eventArgs) => { ConsoleExtensions.Disable(); }; Encoding.RegisterProvider(CodePagesEncodingProvider.Instance); var raw = new FluentCommandLineParser(); diff --git a/submodules/runtime b/submodules/runtime index c383d25..6eea996 160000 --- a/submodules/runtime +++ b/submodules/runtime @@ -1 +1 @@ -Subproject commit c383d2509c320abe2563a537e441bb06f53d4e08 +Subproject commit 6eea996b75aface58713ba8632bdf6e7fb0899a2 diff --git a/vm/csharp/component/Bus.cs b/vm/csharp/component/Bus.cs index 3e947f4..55602d2 100644 --- a/vm/csharp/component/Bus.cs +++ b/vm/csharp/component/Bus.cs @@ -52,8 +52,6 @@ public void Add(IDevice device) public IDevice find(int address) => Devices.FirstOrDefault(x => x.startAddress == address) ?? new CorruptedDevice(cpu); - - public IState GetState() => State; internal void AttachDebugger(Debugger dbg) => this.debugger = dbg; public void Unload()