Vorac
Vorac

Reputation: 9114

Which PIC compiler was used to compile this code?

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

Answers (3)

Rakesh Raveendran
Rakesh Raveendran

Reputation: 1

It seems like CCS compiler. see some complier tags in CCS

#FUSES NOWDT                    //No Watch Dog Timer
#FUSES INTRC_IO 

Upvotes: 0

Michael
Michael

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

Luka Pivk
Luka Pivk

Reputation: 466

I think mikroC PRO for PIC can compile that, Regards, Luka

Upvotes: 0

Related Questions