aboutsummaryrefslogtreecommitdiff
path: root/TimeHACK.Main/OS/BIOS/BIOS.cs
diff options
context:
space:
mode:
authorlempamo <[email protected]>2017-06-20 17:21:27 -0400
committerlempamo <[email protected]>2017-06-20 17:21:27 -0400
commitfc728100a39bff88215b0b21602afbda9ff6b00b (patch)
tree5d99edd1c5320dc47872a829306a02641577543c /TimeHACK.Main/OS/BIOS/BIOS.cs
parente83df06641d130fb979b562ab74e284f5952c9e0 (diff)
parentffc4a480f23e38d58a3b4c940e3045237835a342 (diff)
downloadhistacom2-fc728100a39bff88215b0b21602afbda9ff6b00b.tar.gz
histacom2-fc728100a39bff88215b0b21602afbda9ff6b00b.tar.bz2
histacom2-fc728100a39bff88215b0b21602afbda9ff6b00b.zip
Merge remote-tracking branch 'refs/remotes/TimeHACKDevs/master'
Diffstat (limited to 'TimeHACK.Main/OS/BIOS/BIOS.cs')
-rw-r--r--TimeHACK.Main/OS/BIOS/BIOS.cs38
1 files changed, 38 insertions, 0 deletions
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);
+
+ }
+ }
+}