; You may customize this and other start-up templates; ; The location of this template is c:\emu8086\inc\0_com_template.txt org 100h mov ax,03h int 10h ; moving cursor at 3rd row and 16 columns mov ah,02h mov bh,00h ; video page 0 mov dh,02 mov dl,0fh int 10h ; write Character and Attribute ;at cursor position mov ah,09h mov al,'X' ; character to write mov bh,0; mov bl,01001001b ;character attribute mov cx,1 ;repeat for 1 times int 10h ret