Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- [bits 16]
- [org 0x7c00]
- mov bx, msg
- call print
- jmp $
- print:
- pusha
- start:
- mov ah, 0x0e
- mov al, [bx]
- cmp al, 0
- je end
- int 0x10
- inc bx
- jmp start
- end:
- ret
- popa
- msg db "Communism deprives no man of the power to appropriate the products of society...", 0
- times 510 - ($ - $$) db 0
- dw 0xaa55
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement