PCM programmer
Joined: 06 Sep 2003 Posts: 21708
|
|
Posted: Mon Nov 14, 2005 3:20 pm |
|
|
Quote: | Hi can someone please post the source code for kbhit(), |
I can tell you how to do this:
Compile a small test program and look at the .LST file that is generated
after a successful compilation. It's in your project folder. It will show
the ASM code generated by the compiler for the kbhit() function.
Also, if you want the listing to show register names (instead of the
hex address of the registers), then in MPLAB, go to Project/Build Options
and in the Compiler tab, in the List File Options, select Symbolic Format. |
|