I need to write a program for writing ASCII symbols to the video memory.
.model tiny
.stack
.data
.code
main:
mov ax, 0b800h
mov ds, ax
mov aL, 'x'
mov es, bx
mov es:[1], aL
mov ah, 4ch
int 21h
end main
This code is inert as of yet; it compiles, runs and then exits without printing anything. I think i'm missing a line.