CosmosOS / Cosmos

Cosmos is an operating system "construction kit". Build your own OS using managed languages such as C#, VB.NET, and more!
https://www.goCosmos.org
BSD 3-Clause "New" or "Revised" License
2.94k stars 553 forks source link

Cosmos won't boot successfully. #786

Closed piixx closed 7 years ago

piixx commented 7 years ago

Just installed the DevKit over the UserKit. When I had the userkit installed, everything was booting and working smoothly. Realized I needed the DevKit in order to power on and off using ACPI and installed the DevKit successfully. Now, I can write code and all the dependencies are fine, but the VM just gets stuck on "Kernel Class Created" and does not continue. This is all using the default code:

using System;
using System.Collections.Generic;
using System.Text;
using Sys = Cosmos.System;

namespace CosIX
{
    public class Kernel: Sys.Kernel
    {
        protected override void BeforeRun()
        {
            Console.WriteLine("Cosmos booted successfully. Type a line of text to get it echoed back.");
        }

        protected override void Run()
        {
            Console.Write("Input: ");
            var input = Console.ReadLine();
            Console.Write("Text typed: ");
            Console.WriteLine(input);
        }
    }
}

Screenshot: image

Arawn-Davies commented 7 years ago

ah didn't see, what issues are you having?

segg21 commented 7 years ago

@Arawn-Davies non. I believe @jp2masa fixed it with the missing SQLite, in which caused an error with IL2CPU. Progress? Roughly 80%.

fanoI commented 7 years ago

This issue is fixed with the revert of Extend Ascii or not?

Arawn-Davies commented 7 years ago

Oh good to hear :D @fanol yeah the issue was fixed with the revert and the workaround above meant it was definitely with the Write method

fanoI commented 7 years ago

So this issue can be closed?

segg21 commented 7 years ago

@fanol yes it may.