From 858d1e7062331c33ed8fe613574aa021351428c7 Mon Sep 17 00:00:00 2001 From: AShifter Date: Mon, 19 Jun 2017 00:14:34 -0700 Subject: Start BIOS aww yeah baby --- TimeHACK.Main/OS/BIOS/BIOS.cs | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 TimeHACK.Main/OS/BIOS/BIOS.cs (limited to 'TimeHACK.Main/OS/BIOS/BIOS.cs') diff --git a/TimeHACK.Main/OS/BIOS/BIOS.cs b/TimeHACK.Main/OS/BIOS/BIOS.cs new file mode 100644 index 0000000..5c607e1 --- /dev/null +++ b/TimeHACK.Main/OS/BIOS/BIOS.cs @@ -0,0 +1,38 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; +using TimeHACK.Engine; +using TimeHACK.OS.Win95.Win95Apps; +using TimeHACK.Engine.Template; +using System.Threading; + +namespace TimeHACK.OS.BIOS +{ + public partial class BIOS : Form + { + public BIOS() + { + InitializeComponent(); + } + + private void BIOSConsole_Load(object sender, EventArgs e) + { + BIOSConsole.WriteLine("TiemHARK BIOS v.1.337, An Shift Soft Ally."); + Console.Beep(575, 100); + Thread.Sleep(1000); + BIOSConsole.WriteLine("Copyright (C) 1984-1998, AShift Software, Inc."); + Console.Beep(575, 100); + Thread.Sleep(1500); + BIOSConsole.WriteLine("\nAntel More a8-1700x at 1.337 ghz"); + Console.Beep(575, 100); + Thread.Sleep(500); + + } + } +} -- cgit v1.2.3