I am working on a project in x86 assembly on Windows (MASM) and I need to grab tabs somehow, but I'm not sure how to do this in the assembly (I'm new to this).
I can get user input with int 21h, but as far as I can tell, it only works if the user enters data and then press enter.
I need a way for the user to press the tab key, it will run proc, and then from this proc I can deal with what should happen. Is there any way to do this?
source
share