Linux下使用SDCC开发MCS 51单片机

If you are trying to build your own microcontroller system, then SDCC is suitable for you. You can adopt SDCC with no cost (license under GPL) and it supports under both Windows and Linux platform. SDCC able to compile C code for difference microcontroller, such as MCS-51, Z80, Motorola 68HC08 based MCUs and even Microchip’s MCU PIC and PIC18. You can get more information for SDCC from here . To install SDCC you can:

sudo apt-get install sdccor compile it from the source . The step to install SDCC from sources is showing here . So when you want to compile your C code, just enter:

sdcc filename.cIf you need to specified the cpu architecture, uses ‘-m’:

sdcc -mpic16 filename.cThe command line above will be used to compile code for PIC16. Here is the list of architectures that supported with ‘-m’ :

picpic16mcs51z80ds390ds400avrgbz80By default SDCC will create Intel Hex files, if you need other format just specified with ‘–out-fmt-xxx’:

sdcc -mpic16 –out-fmt-xxx filename.cwhere ‘xxx’ can be replace with the format list as below:

ihx – Intel hex file format (by default)s19 – Motorola s19 formatelf – Linux ELF format

Related Posts No related posts

,自信的生命最美丽!

Linux下使用SDCC开发MCS 51单片机

相关文章:

你感兴趣的文章:

标签云: