Added .align 2. Prevents end of bss to be odd.

Especially important for malloc, it distinguishes between
odd and even word pointers.
This commit is contained in:
em
1985-02-17 01:12:36 +00:00
1706 changed files with 178558 additions and 0 deletions

14
mach/m68k2/libem/end.s Normal file
View File

@@ -0,0 +1,14 @@
.define endtext,enddata,endbss,_etext,_edata,_end
.text
.align 2
endtext:
_etext:
.data
.align 2
enddata:
_edata:
.bss
.align 2
endbss:
_end: