Alignment now also works when the alignment ended on odd boundaries.
This commit is contained in:
parent
ce92663b0a
commit
c636aba734
|
@ -1,8 +1,15 @@
|
|||
.define endtext,enddata,endbss
|
||||
.define _end, _etext, _edata
|
||||
|
||||
.text
|
||||
endtext:
|
||||
_etext:
|
||||
.align 4
|
||||
.data
|
||||
enddata:
|
||||
_edata:
|
||||
.align 4
|
||||
.bss
|
||||
.align 4
|
||||
endbss:
|
||||
_end:
|
||||
|
|
Loading…
Reference in a new issue