-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configured distr system for the 6.0pre3 release.
- Loading branch information
dtrg
committed
Apr 29, 2007
1 parent
663f4f2
commit 54ce3f4
Showing
12 changed files
with
94 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,9 +46,11 @@ lang/m2 | |
#lang/basic | ||
|
||
mach/proto | ||
mach/i80 | ||
mach/i86 | ||
mach/i386 | ||
|
||
plat/cpm | ||
plat/pc86 | ||
plat/linux386 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,11 @@ | |
# $State$ | ||
# $Revision$ | ||
|
||
THE AMSTERDAM COMPILER KIT V6.0pre2 | ||
THE AMSTERDAM COMPILER KIT V6.0pre3 | ||
=================================== | ||
|
||
© 1987-2005 Vrije Universiteit, Amsterdam | ||
2007-04-24 | ||
2007-04-29 | ||
|
||
|
||
INTRODUCTION | ||
|
@@ -34,6 +34,7 @@ Platforms: | |
|
||
pc86 produces bootable floppy disk images for 8086 PCs | ||
linux386 produces ELF executables for PC Linux systems | ||
cpm produces i80 CP/M .COM files | ||
|
||
|
||
INSTALLATION | ||
|
@@ -125,8 +126,8 @@ GOTCHAS | |
|
||
There are some things you should be aware of. | ||
|
||
- Look at plat/linux386/README and plat/pc86/README for information about the | ||
two supported platforms. | ||
- Look at plat/<PLATFORMNAME>/README for information about the two supported | ||
platforms. | ||
|
||
- The library support is fairly limited; for C, it's at roughly the ANSI C | ||
level, and for the other languages it's similar. | ||
|
@@ -166,4 +167,4 @@ Please enjoy. | |
|
||
David Given (dtrg on Sourceforge) | ||
[email protected] | ||
2007-04-24 | ||
2007-04-29 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,4 +20,3 @@ stdbool.h | |
fcntl.h | ||
tgmath.h | ||
locale.h | ||
stdint.h |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
Action | ||
pmfile | ||
as | ||
top | ||
ncg | ||
dl | ||
libem | ||
libend | ||
libmon | ||
mach_params |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,38 @@ | ||
LIST | ||
libem_s.a | ||
pmfile | ||
aar2.s | ||
adi4.s | ||
and.s | ||
blm.s | ||
cii.s | ||
cmi4.s | ||
cms.s | ||
com.s | ||
csa.s | ||
csb.s | ||
dup.s | ||
dvi2.s | ||
dvi4.s | ||
exg.s | ||
flp.s | ||
inn.s | ||
ior.s | ||
lar2.s | ||
loi.s | ||
mli2.s | ||
mli4.s | ||
mlu2.s | ||
ngi4.s | ||
nop.s | ||
rck.s | ||
rol4.s | ||
ror4.s | ||
sar2.s | ||
sbi4.s | ||
set2.s | ||
set.s | ||
sli2.s | ||
sli4.s | ||
sri2.s | ||
sri4.s | ||
sti.s | ||
xor.s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
LIST | ||
end_s.a | ||
pmfile | ||
edata.s | ||
em_end.s | ||
end.s | ||
etext.s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
table |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
|
||
/* 68020 desciptor table for ACK target optimizer */ | ||
|
||
MAXOP 2; | ||
|
||
%%; | ||
|
||
X, Y, Z { TRUE }; | ||
%%; | ||
|
||
mvi X, Y : mov X, Z -> mov X, Z ; | ||
|
||
xchg : inx h : xchg -> inx d ; | ||
xchg : inx d : xchg -> inx h ; | ||
|
||
%%; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters