Advertisement
Guest User

Untitled

a guest
Oct 13th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  org
  2.    xor ax, ax
  3.    mov ds, ax
  4.    mov si, msg
  5. boot_loop:lodsb
  6.    or al, al
  7.    jz go_flag  
  8.    mov ah, 0x0E
  9.    int 0x10
  10.    jmp boot_loop
  11.  
  12. go_flag:
  13.    jmp go_flag
  14.  
  15. msg   db 'hello world', 13, 10, 0
  16.  
  17.    times 510-($-$$) db 0
  18.    db 0x55
  19.    db 0xAA
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement