New installation mechanism
This commit is contained in:
parent
4b27a0d2f3
commit
3b00811300
|
@ -1,6 +1,4 @@
|
|||
LIST
|
||||
Makefile
|
||||
compmodule
|
||||
head_em.s
|
||||
libmon_s.a
|
||||
syscall.h
|
||||
|
|
2
mach/vax4/libend/.distr
Normal file
2
mach/vax4/libend/.distr
Normal file
|
@ -0,0 +1,2 @@
|
|||
LIST
|
||||
end_s.a
|
5
mach/vax4/libend/LIST
Normal file
5
mach/vax4/libend/LIST
Normal file
|
@ -0,0 +1,5 @@
|
|||
end_s.a
|
||||
edata.s
|
||||
em_end.s
|
||||
end.s
|
||||
etext.s
|
9
mach/vax4/libend/edata.s
Normal file
9
mach/vax4/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/vax4/libend/em_end.s
Normal file
22
mach/vax4/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/vax4/libend/end.s
Normal file
7
mach/vax4/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/vax4/libend/etext.s
Normal file
9
mach/vax4/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:
|
|
@ -1,5 +1,3 @@
|
|||
LIST
|
||||
Makefile
|
||||
compmodule
|
||||
head_em.s
|
||||
libmon_s.a
|
||||
|
|
Loading…
Reference in a new issue