Untitled
unknown
plain_text
a year ago
211 B
5
Indexable
#include <stdio.h> #include <conio.h> void main(void) { unsigned char *msg = "TEST$"; asm { push ds mov ax, SEG msg mov ds, ax mov dx, OFFSET msg mov ah, 0x09 int 0x21 pop ds } }
Editor is loading...
Leave a Comment