void main(){
asm
{
myhello:
db "HELLO, WORLD$";
mov EAX , myhello;
mov AH, 0x09;
int 0x21;
}
}I figure this should do it. but i'm running into problems. Anybody know why?
void main(){
asm
{
myhello:
db "HELLO, WORLD$";
mov EAX , myhello;
mov AH, 0x09;
int 0x21;
}
}I figure this should do it. but i'm running into problems. Anybody know why?