| Xmega Application Note | |||||
Assembler abstraction layer: GNU Assembler specifics. More...
Go to the source code of this file.
Defines | |
| #define | BSS_SECTION(name) .section name, "aw", @nobits |
| #define | DATA_SECTION(name) .section name, "aw", @progbits |
| #define | END_FILE() |
| #define | END_FUNC(name) .size name, . - name |
| #define | END_REPEAT() .endr |
| #define | EXTERN_SYMBOL(name) |
| #define | FILL_BYTES(count) .fill count |
| #define | FUNCTION(name) gas_begin_func name 0 |
| #define | L(name) .L##name |
| #define | PUBLIC_FUNCTION(name) gas_begin_func name 1 |
| #define | PUBLIC_FUNCTION_SEGMENT(name, segment) gas_begin_func_segm name 1 segment |
| #define | REPEAT(count) .rept count |
| #define | RODATA_SECTION(name) .section name, "a", @progbits |
| #define | SET_LOC(offset) .org offset |
| #define | TEXT_SECTION(name) .section name, "ax", @progbits |
| #define | WEAK_FUNCTION(name) gas_weak_function name |
| #define | WEAK_FUNCTION_ALIAS(name, strong_name) gas_weak_function_alias name strong_name |
Variables | |
| macro sym lda w sym endm macro gas_begin_func is_public if is_public global name endif section text | ax |
| macro sym lda w sym endm macro gas_begin_func is_public if is_public global name endif section text progbits type function | is_public |
| macro | ld_addr |
| macro sym lda w sym endm macro gas_begin_func | name |
| macro | reg |
| macro sym lda w sym endm macro gas_begin_func is_public if is_public global name endif section text progbits type function segment if is_public global name endif section | segment |
Assembler abstraction layer: GNU Assembler specifics.
Copyright (C) 2009 Atmel Corporation. All rights reserved.
Definition in file gas.h.
Definition at line 44 of file gas.h.
Referenced by sysclk_init().
Generated on Fri Oct 22 12:15:25 2010 for AVR1300 Using the Xmega ADC by 1.6.3
|