Search the web
Sign In
New User? Sign Up
gnu-m68hc11 · GNU 68HC11/HC12
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 6252 - 6281 of 9380   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6252
Hi, I am trying to use latest GCC tools (i.e. gnu-68hc1x-3.0.exe). My target is MC9S12DP256B. I have written a small program to see how to compile and use gdb....
Brow Peter
br_professional
Offline Send Email
Apr 1, 2005
9:57 am
6253
Hi Peter ... If you give the commandlines it'll help. Did you specifiy -m68hcs12 ? -- 42Bastian Schick...
42Bastian Schick
bastian42
Offline Send Email
Apr 1, 2005
1:18 pm
6254
Hi ... You should also set -m68hcs12 for gcc m6811-elf-gcc -g -Os -mshort -m68hcs12 -Wl,-m,m68hc11elfb -o test.elf test.c (I have not yet installed 3.0, but it...
42Bastian Schick
bastian42
Offline Send Email
Apr 1, 2005
2:30 pm
6255
What's the "-Wl,-m,m68hc11elfb"?? You would definately want that to be the right script also. (m68hc12elfb) --jeffs...
Jefferson Smith
imajeff84663
Online Now Send Email
Apr 1, 2005
6:31 pm
6256
Mine works with both 2.2 and 3.0: int main() { asm("LDAA #5"); asm("INCA"); asm("INCA"); return 0; } ... m6811-elf-gcc -c -I. ...
Jefferson Smith
imajeff84663
Online Now Send Email
Apr 1, 2005
8:49 pm
6257
i'm looking for the right set of commands to compile a straight assembler file (as opposed to quoted inline c assembler) i've worked out how to get cpp (yes,...
Triffid Hunter
triffid_hunter
Offline Send Email
Apr 1, 2005
9:31 pm
6258
Xperimenting with release 3.0, The optimization simply is messed up. I run two loops that look the same but one is supposed to happen after the other. It seems...
Jefferson Smith
imajeff84663
Online Now Send Email
Apr 1, 2005
11:05 pm
6259
My Makefile does this m6811-elf-gcc -m68hc12 -mshort -Wall -Wmissing-prototypes -g -Os -fomit-frame-pointer -msoft-reg-count=0 -I. ...
Jefferson Smith
imajeff84663
Online Now Send Email
Apr 1, 2005
11:29 pm
6260
... Hash: SHA1 Hi Jeff, ... I'm sorry but I don't see the problem. For me, the generated code is correct. When PORTA is read as 0, you increment the loop...
Stephane Carrez
stephane_carrez
Offline Send Email
Apr 2, 2005
7:55 pm
6261
... Hash: SHA1 Hi! ... This title is misleading. If you built your program with -m68hc12 or -m68hcs12 then the simulator really simulates the HC12/HC12 cpu...
Stephane Carrez
stephane_carrez
Offline Send Email
Apr 2, 2005
8:03 pm
6262
I've been trying to get gcc 3.3.4 and 3.3.5 build on Mac OS X 10.3.8. Unfortunately, every time I have tried I run into the following problem: fp-bit.c: In...
macgeek21
Offline Send Email
Apr 3, 2005
6:54 am
6263
... don't use the patch?...
Triffid Hunter
triffid_hunter
Offline Send Email
Apr 3, 2005
7:19 am
6264
I thought the patch was needed to properly build gcc for the m68hc12. Is this true? ... every ... applying...
macgeek21
Offline Send Email
Apr 3, 2005
6:29 pm
6265
... Understood, and the CPU core seems to be working just great. ... Right! This is the part that was tripping me up, I could see that it looked sort of like...
Michael Sharkey
sillyboy529
Offline Send Email
Apr 4, 2005
12:20 am
6266
Hi, Thanks Jefferson. I am able to compile my code for hc12 now. I am now using -mhc12 option correctly. br. ... jeffs_int_err.c ... <br_professional@y...>...
br_professional
Offline Send Email
Apr 4, 2005
3:55 am
6267
... last ... Well, you are right of course. But the compiler should be able to hide this from the programmer. Currently I have to maintain a table of the paged...
thyratect
Offline Send Email
Apr 4, 2005
9:06 am
6268
Hi zsilinszkyz, I am exactly in the same situation as u mentioned in this mail. I am unable to open the com port through gdb. Please let me know what actually...
br_professional
Offline Send Email
Apr 4, 2005
1:07 pm
6269
I am in the process of setting up bdm12 and tbdml to work in gdb with the hcs12. I have found that if I download a program to ram, and try to run it the JSRs...
Tom Burrell
tomburrell2003
Offline Send Email
Apr 4, 2005
10:52 pm
6270
... Do you mean you don't see the problem below, or you can't duplicate the problem with your system? Skipping '0' in each cycle would certainly not cut the...
Jefferson Smith
imajeff84663
Online Now Send Email
Apr 4, 2005
11:20 pm
6271
On Monday 04 April 2005 06:19 pm, Jefferson Smith wrote: I agree with Jefferson, there is a bug. This compiles when using the -mshort flag, int main() { ...
Philip L Johnson
johnsop1
Offline Send Email
Apr 5, 2005
4:28 am
6272
... -O3 enables inlining, which will usually increase code size to gain speed....
Ray Kelm
kelm_ray
Offline Send Email
Apr 5, 2005
12:46 pm
6273
Yes. I don't know the problem without an example, but it sounds like you're having it do something it can't do, like if the stack was not in ram. I am curious...
Jefferson Smith
imajeff84663
Online Now Send Email
Apr 5, 2005
1:32 pm
6274
Uh, I can't see any difference between the two... ... is replaced...
Jefferson Smith
imajeff84663
Online Now Send Email
Apr 5, 2005
1:47 pm
6275
Oops, I the second one should have been signed int x, not unsigned int x. -Philip L Johnson...
Philip L Johnson
johnsop1
Offline Send Email
Apr 5, 2005
2:03 pm
6276
Hi, ... Hmm as signed int, 60000 (ea60) is interpreted as -5536 and there your condition 1<=-5536 isn't true anymore. ... Ciao -- megatec electronic GmbH Dipl....
Hubert Moesslein
h69msl
Offline Send Email
Apr 5, 2005
2:13 pm
6277
Jeff, I am going to check this morning, the setup is probably moving ram. the fake JSRs are like this. LEAY 2,PC BRA dly_10us ;Delay for high voltage turn off...
Tom Burrell
tomburrell2003
Offline Send Email
Apr 5, 2005
2:36 pm
6278
Yea. So the bug is only in the unsigned int (values greater than the signed int max), and used in the double loops (as I've seen, only when both loopse are...
Jefferson Smith
imajeff84663
Online Now Send Email
Apr 5, 2005
3:14 pm
6279
Jeff, The RAMHAL bit in INITRM, was not being set so ram was from 0x0000 to 0x2fff instead of from 0x1000 to 0x3fff. I will have to figure out some way to set...
Tom Burrell
tomburrell2003
Offline Send Email
Apr 5, 2005
3:20 pm
6280
True, but it goes for 40000 (0x9c40, -25536 ), too....
Sasa Crnobrnja
salec@...
Send Email
Apr 5, 2005
3:20 pm
6281
Only that I beleive RAMHAL is set by default, so something must be clearing it. S12MMCV4.pdf ... with ... it the ... seeing?...
Jefferson Smith
imajeff84663
Online Now Send Email
Apr 5, 2005
3:36 pm
Messages 6252 - 6281 of 9380   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help