Page 1 of 1

Keyboard Handler

Posted: Wed Nov 23, 2011 9:08 pm
by jackson
Hello,
I'm building an operating system from scratch on Linux. So far I've made a bootloader, gone into 32 bit mode, made c libraries (but I'm still making an nasm based kernel), setup software and hardware interrupts, made a standard library, made a simple keyboard driver, and more. My question is how do take the characters I've read and put the characters into one variable. I've already made a scancode to ASCII converter so, how would I put these ASCII characters into one variable in nasm.

Re: Keyboard Handler

Posted: Sun Nov 27, 2011 4:10 pm
by jackson
Never mind I got the keyboard handler to work in C.