Difference between revisions of "OrbiterWiki:Sandbox"

From OrbiterWiki
Jump to navigation Jump to search
m (Reverted edits by Dennis Krenz (Talk); changed back to last version by To be)
(test)
Line 1: Line 1:
 
{{Please leave this line and edit below}}
 
{{Please leave this line and edit below}}
 
----
 
----
org 100h
+
  org 100h
mov dx, msg
+
  mov dx, msg
mov AH, 09h
+
  mov AH, 09h
int 21h
+
  int 21h
exit:
+
  exit:
mov AH, 4ch
+
  mov AH, 4ch
mov AL, 0
+
  mov AL, 0
int 21h
+
  int 21h
 
+
 
msg db "Orbinaut Forever!$"
+
  msg db "Orbinaut Forever!$"

Revision as of 21:15, 28 July 2008

Sandbox
Welcome to the Sandbox. Please use this place to test your editing skills. Edit freely and don't worry about breaking anything. Be aware, though, that anything you put here may (in fact, will) be deleted.

 org 100h
 mov dx, msg
 mov AH, 09h
 int 21h
 exit:
 mov AH, 4ch
 mov AL, 0
 int 21h
 
 msg db "Orbinaut Forever!$"