alright, thanks for the help guys :P. Is there any1 that is willing to spend a bit of their time helping me out? You don't have to become like a teacher that teaches or anything, but maybe like teach me how to find basic stuff, and how I would edit that or something (in a runnable). Or how I would go about finding stuff. Thanks if you do, if not then it's fine xP.
P.S. Can someone tell me if this makes any sense (I read it off a tutorial)
Code:
.MODEL SMALL
.STACK 200H
.CODE
START:
Mov ah, 2
Mov dl, 1
Int 21h
mov ah, 4ch
mov al, 00h
int 21h
ENDSTART
I'm mainly wondering about the model, stack and code stuff. I know what the other stuff is I think.