Hallo zusammen,
seitdem Ich von meinem externen Floppy Laufwerk meinen Code booten lasse und den bios int 10h (ah = 0Eh) "video - teletype output" verwende,
funktioniert int 21h (ah = 1h) "read character from standart input, with echo" für mich nicht mehr.
Folgendes (int 21h (ah = 7h) "direct character input, without echo") funktioniert hier auch nicht.
Möglicherweise hat jemand einen Lösungsvorschlag?
seitdem Ich von meinem externen Floppy Laufwerk meinen Code booten lasse und den bios int 10h (ah = 0Eh) "video - teletype output" verwende,
funktioniert int 21h (ah = 1h) "read character from standart input, with echo" für mich nicht mehr.
Code:
mov ah, 1h
int 21h
Folgendes (int 21h (ah = 7h) "direct character input, without echo") funktioniert hier auch nicht.
Code:
mov ah, 7h int 21h mov byte ptr input, al mov si, input mov ah, 0Eh lodsb int 10h
Möglicherweise hat jemand einen Lösungsvorschlag?