new installation mechanism
This commit is contained in:
parent
8818aec10e
commit
019074c732
2
mach/ns/libend/.distr
Normal file
2
mach/ns/libend/.distr
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
LIST
|
||||||
|
end_s.a
|
5
mach/ns/libend/LIST
Normal file
5
mach/ns/libend/LIST
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
end_s.a
|
||||||
|
edata.s
|
||||||
|
em_end.s
|
||||||
|
end.s
|
||||||
|
etext.s
|
9
mach/ns/libend/edata.s
Normal file
9
mach/ns/libend/edata.s
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
.sect .text
|
||||||
|
.sect .rom
|
||||||
|
.sect .data
|
||||||
|
.sect .bss
|
||||||
|
.define _edata
|
||||||
|
.sect .data
|
||||||
|
.align 4
|
||||||
|
.sect .data
|
||||||
|
_edata:
|
22
mach/ns/libend/em_end.s
Normal file
22
mach/ns/libend/em_end.s
Normal file
|
@ -0,0 +1,22 @@
|
||||||
|
.sect .text
|
||||||
|
.sect .rom
|
||||||
|
.sect .data
|
||||||
|
.sect .bss
|
||||||
|
.define endtext,enddata,endbss,__end
|
||||||
|
.sect .text
|
||||||
|
.align 4
|
||||||
|
.sect .rom
|
||||||
|
.align 4
|
||||||
|
.sect .data
|
||||||
|
.align 4
|
||||||
|
.sect .bss
|
||||||
|
.align 4
|
||||||
|
.sect .end ! only for declaration of _end, __end and endbss.
|
||||||
|
|
||||||
|
.sect .text
|
||||||
|
endtext:
|
||||||
|
.sect .data
|
||||||
|
enddata:
|
||||||
|
.sect .end
|
||||||
|
__end:
|
||||||
|
endbss:
|
7
mach/ns/libend/end.s
Normal file
7
mach/ns/libend/end.s
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
.sect .text
|
||||||
|
.sect .rom
|
||||||
|
.sect .data
|
||||||
|
.sect .bss
|
||||||
|
.define _end
|
||||||
|
.sect .end ! only for declaration of _end, __end and endbss.
|
||||||
|
_end:
|
9
mach/ns/libend/etext.s
Normal file
9
mach/ns/libend/etext.s
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
.sect .text
|
||||||
|
.sect .rom
|
||||||
|
.sect .data
|
||||||
|
.sect .bss
|
||||||
|
.define _etext
|
||||||
|
.sect .text
|
||||||
|
.align 4
|
||||||
|
.sect .text
|
||||||
|
_etext:
|
Loading…
Reference in a new issue