RE: want an sdcc howto?
Chen Xiao Fan <[email protected]>
| Newsgroups | gmane.comp.hardware.microcontrollers.gnupic |
|---|---|
| Message-ID | <3B8AEFFADD3DD4118F8100508BACEC2C07F77380@spex> |
Indeed. Thanks. Now the two sample c programs for pic14 works.
From the SDCC document:
"
Here is a Makefile using GPUTILS:
.c.o:
sdcc -S -V -mpic14 -p16F877 $<
gpasm -c $*.asm
$(PRJ).hex: $(OBJS)
gplink -m -s $(PRJ).lkr -o $(PRJ).hex $(OBJS)"
>If you read section 4.5.4 of the SDCC manual it will help with the >first
error atleast.