[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [avr-gcc-list] local labels in gcc assembler
From: |
Erik Christiansen |
Subject: |
Re: [avr-gcc-list] local labels in gcc assembler |
Date: |
Fri, 30 Jan 2004 10:39:56 +1100 |
User-agent: |
Mutt/1.3.28i |
On Thu, Jan 29, 2004 at 10:24:25PM +0100, Clemens Buchacher wrote:
> You can only use positive integers to name the label.
Interesting. The info page wants to constrain us further:
"There are ten local symbol names, which are re-used throughout the
program. You may refer to them using the names `0' `1' ... `9'."
But you're right:
999: rjmp 999b
is assembled correctly by avr-as.
0-9 has been enough for my needs, though.
Erik
- Re: [avr-gcc-list] Why no pgm_read_long() / pgm_read_long_far()?, (continued)