summaryrefslogtreecommitdiff
path: root/reboot2.asm
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2003-09-22 09:20:22 +0000
committerDimitri Sokolyuk <demon@dim13.org>2003-09-22 09:20:22 +0000
commitf1e0ff8f952ad82eb337a523c78568983c84c5f7 (patch)
treebce8ee9733ae60d6e9a6fda98d6bc057ece85f6f /reboot2.asm
Reboot (DOS)
Diffstat (limited to 'reboot2.asm')
-rw-r--r--reboot2.asm12
1 files changed, 12 insertions, 0 deletions
diff --git a/reboot2.asm b/reboot2.asm
new file mode 100644
index 0000000..30019b8
--- /dev/null
+++ b/reboot2.asm
@@ -0,0 +1,12 @@
+; $Id$
+; Titel: ReBoot #2
+; Autor: DreamDemon
+; Date : 05.08.1999
+
+.model small
+.code
+ org 100h
+start:
+ db 0EAh ; Jump to Power On Self Test - Cold Boot
+ dw 0,0FFFFh
+end start