Untitled
unknown
plain_text
2 years ago
163 B
5
Indexable
void main(void)
{
unsigned char *msg = "TEST$";
asm {
push ds
mov ax, 0x0003
int 0x10
lds si, msg
mov dx, si
mov ah, 0x09
int 0x21
pop ds
}
}
Editor is loading...
Leave a Comment