mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-27 05:52:11 +00:00
15 lines
404 B
C#
15 lines
404 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Security.Cryptography.X509Certificates;
|
|
using System.Text;
|
|
|
|
namespace Cosmos.System {
|
|
public abstract class Boot {
|
|
// IL2CPU finds this method by name and this is where Cosmos takes the hand off from the bootloader.
|
|
public void EntryPoint() {
|
|
Run();
|
|
}
|
|
|
|
protected abstract void Run();
|
|
}
|
|
}
|