Skip to content
This repository has been archived by the owner on May 27, 2021. It is now read-only.

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
0xF6 committed May 22, 2020
1 parent f1364dd commit 6b42cd1
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 5 deletions.
2 changes: 0 additions & 2 deletions acc/Host.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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<Args>();
Expand Down
2 changes: 0 additions & 2 deletions vm/csharp/component/Bus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 6b42cd1

Please sign in to comment.