Untitled
unknown
plain_text
2 years ago
211 B
8
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