diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2003-01-19 13:28:24 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2003-01-19 13:28:24 +0000 |
commit | 89ae52566263f39ba8737263d0adc0900aff9f43 (patch) | |
tree | 8d57b1e57485087de9e50db7b10df922adbd1a39 /emulators/klh10/files | |
parent | 32c616cd74f090e3cf2e0b46c22eb656330d8f65 (diff) | |
download | ports-89ae52566263f39ba8737263d0adc0900aff9f43.tar.gz ports-89ae52566263f39ba8737263d0adc0900aff9f43.zip |
Notes
Diffstat (limited to 'emulators/klh10/files')
-rw-r--r-- | emulators/klh10/files/PDPs | 32 | ||||
-rw-r--r-- | emulators/klh10/files/patch-aa | 12 | ||||
-rw-r--r-- | emulators/klh10/files/patch-ab | 25 |
3 files changed, 69 insertions, 0 deletions
diff --git a/emulators/klh10/files/PDPs b/emulators/klh10/files/PDPs new file mode 100644 index 000000000000..6e8884a3e083 --- /dev/null +++ b/emulators/klh10/files/PDPs @@ -0,0 +1,32 @@ +Year 18-bitters 12-bitters 16-bitters 36-bitters + +1960 PDP-1 -------------------------------------------------------- +1961 | \ +1962 PDP-4 <--- LINC -------- \ +1963 | PDP-5 \ \ | +1964 PDP-7 | \ \ PDP-6 +1965 | PDP-8 --\ | \ | +1966 | PDP-8/S LINC-8 | | +1967 | | | | KA10 +1968 PDP-9 PDP-8/I,L | | | +1969 | | PDP-12 | | +1970 PDP-15 | PDP-14 PDP-11(/20) | +1971 | PDP-8/E / | \ | +1972 PDP-15/76 PDP-8/M - PDP-11/05 | PDP-11/45 -- KI10 +1973 | / | PDP-11/40 | \ | +1974 | / | | | \ | +1975 PDP-8/A PDP-11/03 PDP-11/04 | | PDP-11/70 KL10 +1976 | PDP-11/34 | PDP-11/55 | | +1977 VT78 | PDP-11/60 | | +1978 PDP-11/34C VAX-11/780 KS10 + +The first DEC 36-bit system, the PDP-6, came out in 1964. The PDP-10 +line consisted of the KA which arrived in 1967, the KI in 1972. The +KL came out early in 1974; the KS was a 1978 entry. In 1984 the +unreleased KC was canceled. + +Source: C.G. Bell, et al's "Computer Engineering" 1978 (mostly) + +More at + +http://groups.google.com/groups?selm=346s0s%24icv%40tardis.Tymnet.COM diff --git a/emulators/klh10/files/patch-aa b/emulators/klh10/files/patch-aa new file mode 100644 index 000000000000..d3079d97bc85 --- /dev/null +++ b/emulators/klh10/files/patch-aa @@ -0,0 +1,12 @@ +--- src/Mk-fbx86.mk.DIST Sat Jan 12 15:40:10 2002 ++++ src/Mk-fbx86.mk Sat Jan 12 15:40:55 2002 +@@ -21,7 +21,7 @@ + + # Build definitions + SRC = ../../src +-CFLAGS = -c -g3 -O -I. -I$(SRC) ++CFLAGS += -c -g3 -O -I. -I$(SRC) + CFLAGS_LINT = -ansi -pedantic -Wall -Wshadow \ + -Wstrict-prototypes -Wmissing-prototypes \ + -Wmissing-declarations -Wredundant-decls + diff --git a/emulators/klh10/files/patch-ab b/emulators/klh10/files/patch-ab new file mode 100644 index 000000000000..70c3a5dbac9a --- /dev/null +++ b/emulators/klh10/files/patch-ab @@ -0,0 +1,25 @@ +--- src/vmtape.c 2002/01/12 16:47:42 1.1 ++++ src/vmtape.c 2002/01/12 16:48:35 +@@ -696,13 +696,11 @@ + + /* Now verify filenames don't already exist */ + if (cfn && (cf = fopen(cfn, "r"))) { +- fclose(cf); + vmterror(t, "Tape control file \"%.256s\" already exists", cfn); + goto badret; + } + + if (df = fopen(dfn, "rb")) { +- fclose(df); + vmterror(t, "Tape data file \"%.256s\" already exists", dfn); + goto badret; + } +@@ -714,8 +712,6 @@ + goto badret; + } + if (!(df = fopen(dfn, "w+b"))) { +- fclose(df); +- if (cfn) fclose(cf); + vmterror(t, "Cannot create tape data file \"%.256s\": %.80s", + dfn, os_strerror(errno)); + goto badret; |