Author |
Message |
Topic: PS/2 keyboard driver/decoder, interrupt driven, 16F and up |
3dfx
Replies: 14
Views: 135756
|
Forum: Code Library Posted: Sat May 12, 2007 5:04 am Subject: PS/2 keyboard driver/decoder, interrupt driven, 16F and up |
i have tested this code but i couldnt get any response from keyboard.is there any thing wrong? |
Topic: pic bootloader question -(pc side) |
3dfx
Replies: 1
Views: 3008
|
Forum: General CCS C Discussion Posted: Sun Apr 29, 2007 8:01 am Subject: pic bootloader question -(pc side) |
i m playing with ccs bootloader ,which is in library, on pic16f877a.
in hex file, words were puts in order strangely.
example;
:1000000000308A000D29...
this is a piece of hex codes in hex file.
... |
Topic: SEPARATE & INLINE procedures |
3dfx
Replies: 4
Views: 6246
|
Forum: General CCS C Discussion Posted: Mon Apr 02, 2007 1:10 pm Subject: SEPARATE & INLINE procedures |
is there any compiler version which allows using both #inline and #asm to gether? i need write some asm code in (#)inlined function. |
Topic: trouble with #inline directive |
3dfx
Replies: 11
Views: 16655
|
Forum: General CCS C Discussion Posted: Sun Apr 01, 2007 11:20 am Subject: trouble with #inline directive |
hi,is there any way to using #inline directive with #asm directive?
#inline
void goto_xy(int x)
{
#locate x = ram_location
#asm
call rom_adress
#endasm
}
... |
Topic: #EXPORTing |
3dfx
Replies: 2
Views: 5537
|
Forum: General CCS C Discussion Posted: Sun Mar 25, 2007 5:30 am Subject: #EXPORTing |
thank you.at least i wont try no more until new version releases. |
Topic: #EXPORTing |
3dfx
Replies: 2
Views: 5537
|
Forum: General CCS C Discussion Posted: Sat Mar 24, 2007 5:50 am Subject: #EXPORTing |
how can i export relocatable files?
i tried this source code which is in ccs help.
#EXPORT (RELOCATABLE , ONLY=TimerTask)
void TimerFunc1(void) { /* some code */ }
... |
|