New Paste :: Recent Pastes:: Add Line Numbers
Thingo by Merlin
.model small .stack .data message db "hello world (test in asm)", "$" .code main proc mov ax,seg message mov ds,ax mov ah,09 lea dx,message int 21h mov ax,4c00h int 21h main endp end main