EmbeddedRelated.com
The 2024 Embedded Online Conference

IAR MSP430 compiler problem

Started by brOS in comp.arch.embedded14 years ago 28 replies

Dear all, Does anybody knows how to force compiler to use call instruction instead of br(branch)for disassembling function call? It is...

Dear all, Does anybody knows how to force compiler to use call instruction instead of br(branch)for disassembling function call? It is extremely important for me to specific function is disassembled using call instead of brunch, as compiler always does. Please help..... --------------------------------------- This message was sent using the comp.arch.embedded web interface on...


MPLAB C 30 Student Edition C-Compiler optimization level 1

Started by Thomas Magma in comp.arch.embedded17 years ago 4 replies

Here is a quote from Microchip: "The MPLAB C30 C Compiler Student Edition is free! It is full-featured for the first 60 days. After 60 days...

Here is a quote from Microchip: "The MPLAB C30 C Compiler Student Edition is free! It is full-featured for the first 60 days. After 60 days only optimization level 1 can be enabled in the compiler. The compiler will continue to function after 60 days, but code size may increase." Does anyone really know what 'optimation level 1' really means? Or is this a trick get you purchase the t...


Can I find free 8051 (include at89s51) compiler ?

Started by Timy in comp.arch.embedded20 years ago 6 replies

I want free 8051 compiler, assembler and c compiler. Where can I find this ? Is there any gcc 8051 compiler ?

I want free 8051 compiler, assembler and c compiler. Where can I find this ? Is there any gcc 8051 compiler ?


68000 compiler?

Started by Anonymous in comp.arch.embedded15 years ago 15 replies

I have some code for a 68000 based system that I need to compile/ modify, it was written for use with the SDS cross compiler, however I can't...

I have some code for a 68000 based system that I need to compile/ modify, it was written for use with the SDS cross compiler, however I can't find anyone that sells it anymore. What would you recommend to use as a 68000 compile (target chip is actually 68332) Is there a good free 68000 compiler? Just use an old version of gcc?


g++pentium 2.9 compiler problem

Started by samrat in comp.arch.embedded17 years ago 8 replies

Hi All, I am facing one of the typical scenario in the Tornado 2.2.1/vxWorks 5.5.1 g++pentium 2.9 compiler. This Compiler is not...

Hi All, I am facing one of the typical scenario in the Tornado 2.2.1/vxWorks 5.5.1 g++pentium 2.9 compiler. This Compiler is not initialising properly any of the member array of function pointers either 1-dimensional or 2-dimensional. For this problem i got a solution from windriver because it is one of the SPR'S it's number : 110843 so i installed the Service P...


Embedded C Compiler On Linux Targeting Motorola 68K

Started by cfullinfaw in comp.arch.embedded16 years ago 31 replies

Can someone point me to where I can get a download of a compiler that will work on Linux for embedded C targeting the 68K chip? This is for...

Can someone point me to where I can get a download of a compiler that will work on Linux for embedded C targeting the 68K chip? This is for some "legacy" code that appears to have been initially built using a "Tasking" compiler (does that sound right?) Thanks in advance. Chris Fullinfaw


wtd: CPU32 compiler

Started by hamilton in comp.arch.embedded13 years ago 10 replies

Does anyone know of a pre-configured C compiler using gcc/cygwin ?? hamilton

Does anyone know of a pre-configured C compiler using gcc/cygwin ?? hamilton


PIC C/C++ question

Started by ajcrm125 in comp.arch.embedded19 years ago 1 reply

2 questions: What's the best C/C++ compiler (in your opinion? Is there a competely free C/C++ compiler for PICs? Thanks, -Adam

2 questions: What's the best C/C++ compiler (in your opinion? Is there a competely free C/C++ compiler for PICs? Thanks, -Adam


HCS12 Family Compiler Question

Started by Scott in comp.arch.embedded20 years ago 16 replies

Hi, I am starting a project using Motorolas HCS12 family chip. Specifically MC9S12E64. I was wondering if anyone had some suggestions on...

Hi, I am starting a project using Motorolas HCS12 family chip. Specifically MC9S12E64. I was wondering if anyone had some suggestions on which compiler suite to use? Motorola suggests Code Warrior but seems pricy. Any comments on the code warrier suite? Or which compiler should I use? Thanks for your help cheers, Scott


H8 C-compiler

Started by Jens Gydesen in comp.arch.embedded20 years ago 3 replies

Hi Where do I find a free (perhaps GNU) H8 C-compiler, easy to get started with? I have tried to download something, but it seems very...

Hi Where do I find a free (perhaps GNU) H8 C-compiler, easy to get started with? I have tried to download something, but it seems very complex. Is that normal? Best regards Jens


C Compiler

Started by ken in comp.arch.embedded20 years ago 5 replies

Does anybody have a copy of Microchip's MPLAB C18 C Compiler or equivalent. Thanks for any help

Does anybody have a copy of Microchip's MPLAB C18 C Compiler or equivalent. Thanks for any help


TI MSP430 -- IAR compiler isr...

Started by Mike V. in comp.arch.embedded20 years ago 2 replies

I am very very new to the IAR compiler for TI's MSP430. I have seen tutorial code that says something like: interrupt[BASICTIMER_VECTOR] void...

I am very very new to the IAR compiler for TI's MSP430. I have seen tutorial code that says something like: interrupt[BASICTIMER_VECTOR] void my_isr() { ... } However, the compiler, with its current settings won't interpret it correctly. I have to type the more tedious statement: #pragma vector 0x00 __interrupt void my_isr() { ... } What is the setting i have to change or inc...


C18 Compiler again

Started by Meindert Sprang in comp.arch.embedded14 years ago 58 replies

Unbelievable..... I'm playing around with the Microchip C18 compiler after a hair-splitting experience with CCS. Apparently the optimizer of...

Unbelievable..... I'm playing around with the Microchip C18 compiler after a hair-splitting experience with CCS. Apparently the optimizer of C18 is not that good. For instance: LATF = addr > > 16; where addr is an uint32, is compiled into a loop where 4 registers really get shifted 16 times in a loop. Any decent compiler should recognise that a shift by 16, stored to an 8 bit port could ea


Keil compiler & 8051 simulator

Started by Roman Mashak in comp.arch.embedded20 years ago 22 replies

Hello, All! I'm studying the 8051 microcontroller and exploring now sample code I've found. I'm using: - Keil C compiler v6.21 -...

Hello, All! I'm studying the 8051 microcontroller and exploring now sample code I've found. I'm using: - Keil C compiler v6.21 - assembler compiler v6.20c - simulation DLL v2.20b There sre some items I can't understand. Anyway, the code I included to this message, is doing the following: 1) initialize Timer 2 2) calculate the number of timer increments ...


PIC18 compiler

Started by Meindert Sprang in comp.arch.embedded14 years ago 13 replies

Hi Guru's, I have been handed a PIC18 project including a CCS compiler. I have been struggling for days now to try to work around something...

Hi Guru's, I have been handed a PIC18 project including a CCS compiler. I have been struggling for days now to try to work around something that seems to be a compiler bug but CCS have not been very helpful to solve this project. To be honest, this whole CCS thing seems to be targeted at embedded-challenged people and many pre-cooked things and the almost impossibility to devide a project ...


8051 C Compiler Recommendation

Started by Arthur Richards in comp.arch.embedded19 years ago 47 replies

I'm finally moving up from assembler. Which compiler do you vote for? I can probably get away with the Raisonance Lite version but should I...

I'm finally moving up from assembler. Which compiler do you vote for? I can probably get away with the Raisonance Lite version but should I shell out the $'s & go for Keil or something else?


PICC Compiler cant compile

Started by hk_gg in comp.arch.embedded15 years ago 10 replies

hi..can anyone tell me why cant i compile this code at PICC Compiler? the compiler stated that "File cant be opend" so how can i find this...

hi..can anyone tell me why cant i compile this code at PICC Compiler? the compiler stated that "File cant be opend" so how can i find this file? or someone else can guide me do fix this problem? thanks /**************************************************************************** COMBO2.C PIC 16F84 Combination Lock - all combinations are six-digits - master combination


Microtec Compiler MCC68K and memcpy

Started by Karl-Heinz in comp.arch.embedded19 years ago 5 replies

Hello, I have a problem with the Microtec Compiler MCC68K. We have written our own memcpy() function due to safety reasons. But even with all...

Hello, I have a problem with the Microtec Compiler MCC68K. We have written our own memcpy() function due to safety reasons. But even with all optimizations turned off the MCC68K replaces a function call to memcpy() with several lines of assembler code during the compilation stage. The linker will never see an unresolved symbol like _memcpy. Has anyone an idea how we can force the compiler...


Compiler tricks to improve speed

Started by Anonymous in comp.arch.embedded18 years ago 5 replies

Hello All, I am using C51 and my code runs on Infineon controller. For company policy reason I am not revealing the exact controller and...

Hello All, I am using C51 and my code runs on Infineon controller. For company policy reason I am not revealing the exact controller and sorry about that. I would like to improve the speed. I was using the large memory model for this compiler and now I use small memory model. This has improved speed a lot. I would like to know if there are some more such settings for this compiler to imp...


Building GCC-4.1.1 C/C++ compiler for LPC3180 + VFP + Embedded Linux

Started by smaddy in comp.arch.embedded18 years ago 2 replies

Hello, I want to have a cross compiler running on my win32 cygwin, that can cross compile C/C++ code for LPC3180 with VFP to run on embedded...

Hello, I want to have a cross compiler running on my win32 cygwin, that can cross compile C/C++ code for LPC3180 with VFP to run on embedded linux. I downloaded gcc-4.1.1 source onto win32 cygwin (I dont even know if I downloaded the right compiler source for the job), and started reading the instructions on how to compile the compiler. First it says you have to configure the build, t...



The 2024 Embedded Online Conference