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 20, 2020
1 parent e16cd60 commit 00415ea
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions vm/csharp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ public static async Task Main(string[] args)
DeviceLoader.OnTrace += Console.WriteLine;

Module.Boot();
InternalVMFunctions.Setup(bus);
DeviceLoader.AutoGrub(bus.Add);

if (AppFlag.GetVariable("REPL"))
Expand Down Expand Up @@ -140,6 +141,8 @@ public static void InteractiveConstruction(Bus bus)
var input = Console.ReadLine();
if (input is null)
continue;
if (input == "exit")
return;

if (input.StartsWith("0x"))
{
Expand Down

0 comments on commit 00415ea

Please sign in to comment.