Untitled
Anonymous
plain_text
04/09/2024 7:06 AM
220 B
18
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