In real mode assembly, I use this code:
mov ah, 0h
int 0x16
to wait for a keyboard input. I know when a key is pressed, the information about the key I press is stored in ah and al registers. For example, when I press ENTER, 0x0D will be stored in al register. And if I press backspace, that would be 0x08. But these are the only two keys I know about.
Is there a list for ALL the keyboard keys? For example, when I press 'a', what will the al/ah value be? (ASCII tables have no info about this.)