the bios interrupt function 21h (ah = 1h) should read a character from the standart input and echo it.
My read function:
mov ah, 1h
int 21h
So, if i press a key it realises that, but it won't echo a character. Since im using my code to boot it from my floppy and the character echo function int 10h (ah = 0eh), i think i have to store it and then echo it with the "video - teletype output" (int 10h (ah = 0eh)).
Or did i miss something in the aboce code?
int 21h
in your code)? The answer depends on the environment for which you are writing your code. – nrz