EmbeddedRelated.com
Forums

free C compiler for HCS12 ?

Started by Anh Quan Nguyen April 14, 2005

--- In 68HC12@68HC..., Salvador Tenorio <salvador_tenorio@y...> wrote:

> BTW, I work for Motorola and am not recommending codewarrior, wonder why...mhhh.

Did they offer redundency payment?

Cheers,

Theo



Salvador Tenorio wrote:

>
>I would also stay away from codewarrior, IMHO imagecraft compilers are way better and easier to use plus support for NoICE is there. Also, support is quick, good and given by the compiler creator himself.
Ditto. Stay away from CW. Their support is HORRIBLE. ICC12 and NoICE is
a good easy to use combination.

--
Jeff McKnight
Development Engineer

Athens Technical Specialists, Inc.
8157 U.S. Route 50
Athens, Ohio
45701-9303

740.592.2874
FAX.594.2875

www.atsi-tester.com

visit ATSI's online shop:
www.atsi-tester.com/shop/


Jeff McKnight wrote:

> Salvador Tenorio wrote:
>
>>
>> I would also stay away from codewarrior, IMHO imagecraft compilers are way
>> better and easier to use plus support for NoICE is there. Also, support is
>> quick, good and given by the compiler creator himself.
>>
>>
> Ditto. Stay away from CW. Their support is HORRIBLE. ICC12 and NoICE is
> a good easy to use combination.

Please let me know of any problems you have with support. We feel we
offer quite a bit of support, Online forum's for everyone, direct 30
day full support for special edition, monitoring of 3rd party channels
such as this group here and more. If we are not giving you the support
you feel is necessary, then we will improve. I'd greatly appreciate a
private or public message to find out where we can improve.

Ron

--
Metrowerks Community Forum is a free online resource for developers
to discuss CodeWarrior topics with other users and Metrowerks' staff
-- http://www.metrowerks.com/community --

Ron Liechty - MWRon@MWRo... - http://www.metrowerks.com



Thank you very much for your help :)

Now I can use Gcc compiler and eGNU.
It's really good freeware, but doesn't support Debug.
I can write assembly code inside C program.
How can I write a value to the register A or B ?
Something like this:
{
...
unsigned char x;
x;
asm("ldaa x");

...
}

It's not working.

Is there anyone know how to solve it?
Cheers,



There is Yahoo group for GNU on the HCS12/HC11 http://groups.yahoo.com/group/gnu-m68hc11/ That would probably be a better place to pose your question.

Dean

----- Original Message -----
From: Anh Quan Nguyen
To: 68HC12@68HC...
Sent: Saturday, April 16, 2005 4:44 AM
Subject: [68HC12] Re: free C compiler for HCS12 ?
Thank you very much for your help :)

Now I can use Gcc compiler and eGNU.
It's really good freeware, but doesn't support Debug.
I can write assembly code inside C program.
How can I write a value to the register A or B ?
Something like this:
{
...
unsigned char x;
x;
asm("ldaa x");

...
}

It's not working.

Is there anyone know how to solve it?
Cheers, ------
Yahoo! Groups Links

a.. To



You definitely need to use the Yahoo group for the gcc compiler if you
want to know how to mix assembly and C because this is a question that
has a different answer for each type of compiler. Many of the people
in this group use other compilers.

I want to support interactive debugging in my IDE someday. I'm already
moving in that direction. But I'll need to work with someone who
understands the GNU tools more than me. In particular, I'd like to
learn mode about GDB so I can determine if it makes sense to use that
from my IDE. Or, maybe I need to write my own debugger from scratch.

Maybe I can get more help once I make the migration to C#. I think
there are a lot of linux experts who might be interested in a linux
IDE that can work with Mono. For now my IDE only runs under Windows,
so a lot of the real experts on the GNU tools haven't shown much
interest in it.

Eric
http://www.ericengler.com/EmbeddedGNU.aspx --- In 68HC12@68HC..., "Dean Manion" <dean@m...> wrote:
> There is Yahoo group for GNU on the HCS12/HC11
http://groups.yahoo.com/group/gnu-m68hc11/ That would probably be a
better place to pose your question.
>
> Dean
>
> ----- Original Message -----
> From: Anh Quan Nguyen
> To: 68HC12@68HC...
> Sent: Saturday, April 16, 2005 4:44 AM
> Subject: [68HC12] Re: free C compiler for HCS12 ? >
> Thank you very much for your help :)
>
> Now I can use Gcc compiler and eGNU.
> It's really good freeware, but doesn't support Debug.
> I can write assembly code inside C program.
> How can I write a value to the register A or B ?
> Something like this:
> {
> ...
> unsigned char x;
> x;
> asm("ldaa x");
>
> ...
> }
>
> It's not working.
>
> Is there anyone know how to solve it?
> Cheers,