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