Untitled
Anonymous
plain_text
04/09/2024 6:50 AM
256 B
18
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