--- Additional Comments From skunk at iskunk dot org 2006-04-07 22:36
---
The patchsets do make the problem go away. Another workaround, sans patches, is
to set LANG=C (default value is "en_US" on my system).
Information on obtaining the patchsets, for anyone reading this [archived]
Hi Paz,
My name is paz and I have a doubt, how can I convert my ".srec" file
to ".od" to use it with AVRORA??
Sorry, but I do not think the objcopy supports the Avrora .od file
format, so you cannot do this using the binutils.
Cheers
Nick
__
Hi Susukita,
$ time ./a.out
real0m4.324s
$ gprof a.out
Each sample counts as 0.01 seconds.
% cumulative self self total
time seconds secondscalls s/call s/call name
9.46 43.22 4.09 rand
This looks
--- Additional Comments From nickc at redhat dot com 2006-04-07 14:48
---
Subject: Re: New: incorrect syntax in avr disassembly
Hi hochstein,
> The disassembly for call and jmp looks like this:
>
> 43a: 0e 94 7e 0e call0x1cfc <__divmodhi4>
>
> This causes problems s
Hi hochstein,
The disassembly for call and jmp looks like this:
43a: 0e 94 7e 0e call0x1cfc <__divmodhi4>
This causes problems since the "" part is not correct assembler
syntax. It should read like this:
43a: 0e 94 7e 0e call0x1cfc ; <__divmodhi4>
Do