Advertisement
Guest User

Untitled

a guest
Apr 24th, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. JMP START ; Jump to the starting point
  2.  
  3. ADDR DAT #1, #0 ; Remember the last address we dropped at
  4. MOVE MOV 0, 1 ; The imp to be copied
  5.  
  6. START ; Starting point
  7. ADD #-1, ADDR ; Take 1 off the address
  8. ADD #80, ADDR ; Move 80 forward
  9. ADD #1, ADDR ; Make that 81
  10.  
  11. MOV MOVE, ADDR ; Move the imp to the ADDR
  12. SPL ADDR ; Split a new processes at the ADDR
  13.  
  14. JMP MOVE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement