.MODEL SMALL
.586
.STACK 100h
.DATA
msg DB 'I really, really hate programming in assembly.', 13, 10, '$'
.CODE
main PROC
mov ax, @data
mov ds, ax
mov dx, OFFSET msg
mov ah, 9h
label:
int 21h
jmp label
mov ax, 4c00h
int 21h
main ENDP
END main
; () ()
; (^_^) <-- ASCII rabbit, to be sacrificed to Server
; (") (")
It's true too. Fairly stangard gripe, yes, but I think I've done it originally enough to warrant putting up. Trying to write anything in assembly is a good way to waste a day.
yrs,
tensix
PS: Yes, I know the spacing is off. Extra whitespace is apparently not preserved. Oh well.
.586
.STACK 100h
.DATA
msg DB 'I really, really hate programming in assembly.', 13, 10, '$'
.CODE
main PROC
mov ax, @data
mov ds, ax
mov dx, OFFSET msg
mov ah, 9h
label:
int 21h
jmp label
mov ax, 4c00h
int 21h
main ENDP
END main
; () ()
; (^_^) <-- ASCII rabbit, to be sacrificed to Server
; (") (")
It's true too. Fairly stangard gripe, yes, but I think I've done it originally enough to warrant putting up. Trying to write anything in assembly is a good way to waste a day.
yrs,
tensix
PS: Yes, I know the spacing is off. Extra whitespace is apparently not preserved. Oh well.
mistahprince:
(* Try Mathematica *)