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...
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"...
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, ...
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...
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...
... 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...
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...
... Welcome to a brand new adventure, the rewards DO outweigh the pain of getting there. The complier generates fairly intelligent assembly/machine code, and...
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? :)...
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...
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...
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...
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...
Hello, Does anyone uses libraries (libc, libbcc ) together with banking for string and floating point operations? What to do with bankoverflows? Are there...
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...
... 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...
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...
... and you defined 'bank1' and 'bank2' as memory regions in the MEMORY part. If the files you put in .text_bankX are larger than the memory bank, the linker...
... 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...
... 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...
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...
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...
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...
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...