Reputation: 9114
The PIC is a 16F630
#FUSES NOWDT, INTRC_IO, PROTECT, NOBROWNOUT, MCLR, CPD, NOPUT
#use delay(clock=4000000)
#use fast_io(A)
later, in a function:
#asm nop nop nop nop nop #endasm
Which C compiler could have been used to compile this code?
Upvotes: 0
Views: 456
Reputation: 1
It seems like CCS compiler. see some complier tags in CCS
#FUSES NOWDT //No Watch Dog Timer
#FUSES INTRC_IO
Upvotes: 0
Reputation: 58487
Looks like the CCS PIC MCU C compiler.
As you can see at the link its pre-processor supports #FUSES
, #USE
, #ASM
and #ENDASM
.
Upvotes: 4