Difference between revisions of "OrbiterWiki:Sandbox"

From OrbiterWiki
Jump to navigation Jump to search
Line 7: Line 7:
 
    
 
    
 
   exit:
 
   exit:
   mov AH, 4ch
+
   mov AX, 4C00h
  mov AL, 0
 
 
   int 21h
 
   int 21h
 
    
 
    
 
   msg db "Orbinaut Forever!$"
 
   msg db "Orbinaut Forever!$"

Revision as of 07:03, 3 October 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 AX, 4C00h
 int 21h
 
 msg db "Orbinaut Forever!$"