1ab DOSSEG .MODEL SMALL .STACK .CODE start: mov ah,0h ;Clear screen mov al,3 int 10h mov ah,01H ;Hide cursor mov ch,00100110b mov cl,00000111b int 10H mov ah,0 ;Wait for key int 16h mov ah,01H ;Show cursor mov ch,00000110b mov cl,00000111b int 10H mov ax,4c00h int 21h END start . 0