I'm receiving the error "Error: alignment too large: 15 assumed" for the assembly line ".align DCACHE_LINE " where DCACHE_LINE is equ to 0x20 or 32 dec. Is there any way to align with a larger number than 15?
Did you try .align 5 ? IRC the "real" alignment is 2^parameter, the binutils manual for the GNU assembler/gas should provide more information
Martin Thomas wrote: > Did you try .align 5 ? IRC the "real" alignment is 2^parameter, the > binutils manual for the GNU assembler/gas should provide more > information Ya, that is what I changed it to. Thanks.