Hello , I was trying to debug an assembly program using gdb, and had a few problems.The problem is --the program counter and the other register values arent...
4039
Jefferson Smith
imajeff84663
Mar 1, 2004 6:27 pm
I don't know much about getting everything to work, but you don't need "-gstabs" specifically for gdb. I use "-g" which adds just about everything, or "-ggdb"...
4040
Remko Galama
remkomg77
Mar 2, 2004 8:10 am
Hi Scott, thanks for your input. In the mean while I'll contact P&E for some more info. Regards, Remko...
4041
Scott
x9sp
Mar 2, 2004 2:49 pm
I get the same thing as you. I have a request in to P&E micro as well. Ill let you know when I hear back from them. Let me know what you find out. Cheers, ...
4042
pablo_42000
Mar 2, 2004 4:36 pm
Hi, I'm brand new to the gnu world and have a couple questions I was hoping I can get answered. I have been using the HC11,12 for years in Assembly but am...
4043
Louis Bertrand
kafkalaughed...
Mar 2, 2004 7:09 pm
A good place to start is Eric Engler's site, where you will find EmbeddedGNU, a nice GUI front end for gcc that takes care of some of the messy details. Read...
4044
Jeff Smith
imajeff84663
Mar 2, 2004 9:28 pm
... I know the feeling. I actually started with GEL (the example libraries http://m68hc12.serveftp.org/examples/index.php I also learned that newlib components...
4045
peter_lingier
Mar 3, 2004 10:13 am
Hello, Could anyone help me on the following? In my program I don't wan't to use the XIRQ nor the IRQ interrupt. So, in my premain I clear only the I-bit in...
4046
John E Clymer
johnc56031
Mar 3, 2004 2:33 pm
... Welcome to a brand new adventure, the rewards DO outweigh the pain of getting there. The complier generates fairly intelligent assembly/machine code, and...
4047
Jeff Smith
imajeff84663
Mar 3, 2004 3:04 pm
I would need to see an example that does it. People often ask whats wrong, but start by saying everything is done correctly. How could I argue with that? :)...
4048
Remko Galama
remkomg77
Mar 3, 2004 10:18 pm
Hi Scott and all GNU users looking for a nice BDM solution, In order to get the ICD12Z from P&E working with the ELF/Dwarf2 output from GNU take the following...
4049
Remko Galama
remkomg77
Mar 3, 2004 10:26 pm
Hi Dustin, you don't need to add anything in the command line to use the memory.x created by the Embedded GNU IDE. Then again if you have doubt's it is using...
4050
peter_lingier
Mar 4, 2004 7:53 am
Hi Jeff, A collegue and I found the reason. We're using banking and therefore put in the makefile with the compileroptions the option -m- long-calls. But...
4051
remkomg77
Mar 4, 2004 12:24 pm
Hi all, I'm currently trying to work out a way to instruct the linker to use a default_rom section which aplies for all memory banks which are available...
4052
peter_lingier
Mar 4, 2004 4:18 pm
Hello, Does anyone uses libraries (libc, libbcc ) together with banking for string and floating point operations? What to do with bankoverflows? Are there...
4053
Jeff Smith
imajeff84663
Mar 4, 2004 4:30 pm
Not much you can do without adding the functionality to the GCC port. Theres no way yet to have it break up a section and automatically fit functions into...
4054
Stephane Carrez
stephane_carrez
Mar 4, 2004 9:04 pm
... Hash: SHA1 Hi! ... Use the libc provided in GEL. It's reasonably small and you should be able to compile it with your own compilation flags. (sprintf is...
4055
42Bastian Schick
bastian42
Mar 5, 2004 8:53 am
Jeff Smith <imajeff@...> wrote Thu, 4 Mar 2004 09:30:45 -0700 ... I thing that has nothing to do with the GCC (takeing it as the C/C++ compiler)....
4056
Remko Galama
remkomg77
Mar 5, 2004 9:44 am
You understand correctly Bastian. I got the idea from the HiWare linker. I'm currently using the -mlong-calls option so it doesn't really matter anymore in...
4057
Jefferson Smith
imajeff84663
Mar 5, 2004 4:47 pm
... and you defined 'bank139; and 'bank239; as memory regions in the MEMORY part. If the files you put in .text_bankX are larger than the memory bank, the linker...
4058
Jeff Smith
imajeff84663
Mar 5, 2004 4:58 pm
... Just remember, Rome wasn't built in a day :)...
4059
Stephane Carrez
stephane_carrez
Mar 5, 2004 11:01 pm
... Hash: SHA1 Hi! ... Hum... this looks like a bug. When an interrupt handler is compiled the compiler should ignore the -mlong-calls option. At least, it...
4060
Remko Galama
remkomg77
Mar 6, 2004 10:16 am
... part. ... the ... code ... *big disapointment* now it's official, the linker can't do it... ... Didn't say you where incorrect or anything, no offence...
4061
NZG
ngustavson@...
Mar 7, 2004 3:09 am
4062
Theoharis Tsenis
ttsenis
Mar 7, 2004 1:52 pm
Hi, i program a long time in assembly for the 68hc11 and i thought to give a try with c++ coding. My board has a ram region from $1000-$17FF and the registry...
4063
Remko Galama
remkomg77
Mar 7, 2004 6:13 pm
Hi Nathan, I've allready got all of P&E's equipment working, thanks anyway! The weirdness of it all is that the other programmer I used accepted 0x308000 etc...
4064
42Bastian Schick
bastian42
Mar 8, 2004 9:07 am
... Probably not _the_ solution, but how about defining a section in a assembly file, makeing it noninit and place it in the gap. -- 42Bastian...
4065
peter_lingier
Mar 8, 2004 10:11 am
Stéphane, I made the libc.a file out of the sources in the GEL. When I want to use them in my project I got an error by the linker in the GNU that is...
4066
peter_lingier
Mar 8, 2004 4:17 pm
Hello, Below in the mail is mentioned: ar -x libc.a MODULE.o How does this has to be implemented in a makefile. I'm trying something like this, but I don't...
4067
Stephane Carrez
stephane_carrez
Mar 8, 2004 7:50 pm
... Hash: SHA1 Hi! ... Write it this way: $(myLIB_DIR_ANSI)/libc.a: $(OBJ_LIBC) $(AR) $(AR_FLAGS) $(myLIB_DIR_ANSI)/libc.a $(OBJ_LIBC) I'm confused with you...