There is such a simple code in emu8086:
ORG 100h MOV AH, 02h MOV DL, 41h INT 21h INT 20h RET Displays the letter A
And how to write a set of letters, an example: ABCD so that it does not overlap each other?
For example, int 21h / function 9 , if necessary through DOS. If the BIOS is int 10h, functions 9 and 0Ah .
PS OMG, how many mammoth d ... ma preserved in my head! B-rr-r ...
Source: https://ru.stackoverflow.com/questions/533586/
All Articles
MOV AH, 02h MOV DL, 41h INT 21hrequired number of times, instead of 41h, substitute the code of the necessary characters - gecube