• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

C programming help, detecting keyboard inputs

EmperorIQ

Platinum Member
What do i need in order for my program to detect a certain input from the keyboard? How do i enable interrupts in C?
 
Once you detect the keypress (via an interrupt), then look at the character code.
That will tell you which key or key combinations are being pressed.

Interrupt 21h, Function 3Fh reads the eyboard
 
Back
Top