Advertisement
Guest User

Untitled

a guest
Oct 15th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ; Problematic code.
  2. mov ax, 50
  3. mov cx, 20
  4. mul cx
  5. ; Without jmp $
  6. ; Message will be executed! as there is nothing stopping it from running.
  7. ; jmp $ means jump to self. Essentially jump back to the jump instruction. while (1) { }
  8. jmp $
  9. message: db ' Hello World'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement