New installation mechanism
This commit is contained in:
parent
6960652579
commit
954d74eff8
14 changed files with 65 additions and 27 deletions
|
@ -2,11 +2,8 @@ Action
|
||||||
as
|
as
|
||||||
ce
|
ce
|
||||||
cv
|
cv
|
||||||
libbc
|
libend
|
||||||
libcc
|
|
||||||
libem
|
libem
|
||||||
libfp
|
libfp
|
||||||
libm2
|
libsys
|
||||||
liboc
|
|
||||||
libpc
|
|
||||||
ncg
|
ncg
|
||||||
|
|
|
@ -7,27 +7,15 @@ end
|
||||||
name "Intel 80386 Xenix System V conversion program"
|
name "Intel 80386 Xenix System V conversion program"
|
||||||
dir cv
|
dir cv
|
||||||
end
|
end
|
||||||
name "Intel 80386 C libraries"
|
|
||||||
dir libcc
|
|
||||||
end
|
|
||||||
name "Intel 80386 EM library"
|
name "Intel 80386 EM library"
|
||||||
dir libem
|
dir libem
|
||||||
end
|
end
|
||||||
name "Intel 80386 Pascal library"
|
name "Intel 80386 etext,edata,end library"
|
||||||
dir libpc
|
dir libend
|
||||||
end
|
|
||||||
name "Intel 80386 Basic library"
|
|
||||||
dir libbc
|
|
||||||
end
|
|
||||||
name "Intel 80836 Occam library"
|
|
||||||
dir liboc
|
|
||||||
end
|
end
|
||||||
name "Intel 80836 floating point library"
|
name "Intel 80836 floating point library"
|
||||||
dir libfp
|
dir libfp
|
||||||
end
|
end
|
||||||
name "Intel 80836 Modula-2 library"
|
|
||||||
dir libm2
|
|
||||||
end
|
|
||||||
name "Intel 80836 Xenix systemcall library"
|
name "Intel 80836 Xenix systemcall library"
|
||||||
dir libsys
|
dir libsys
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,5 +1,2 @@
|
||||||
LIST
|
LIST
|
||||||
Makefile
|
|
||||||
compmodule
|
|
||||||
end.s
|
|
||||||
libem_s.a
|
libem_s.a
|
||||||
|
|
|
@ -39,7 +39,7 @@ printc:
|
||||||
push eax
|
push eax
|
||||||
push ebx
|
push ebx
|
||||||
push eax
|
push eax
|
||||||
call _write
|
call __write
|
||||||
pop ebx
|
pop ebx
|
||||||
pop ebx
|
pop ebx
|
||||||
pop ebx
|
pop ebx
|
||||||
|
|
|
@ -2,4 +2,4 @@
|
||||||
.sect .text
|
.sect .text
|
||||||
.define .stop
|
.define .stop
|
||||||
.stop:
|
.stop:
|
||||||
jmp _exit
|
jmp __exit
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
and eax,~0777
|
and eax,~0777
|
||||||
push ebx
|
push ebx
|
||||||
push eax
|
push eax
|
||||||
call _brk
|
call __brk
|
||||||
pop ecx
|
pop ecx
|
||||||
pop ebx
|
pop ebx
|
||||||
cmp eax,-1
|
cmp eax,-1
|
||||||
|
|
2
mach/i386/libend/.distr
Normal file
2
mach/i386/libend/.distr
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
LIST
|
||||||
|
end_s.a
|
5
mach/i386/libend/LIST
Normal file
5
mach/i386/libend/LIST
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
end_s.a
|
||||||
|
edata.s
|
||||||
|
em_end.s
|
||||||
|
end.s
|
||||||
|
etext.s
|
9
mach/i386/libend/edata.s
Normal file
9
mach/i386/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/i386/libend/em_end.s
Normal file
22
mach/i386/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/i386/libend/end.s
Normal file
7
mach/i386/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/i386/libend/etext.s
Normal file
9
mach/i386/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
|
LIST
|
||||||
Makefile
|
|
||||||
compmodule
|
|
||||||
head_em.s
|
head_em.s
|
||||||
libmon_s.a
|
libmon_s.a
|
||||||
|
|
4
mach/i386/mach_params
Normal file
4
mach/i386/mach_params
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
MACH=i386
|
||||||
|
SUF=o
|
||||||
|
ASAR=aal
|
||||||
|
RANLIB=:
|
Loading…
Reference in a new issue