Search the web
Sign In
New User? Sign Up
gnuarm
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

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 2639 - 2668 of 4906   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2639
... ARM only. ... THUMB only. ... both interworked. ... big endian THUMB. ... big endian both. (guessed from the names.) regards, clemens...
ino-news@...
numanao
Offline Send Email
Oct 1, 2006
1:36 pm
2640
... Anything with thumb in is means that the library code is thumb code. Anything with interworking in it means that the code can be called from both thumb and...
embeddedjanitor
Offline Send Email
Oct 2, 2006
1:35 am
2641
As long as we are on the topic of interworking, do we need interworking on our ARM code in order to call Thumb code and our Thumb code to call ARM? Glen...
Glen Biagioni
glen_biagioni
Offline Send Email
Oct 2, 2006
3:13 pm
2642
... what does the option `-e 0x0' mean? cannot find in the manual. ... http://www.codesourcery.com/gnu_toolchains/arm/faq.html#c_ABI says: Is it possible to...
ino-news@...
numanao
Offline Send Email
Oct 2, 2006
4:27 pm
2643
... Correct, compiled in both ways. TomW -- Tom Walsh - WN3L - Embedded Systems Consultant http://openhardware.net http://cyberiansoftware.com...
Tom Walsh
twalsh0001
Offline Send Email
Oct 2, 2006
5:55 pm
2644
... the entry point is at 0x0 ... I tried this before posting; I'll try again. ... This screw i knew before already; I kept using '-mabi=apcs-gnu' but I have...
Robert
rdirigl
Offline Send Email
Oct 6, 2006
11:41 am
2645
I use WinARM from Yagarto (gcc 4.1.1) I tried with this sample file: int main(void) { int a; a = 3; return 0; } compile with: arm-elf-gcc -c -mcpu=arm7tdmi...
mastupristi
Offline Send Email
Oct 9, 2006
11:11 am
2646
Dear all I'm really newbie using cross tools for ARM processor, so please, sorry if I'm doing some stupid question. I'm building an application to be run on...
eduatempo
Offline Send Email
Oct 16, 2006
11:49 pm
2647
According to a recent document on the ARM website (see quote and reference below) the GNU ARM toolchain does not support the standard ARM EABI. This would...
qwavel
Offline Send Email
Oct 18, 2006
5:46 pm
2648
Sorry, but you haven't answered you own question ? The Codesourcery GNU toolchain *is* a version of the GNU ARM toolchain configured to comply with EABI. It's...
Bruce Paterson
abruceperson
Offline Send Email
Oct 19, 2006
1:53 am
2649
I am trying to write some assembly, but when I try to load any of the registers with a constant number bigger than 131072 I get an error. arm-elf-as -ahls...
Baldur Gislason
baldurgee
Offline Send Email
Oct 24, 2006
9:15 pm
2650
... From the ARM Architecture Reference Manual (ARM ARM): Data-processing operands - Immediate ... Legitimate immediates Not all 32-bit immediates are...
Dominic Rath
vmaster_05
Offline Send Email
Oct 24, 2006
9:48 pm
2651
... chip. ... formed by ... 131073 ... to load ... the literal ... the ... Thank you. Now I'm doing something else wrong... What I'm trying to do here is load...
Baldur Gislason
baldurgee
Offline Send Email
Oct 24, 2006
11:17 pm
2652
... of the ... version 4 ... stripped ... Ignore this, I should go to bed when I can't notice that I still have a mov in the second line... Baldur...
Baldur Gislason
baldurgee
Offline Send Email
Oct 24, 2006
11:29 pm
2653
Hi group, I want to measure code-coverage of hello-world.c To compile I use the options '-g -ftest-coverage -fprofile-arcs' 1. using 'gcc' and 'gdb' I get both...
rdirigl
Offline Send Email
Oct 25, 2006
1:05 pm
2654
I have noticed how Rowley, IAR and other such compilers have handy ways of doing bitwise operations. Such as: BCFG2_bit.WST1=8; While to do the same thing with...
Baldur Gislason
baldurgee
Offline Send Email
Oct 29, 2006
12:56 pm
2655
I use so many different processors and compilers I have found that it is best to create your own bit set/clear macros. #define BIT_SET(x,n) (x=x | (0x01<<n)) ...
Trampas
trampas_stern
Online Now Send Email
Oct 29, 2006
2:22 pm
2656
Leon Heller, G1HSM Suzuki SV1000S motorcycle leon.heller@... http://www.geocities.com/leon_heller ... From: "Baldur Gislason" <baldur@...> To:...
Leon Heller
leon_heller
Offline Send Email
Oct 29, 2006
3:21 pm
2657
... Stay away from the first form. There lie dragons. Bitfields are seductive but dangerous when used for I/O. You can macroize the set form if you like....
Robert Adsett
robertadsett
Offline Send Email
Oct 29, 2006
3:37 pm
2658
... I've found it handy to create a macro like: #define bit(n) (1<<n) And then for bit fields: #define BITFIELD1 bit(0) #define BITFIELD2 bit(1) and then: ...
Mike Sharkey
rm_sharkey
Offline Send Email
Oct 29, 2006
10:09 pm
2659
An improvement ... A better version would be #define bit(n) (1<<(n)) Otherwise you get into trouble with things like bit(a-1)....
Charles Manning
embeddedjanitor
Offline Send Email
Oct 29, 2006
11:12 pm
2660
... ?? I just do: ================ begin ============== typedef struct __attribute__((packed)) { bool testA:1; int tinybyteA:4; bool testB:1; int...
Tom Walsh
twalsh0001
Offline Send Email
Oct 30, 2006
4:27 pm
2661
... Most of the comments have been about dealing with single bits, while the original question was about a multi-bit field. I assume gcc supports multi-bit...
WilliamChops Westfield
westfw
Offline Send Email
Oct 31, 2006
12:43 am
2662
BCFG2_bit.WST1 is a 5 bit field. Baldur...
Baldur Gislason
baldurgee
Offline Send Email
Oct 31, 2006
12:59 am
2663
... Note that bitfields are signed, for a one bit bitfield 1 is technically out of range, it does wrap around as expected though. That's one of the dragons I...
Robert Adsett
robertadsett
Offline Send Email
Oct 31, 2006
1:16 am
2664
... Bitfields are signed by default, just like "int", but a quick look doesn't show any requirement that they be signed, nor any restriction on explicitly...
WilliamChops Westfield
westfw
Offline Send Email
Oct 31, 2006
2:43 am
2665
... It does mean though that by default with a 1 bit bitfield (say x.y) the following always evaluates to false x.y == 1 not what many people expect. ... ...
Robert Adsett
robertadsett
Offline Send Email
Oct 31, 2006
5:19 am
2666
... I can't resist, I have to add my one: Bitfields are defined in terms of integers, but check out the gcc assembler a bitfield generates on an x86, it uses...
David Hawkins
dave_w_hawkins
Offline Send Email
Oct 31, 2006
5:30 am
2667
... They don't have to be, but are by default. unsigned xx:1; // Can be zero or 1 signed xx:1; // Can be 0 or -1...
Charles Manning
embeddedjanitor
Offline Send Email
Nov 1, 2006
8:50 pm
2668
HI ALL, I am new bie to arm controller. I have LPC2138 board of ARM7 controller. i have unzip winarm pakage. i have open pn editor. I have even write simple...
vasadia_arm
Offline Send Email
Nov 2, 2006
1:21 pm
Messages 2639 - 2668 of 4906   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