bios get key

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
netster403

bios get key

Post by netster403 »

how do i pause. I tried using jmp $ but i am in PM and it reboots. is there a way to pause with out rebooting?
Chase

RE:bios get key

Post by Chase »

jmp $ works in PMode. Did you turn off interrupts or setup your IDT and handlers? You might be triple faulting when an interrupt is fired.
netster403

RE:bios get key

Post by netster403 »

never mind, my loader wasent loading at the right location, oops :)

here is bios get key code in asm:

mov ah,0 ; await key pressed
int 16h
Post Reply