Untitled

 avatar
unknown
plain_text
a year ago
163 B
4
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