Hi Tim,
[Note that I went to the directory off the PDP-11 home page that alleges to
have notes on RT-11 but except for the DECUS disks there aren't that many
notes, and on the DECUS disks there is mostly just source code. (which
would be ok if I can figure out how to assemble something into a SAV file)]
Ok, so when I boot the disk labelled RT-11V02C on my H-11 it seems to work
except if I try to use PIP to copy a file to a disk I formatted with HT-11
it doesn't work (gives me DIR-RD-ERR).
I realize DEC was "famous" for not providing formatting software but is
there a FORMAT program for this version? Interestingly PIP on the HT-11
DISK can read the disks just not the "official" RT11
--Chuck
Contents of Disk 1: Contents of Disk 2:
MONITR.SYS 46 5-JAN-78 RKMNSJ.SYS 46 5-JAN-78
DXMNFB.SYS 58 5-JAN-78 RKMNFB.SYS 58 5-JAN-78
DP .SYS 2 5-JAN-78 RFMNSJ.SYS 46 5-JAN-78
RK .SYS 2 5-JAN-78 RFMNFB.SYS 58 5-JAN-78
RF .SYS 2 5-JAN-78 DPMNSJ.SYS 46 5-JAN-78
TT .SYS 2 5-JAN-78 DPMNFB.SYS 58 5-JAN-78
LP .SYS 2 5-JAN-78 DT .SYS 2 5-JAN-78
BA .SYS 7 5-JAN-78 DX .SYS 2 5-JAN-78
SYSMAC.SML 18 5-JAN-78 CR .SYS 3 5-JAN-78
SYSMAC.8K 25 5-JAN-78 MT .SYS 6 5-JAN-78
BATCH .SAV 25 5-JAN-78 MM .SYS 6 5-JAN-78
EDIT .SAV 19 5-JAN-78 PR .SYS 2 5-JAN-78
MACRO .SAV 31 5-JAN-78 PP .SYS 2 5-JAN-78
ASEMBL.SAV 21 5-JAN-78 CT .SYS 5 5-JAN-78
EXPAND.SAV 12 5-JAN-78 DS .SYS 2 5-JAN-78
CREF .SAV 5 5-JAN-78 FILEX .SAV 11 5-JAN-78
LINK .SAV 25 5-JAN-78 SRCCOM.SAV 11 5-JAN-78
PIP .SAV 14 5-JAN-78 DUMP .SAV 5 5-JAN-78
PATCH .SAV 5 5-JAN-78 PATCHO.SAV 33 5-JAN-78
ODT .OBJ 9 5-JAN-78 VTMAC .MAC 7 5-JAN-78
VTHDLR.OBJ 8 5-JAN-78 SYSF4 .OBJ 33 5-JAN-78
DEMOFG.MAC 5 5-JAN-78 KB .MAC 33 5-JAN-78
DEMOBG.MAC 4 5-JAN-78 22 FILES, 475 BLOCKS
LIBR .SAV 15 5-JAN-78 5 FREE BLOCKS
TT 1 5-JAN-78
LOAD .SAV 7 5-JAN-78
26 FILES, 370 BLOCKS
110 FREE BLOCKS
>Ok, I have managed to assemble and link a program!
>
>.R MACRO
>*DEMOFG.OBJ,DEMOFG.LST=DEMOFG.MAC
BTW - the file types (formerly called extensions) are defaulted
based on position in the command line. So:
.R MACRO
*DEMOFG,DEMOFG=DEMOFG
is equivalent to the above...
The RT Utilities use something called CSI (command string
interpreter) which has a standard form... up to 3 output files
(the ones to the left of the '=') and up to 6 input files
(the ones to the right of the '=').
For MACRO, the output files are objects, lists and symbol
table (in later versions). And the 6 input files are all
expected to be .MAC
>results in the expected listing and object file (I'm glad Gary Kildall
>modelled CP/M after RT-11!)
It sure does look that way, doesn't it... :-)
>Then I linked it with
>.R LINK
>*DEMOFG.SAV=DEMOFG.OBJ,ODT.OBJ
Same as above comments here, only the defaults are: .SAV image,
.MAP file for outputs, and up to 6 .OBJs for input.
>Then I ran it with
>.R DEMOFG
>and it ran, popped into ODT which I continued out of and exited 'cuz the
>background program wasn't running.
To run a foreground program, you issue the command FRUN <program_name>
>OK. So we're almost cooking, but it raises some interesting questions:
> 1) I can compile on the other disk by preceding the names
> with DX1: in the assmbler line.
Or you could ASSIGN DX1 DK, and then R MACRO and specify the
command line without device specifications.
Typically, one would boot from one device, then ASSIGN the other
device as DK (default disk) on which all new files would be
created if not otherwise specified, and from which all input
files would be taken, again unless otherwise specified.
> 2) How can I run a program on DX1: ? If I type .R DX1:PROG
> it says ?ILL-CMD?
The 'R' command is used for running programs/utilities specifically
>from the system device 'SY' (the boot device). To run a program
>from another disk, you can either do 'RUN' with no device specified
to have it run from DK:, or 'RUN dev:program' to run 'program' from
'dev:'
> 3) Which side of the disk is the directory on? (inner or outer
> tracks?)
The directory for all RT-11 volumes is a contiguous set of blocks
starting with block 6. It consists of two blocks per segment for
as many segments as have been specified in the PIP dev:/Z[:n]
command (up to 31). Each segment can specify up to 72 files. So
for one segment, the directory is in blocks 6 and 7. The first
file data block is block 010.
>The last question relates to the disk problem I'm seeing. My guess is
>that write precompensation is screwed up on that disk which would explain
>why it works until it writes the directory.
Sorry, can't answer that one...
Megan Gentry
Former RT-11 Developer
+--------------------------------+-------------------------------------+
| Megan Gentry, EMT/B, PP-ASEL | Internet (work): gentry!zk3.dec.com |
| Unix Support Engineering Group | (home): mbg!world.std.com |
| Compaq Computer Corporation | addresses need '@' in place of '!' |
| 110 Spitbrook Rd. ZK03-2/T43 | URL: http://world.std.com/~mbg/ |
| Nashua, NH 03062 | "pdp-11 programmer - some assembler |
| (603) 884 1055 | required." - mbg |
+--------------------------------+-------------------------------------+
>Ok, so another clue discovered:
> 1) Typing DX1:/Z "zeros" the directory on a
> floppy.
> 2) Trying this on drive 1 leaves the floppy
> scrambled, doing it on drive 0 seems to
> work.
There may be a problem with your drive 1.
>Trying DX0:A=DX1:MONITR.SYS/O does not write the boot block
If my example showed two separate devices, that was incorrect.
I believe both input device and output device have to be the
same for this. And MONITR.SYS and DX.SYS have to exist on the
volume which you are trying to make bootable.
>A disk formatted and zeroed is not mbootable.
right...
>Since the source to FORMAT was included I thought I'd take a peek. It
>tells the controller that is embedded in the drive "format that disk."
>and it does.
Aha... and you're using the Heathkit floppies, which can format
the drives...
>What the heck is used for "delete" on RT-11? backspace doesn't work nor
>does DEL apparently.
It should be DEL (0177). What happens when you type it?
Megan Gentry
Former RT-11 Developer
+--------------------------------+-------------------------------------+
| Megan Gentry, EMT/B, PP-ASEL | Internet (work): gentry!zk3.dec.com |
| Unix Support Engineering Group | (home): mbg!world.std.com |
| Compaq Computer Corporation | addresses need '@' in place of '!' |
| 110 Spitbrook Rd. ZK03-2/T43 | URL: http://world.std.com/~mbg/ |
| Nashua, NH 03062 | "pdp-11 programmer - some assembler |
| (603) 884 1055 | required." - mbg |
+--------------------------------+-------------------------------------+
Ok, I have managed to assemble and link a program!
.R MACRO
*DEMOFG.OBJ,DEMOFG.LST=DEMOFG.MAC
results in the expected listing and object file (I'm glad Gary Kildall
modelled CP/M after RT-11!)
Then I linked it with
.R LINK
*DEMOFG.SAV=DEMOFG.OBJ,ODT.OBJ
Then I ran it with
.R DEMOFG
and it ran, popped into ODT which I continued out of and exited 'cuz the
background program wasn't running.
OK. So we're almost cooking, but it raises some interesting questions:
1) I can compile on the other disk by preceding the names
with DX1: in the assmbler line.
2) How can I run a program on DX1: ? If I type .R DX1:PROG
it says ?ILL-CMD?
3) Which side of the disk is the directory on? (inner or outer
tracks?)
The last question relates to the disk problem I'm seeing. My guess is that
write precompensation is screwed up on that disk which would explain why it
works until it writes the directory.
--Chuck
On an unrelated front, the NetBSD folks have released 1.4Beta and it
actually mostly works on my uVax II (at least while I'm diskless). I've
managed to recompile an entire kernel (takes most of the day :-) and
install and run my new kernel. This means that I can actually debug the bus
hang problem if I can get some documentation on the processor (KA630). I
reiterate my call for a KA630 CPU manual, I only need it long enough to
make a copy of it and return it. Alternately, if one turns up I'll pay up
to $30 for it (that's what I figure it will cost to have it copied). And
no, DEC no longer sells it as far as I can tell.
--Chuck
In a message dated 4/29/99 10:00:04 PM Central Daylight Time,
bsa3(a)cornell.edu writes:
> On Tue, Jan 26, 1999 at 10:15:09PM -0800, Jason Willgruber wrote:
> > To tell the truth, I can't think of ANY IBM that had a factory reset
> > switch. My L40sx laptop has a place on the mother board for one,
> > but no actual external switch.
>
> I'm fairly certain that I saw one on a 1990-vintage RS/6000. I'll
> look tommorow and let you know. [That's about the only >= 1985
> workstation architecture I don't have an example of in my apartment.]
>
>
yep, the 250's and 350's have a reset switch. i had to use one today.
(the reset switch, that is)
Kelly
>would wildcarding be *.* ? or some other characters? and is it
>DX1:*.*=DX0:*.*
>
>My pip just responds ?OUT FIL?
>and DX1:=DX0:*.* responds with : ?ILL DEV?
Right... the CSI requires a file specification of some sort (which
is reason for the dummy filename I mentioned in a recent post). But
I think that the proper form for wildcards in the copy is
DX1:*=DX0:*.*
but it has been so long, I won't commit to it...
>I'm guessing that the version of FORMAT does this because if I FORMAT a
>disk and then DCOPY the HT-11B Distribution to it, it boots.
That is a strange FORMAT... Then again, it could be .CHAINing to
PIP with the appropriate command...
>Nope, no DUP.
DUP didn't show up until a few releases later, when the functions
of PIP were split into PIP, DUP and DIR. PIP was then specifically
used for file copies, DUP for disk utility operations, and DIR
specifically for directories.
>The reason I ask is that in my quest for 8" floppies I found two floppies
>marked RT-11V20C (which is one letter later than V20B which HT-11 thinks
>it is) but I can't seem to get a complete copy of DISK 1, but I can boot
>it.
I know I have a copy of V2C in my collection, on RK05... it probably
should be cleaned before use, though...
Megan Gentry
Former RT-11 Developer
+--------------------------------+-------------------------------------+
| Megan Gentry, EMT/B, PP-ASEL | Internet (work): gentry!zk3.dec.com |
| Unix Support Engineering Group | (home): mbg!world.std.com |
| Compaq Computer Corporation | addresses need '@' in place of '!' |
| 110 Spitbrook Rd. ZK03-2/T43 | URL: http://world.std.com/~mbg/ |
| Nashua, NH 03062 | "pdp-11 programmer - some assembler |
| (603) 884 1055 | required." - mbg |
+--------------------------------+-------------------------------------+
>You also have to put a bootblock on the resulting disk to make it
>bootable, but I don't know how to do this (off the top of my head)
>in HT-11 (or RT-11 V2B). In later RT-11's, this is done via DUP, but
>this doesn't exist in your distribution, does it?
Boy, this is nudging some long-dormant brain cells...
To write a bootstrap on V2(B or C), I believe the incantation is:
.R PIP
*DY1:A=DY1:MONITR.SYS/O
*
the 'A' is a dummy file name to satisfy the requirments of the
CSI, the /O is the option for writing the boot, using blocks
>from the file MONITR.SYS (which was listed in the directory
Chuck supplied earlier).
Megan Gentry
Former RT-11 Developer (1977-1992)
Long-time RT-11 User (since 1975)
+--------------------------------+-------------------------------------+
| Megan Gentry, EMT/B, PP-ASEL | Internet (work): gentry!zk3.dec.com |
| Unix Support Engineering Group | (home): mbg!world.std.com |
| Compaq Computer Corporation | addresses need '@' in place of '!' |
| 110 Spitbrook Rd. ZK03-2/T43 | URL: http://world.std.com/~mbg/ |
| Nashua, NH 03062 | "pdp-11 programmer - some assembler |
| (603) 884 1055 | required." - mbg |
+--------------------------------+-------------------------------------+
>Can anyone tell me how to copy files with PIP on an RT-11 V2 system? DCOPY
>fails to copy the complete disk and while the directory is intact the disk
>doesn't boot, so I want to use PIP to copy a file at a time and identify
>which files are on the bad part of the disk.
.R PIP
*DY1:FILE.OUT=DY0:FILE.IN
wildcarding works, too. If you want to find which blocks are readable,
and your distribution has the null device built in, you can try copying
each file to NL:.
You also have to put a bootblock on the resulting disk to make it
bootable, but I don't know how to do this (off the top of my head)
in HT-11 (or RT-11 V2B). In later RT-11's, this is done via DUP, but
this doesn't exist in your distribution, does it?
--
Tim Shoppa Email: shoppa(a)trailing-edge.com
Trailing Edge Technology WWW: http://www.trailing-edge.com/
7328 Bradley Blvd Voice: 301-767-5917
Bethesda, MD, USA 20817 Fax: 301-767-5927
Can anyone tell me how to copy files with PIP on an RT-11 V2 system? DCOPY
fails to copy the complete disk and while the directory is intact the disk
doesn't boot, so I want to use PIP to copy a file at a time and identify
which files are on the bad part of the disk.
--Chuck
In a message dated 99-04-29 22:09:30 EDT, you write:
> We're tossing out old computers this week, they are scheduled to be picked
> up
> by the local transportation company next monday or tuesday (probably
tuesday)
> .
> There are quite a few NDC 15" monochrome xterms. About 4 Sun ELC, 3-4 old
> style sun 19" monitors, that Decrwriter III that doesnt quite work.. A
> interesting color printer called a Howtek Pixelmaster (about the size of a
> water cooler). A pair of Apple Imagewriters.
>
> Anyways, they are in the hallway near my office, in teh basement of
> the computer science building. Let me know if anyone is interested, and
> I can give precise directions.
>
uh, what part of the globe do you live on?
>> I went scrounging today and found some interesting cards. A picture of
>>the first one is at "http://www.intellistar.net/~rigdonj/card1.jpg" and a
>>picture of the second is at "http://www.intellistar.net/~rigdonj/card2.jpg".
>> The first one is interesting because it has a list on the right side that
>>appears to be a list of memory locations and op codes. It's hard to see in
>>the photo but the first column is labeled CNT. (count?). Most of the ICs
>>are dated 1972. The only other markings on the card is "TERADYNE A 794" and
>>"Made in USA".
>Looks like a ROM built out of a diode array. I'd make a WAG that it's
>a bootstrap for some computer, but I don't know what. Judging by the
>content list, I'd say it's a 18-bit computer of some sort, but I don't
>recognize the board form factor or the opcodes.
Further insight: if you count the number of instructions listed that
have the low bit set, then count the diodes in the B01 region on the board,
they match up. And so on. Lots of zeroes in this particular opcode
set, whatever it is!
Tim.
We're tossing out old computers this week, they are scheduled to be picked up
by the local transportation company next monday or tuesday (probably tuesday).
There are quite a few NDC 15" monochrome xterms. About 4 Sun ELC, 3-4 old
style sun 19" monitors, that Decrwriter III that doesnt quite work.. A
interesting color printer called a Howtek Pixelmaster (about the size of a
water cooler). A pair of Apple Imagewriters.
Anyways, they are in the hallway near my office, in teh basement of
the computer science building. Let me know if anyone is interested, and
I can give precise directions.
-Lawrence LeMay
lemay(a)cs.umn.edu
Hey, I'm helping out a friend of mine that just got his first computer (a
386.. he's so excited about it - like a child on Christmas morning.. it's
funny). Anyway, it's pretty barren. I have a few things in my basement
(14.4 modem, printer, etc) but am looking for a CD-ROM (single speed is
great!), maybe a 500meg HD, overdrive chip, etc... just basically anything
to get him going.
Thanks in advance,
Kevin
--------------------------------------------------------------------------------
After sifting through the overwritten remaining blocks of Luke's
home directory, Luke and PDP-1 sped away from /u/lars, across the surface
of the Winchester riding Luke's flying read/write head. PDP-1 had Luke stop
at the edge of the cylinder overlooking /usr/spool/uucp.
"Unix-to-Unix Copy Program;" said PDP-1. "You will never find a
more wretched hive of bugs and flamers. We must be cautious."
-- DECWARS
____________________________________________________________________
| Kevin Stewart | "I am a secret |
| KC8BLL ----------| Wrapped in a mystery -Milford High School |
| a2k(a)one.net | Wrapped in an enigma Drama Tech Dept. |
|jlennon(a)nether.net| And drizzled in some tasty chocolate stuff.|
--------------------------------------------------------------------
A good starting reference to many of the computers used in spaceflight
is
NASA Contractor Report 182505
Computers in Spaceflight
The NASA Experience
James E. Tomayko
Wichita State University
Wichita, Kansas
It's available in hardcopy from CASI, and over the web from
http://www.hq.nasa.gov/office/pao/History/computers/Compspace.html
It gives a decent overview of the hardware involved, and has references
to very technical documents if you want to go into that much detail.
The HAL/S programming language is covered as an appendix.
--
Tim Shoppa Email: shoppa(a)trailing-edge.com
Trailing Edge Technology WWW: http://www.trailing-edge.com/
7328 Bradley Blvd Voice: 301-767-5917
Bethesda, MD, USA 20817 Fax: 301-767-5927
>
> > > >were a lot of bizarre proprietary CD-ROM interfaces.
> > I have some old Hitachi CD-ROM drives. They are single speed, from memory part
> > number CDR-1503S. About the area of a desktop PC, but not as high. Connect to
> > the host computer via a 37-way D connector.
> > Does anyone know what type of controller card is needed in the PC to use these
> > drives?
>
> HITACHI. Sometimes "proprietary" is quite literal. I think that some
> models of them were also sold by Amdek, and therefore possibly
> interchangeable. I probably still have some (and drivers!). But I'm not
> sure how long it will take me to find 'em.
>
Oooppsss.. Sorry about the blank message....
A friend of mine worked at Reference Technology developing a CD-ROM drive
based on the hitachi mechanism, way before CD-ROMs were a thing. In fact,
they created a custom file format (pre-pre-ISO 9660) for a shareware disk
that they used as a demo. Unfortunately, the market didn't develop fast
enough, and Ref. Tech. went belly up.
Long story short, I MAY have an interface card in my junk at home, but I
think I threw all the documentation away with the drive (a VCR sized box)
several years ago. If I can find it, I'll send it to you.
clint
>
> > > >were a lot of bizarre proprietary CD-ROM interfaces.
> > I have some old Hitachi CD-ROM drives. They are single speed, from memory part
> > number CDR-1503S. About the area of a desktop PC, but not as high. Connect to
> > the host computer via a 37-way D connector.
> > Does anyone know what type of controller card is needed in the PC to use these
> > drives?
>
> HITACHI. Sometimes "proprietary" is quite literal. I think that some
> models of them were also sold by Amdek, and therefore possibly
> interchangeable. I probably still have some (and drivers!). But I'm not
> sure how long it will take me to find 'em.
>
Hi,
On Fri, 16 Apr 1999 Max Eskin wrote:
> On Fri, 16 Apr 1999, Fred Cisin (XenoSoft) wrote:
> >Also, before the days of IDE CD-ROMs, and "Sound-Card interface", there
> >were a lot of bizarre proprietary CD-ROM interfaces.
>
> Yes, I've even owned a huge external drive for a while, I mailed it to
> someone on this list.
I have some old Hitachi CD-ROM drives. They are single speed, from memory part
number CDR-1503S. About the area of a desktop PC, but not as high. Connect to
the host computer via a 37-way D connector.
Does anyone know what type of controller card is needed in the PC to use these
drives?
Also, can anyone recommend a free C compiler running under MS-DOS, that can
produce code capable of running on an XT type PC? I have used djgpp, but
programs compiled with that require at least a 286SX.
-- Mark
Hi,
On Sat, 17 Apr 1999 Ethan Dicks wrote:
> I am attempting to back up some floppies from a project I did a few years
> ago. The sets of 3.5" 1.44Mb IBM floppies have been stored in a box, in a
> cool and dry room. Out of one set of 12 and one set of 15 disks, I have four
> disks that have read errors that DOS won't get past, bad sectors and the
> like.
> ...
> Are there any tools to go divining on DOS floppies that work better than
> an endless succession of "R"etries? It's an all or nothing prospect; the
> first disk has the install file, the remaning disks have a chopped monolithic
> data file. If one disk can't be read, the whole set is fundamentally
> useless.
First, I take it you have tried reading the disks on different drives? If that
didn't help, using the fdread package *might*, but I doubt it.
You have an Amiga right? One possible solution, if you want to spend some time
on this, would be to write a program to read the raw data from the disk, then
MFM-decode and analyse the data and report/correct any errors. This could work
if the only problems are with sector headers. Or try creating disk images
using one of the various Amiga PC-disk-access packages, maybe one of those is
more forgiving? (CrossDOS, XFS, MultiDOS, etc.)
(Aside: since the Amiga disk controller is so versatile, it should be possible
to archive "all" copy-protected PC disks using a program such as MFMWarp.)
-- Mark
The Heathkit H-8 was made from about 1977-78 to about 1981-82. It was an 8080 computer (Z-80 boards became available later), proprietary bus [there were a very few 3rd party source cards]. It originally ran HDOS [Heath Disk Operating System], which was not compatible with anything; Heath went to CP/M around 1980-81, which required changing the memory map of the machine [it had it's system ROM in low memory]. The front panel was implemented in firmware and was octal [thank you Gordon Letwin] [who left Heath for Microsoft in 1978, after designing much of the Heath architecture and software/firmware]. The system was originally cassette based, then the H-17 was introduced [hard sectored floppies, SSSD, 100k or so], and near the very end the H-37 components [DSDD 5", based on a Western Digital controller]. It was an "ok" but unexceptional machine, inferior to the better S-100 stuff available at the time.
The H-89 and its variants incorporated the same basic architecture in a very user-friendly "All-in-one" package, and with a Z-80 instead of an 8080 [but only 2 MHz]. The H-89 was among the most solid, reliable and user friendly CP/M systems available at the time and made a good, if not fast [even by the standards of the day] business system for the 1979 to 1982 time frame.
Barry Watzman
----------
From: bluoval [SMTP:bluoval@mindspring.com]
Sent: Saturday, April 10, 1999 2:34 AM
To: classiccmp(a)u.washington.edu
Subject: Heathkit H-8 questions
I saw a H-8 on eBay tonight. What year were these made? What could one
do with it? From the photo it has a 16 key keypad, numbers 1-9 and the
math symbols, decimal point, and 2 others i can't make out. What are
those 2 keys? I'm not trying to buy it, I wouldn't know what to do
with it even if i did. just curious. TIA.
Hi,
On Mon, 19 Apr 1999 Jason wrote:
> I'm getting a couple of IBM optical drives (one internal, one external).
> From the description, they have MCA controller cards. My question is:
> Would there be a way to run the internal one from an ISA controller? Maybe
> the question should be where can I get an ISA controller for an IBM optical
> drive?
There are optical drives and optical drives... (read on)
> My other question is if Optical disks are re-writable? I've talked to two
> people, and one of them says that Optical disks aren't re-writable,
> mangeto-optical disks are. The other person said that no optical disk is
> re-writable, and that only floptical disks are (isn't that a form of optical
> disk?)
The other person is wrong. MO disks are rewriteable, and come to think of it
some other types of optical media are, including CD-RW, DVD-RAM and PD.
As I understand it, flopticals are just like floppies but use a laser to assist
in positioning the drive head. I wouldn't call these optical disks. (I bet
they're as reliable as Windows too.)
There are various types of optical disk, of which magneto-optical ("MO") disks
are one. MO disks are rewritable (like 10 million times), and are about the
best -- in terms of media reliability and longevity -- true random-access
rewriteable removable storage there is. And the media is much cheaper than
Zip, Jaz etc. disks.
There are 3.5" and 5.25" MO disks. 5.25" disks are also available in write-once
varieties, but the drives themselves can handle both. (In fact the write-once
disks are physically almost identical to the normal ones. The drive reads a
flag to see that the disk should be write-only, and the drive firmware handles
preventing writes to sectors that have already been written.)
Anyway, I'll elaborate on my previous comment. IBM certainly used to sell SCSI
128MB 3.5" MO drives (circa 1992?). If you are getting a pair of these, using
them will be no problem, assuming you have a SCSI controller.
Earlier than that, IBM sold at least one other type of optical drive, which was
a WORM (write once read many) drive. As the WORM acronym suggests, disks for
the 3363 are not rewritable. They hold about 200MB each. The model 3363 drive
was introduced in 1987, and I picked one up recently, along with two MCA
controllers. The 3363 uses a custom interface. I want to get hold of an ISA
controller to use with the 3363. I found someone who has one for sale, sold as
seen for US$25. Too much for me.
If you are getting a couple of 3363 drives (which are big, heavy beasts), they
will be more of a curiosity than anything else.
They use proprietary disks, which -- if you can still get them from IBM at all
-- probably cost about $90 each. I have four still-sealed ones, but I'm
hanging onto them in the hope that I eventually get an ISA controller card for
my 3363...
Plug: check out my Amiga Magneto-Optical Drive FAQ. This contains some info on
why MO drives are cool, and a fair amount of details about using them with
Amiga computers and well as non-platform-specific things. The URL is
http://home.freeuk.net/markk/Amiga_MO_FAQ/main.html
-- Mark
>The requirement to put in a new disk suggests that the disk is designed for
>one to copy on to the new disk those things one would need in a "working"
>version and the use the working copy. Unfortunately there isn't any SYSGEN
>or MAKESYS or anythign that suggests this.
Your floppy doesn't have all the files necessary to reconfigure your
system in that way, in any event. Most likely it's a "Backup this disk
for dummies" procedure that's common with many distribution media.
>.R ASEMBL - starts a version of MACRO-11
>.R XBASIC - starts BASIC (again no docs but can hack a bit)
>.R EDIT - gives a '*' prompt
>.R DUMP - gives an octal dump
>.R MACRO - on SAMPLE.MAC exits to ODT at address 000002
In early RT-11 distributions, like DOS-11, the Macro processor was
separate from the actual assembly phase. I don't know why it'd be
dumping out on execution, though. How much memory is in your H-11?
>Very weird stuff. I think it is RT-11v2B
It looks like you've got the basic RT-11 development tools of the time,
then. Good! You can go to
ftp://metalab.unc.edu/pub/academic/computer-science/history/pdp-11/rt/decus/
and you'll find that most of the stuff on the Spring '76 RT SIG tape
ought to work under V2B. Some of the stuff from later SIG tapes ought
to work as well.
--
Tim Shoppa Email: shoppa(a)trailing-edge.com
Trailing Edge Technology WWW: http://www.trailing-edge.com/
7328 Bradley Blvd Voice: 301-767-5917
Bethesda, MD, USA 20817 Fax: 301-767-5927
I see so many of these in thrift stores, etc, for around $10-15, that I pay
them no attention at all. They're not particularly interesting since
deskjet printers will accept HPGL also. I don't see them with an assortment
of pens, as I once did, so I'd say that's the weak link. What's more, the
color deskjet printers, e.g. DJ550, etc, costing about the same as the
plotters, print in color, accept HPGL, and are about 10x as fast, even
though they're quite slow.
Third-party pens are available in art and drafting supply houses. There's a
line of refillable ink pens from Kohinoor which I've found doesn't work
terribly well in my somewhat larger 7595B ("E"-size) plotter, but they may
have something for the little desktop plotter. The not-refillable ones seem
to work fine, though. If you use the roller ball pens or the tip-wicks,
they may work for you.
Good luck!
Dick
-----Original Message-----
From: Christian Fandt <cfandt(a)netsync.net>
To: Discussion re-collecting of classic computers
<classiccmp(a)u.washington.edu>
Date: Thursday, April 29, 1999 6:27 AM
Subject: Re: Anyone have an old plotter.... found.
>Upon the date 12:14 AM 4/29/99 -0700, Jason Willgruber said something like:
>>I found a _new_ plotter (HP 7475 Color Pen Plotter).
>>
>>One question:
>>
>>Where would I be able to find replacement pens? Are they still fairly
>>readily available?
>
>Try a drafting supply store, office supply store or one of the big chain
>office supply stores such as Office Max. Check Yellow Pages under Office
>Supplies or Drafting Supplies, etc. (Or call John Lovitz ;)
>
>HP doesn't make pens anymore but there are one or two good third-party
>outfits who do. Lots of those plotters out there yet so should be no
>problem finding pens for several years at least.
>
>Regards, Chris
>-- --
>Christian Fandt, Electronic/Electrical Historian
>Jamestown, NY USA cfandt(a)netsync.net
>Member of Antique Wireless Association
> URL: http://www.ggw.org/awa
We have a complete PDP 11/04 (exclude terminal) that will be dumped
in the near future. We can freely deliver it if you want.
Regards,
Jacob Ho
Microprobe Lab(ARL-SEMQ)
Division of Petrology & Mineralogy
Central Geological Survey
P. O. Box 968
Taipei, Taiwan, R. O. C.
fax : 886-2-2942-9291
I have found a micro cassette labelled M700 System Tape, dated 1989.
Anyone have any idea what this might have been for? Found in a stratum with
lots of computer and software manuals from the same period.
Hans Olminkhof
-----Original Message-----
From: Hans Franke <Hans.Franke(a)mch20.sbs.de>
>Could you name the 'housing' ? What manufacturer, what type ?
>Maybe a picture ? FYI, there have been several cases from third
>party supplyers, so caseings for KIMs and AIMs are almost a
>collectors theme on their own.
I agree there. I have three, 2 brown casings, one of them has the anglles
of a stealth fighter and the other the curves of an old thunderbird. The
third is a creamy albino angled critter...
;)
Mike
I found a _new_ plotter (HP 7475 Color Pen Plotter).
One question:
Where would I be able to find replacement pens? Are they still fairly
readily available?
ThAnX,
--
-Jason Willgruber
(roblwill(a)usaor.net)
ICQ#: 1730318
<http://members.tripod.com/general_1>
I have a couple of Mizar VMEbus Video boards, model 7710. Has anybody an
operator's/technical manual? Either an original or decent xerographic copy
will do. Has anybody written an OS-9/68K ver. 2.3 or 2.4 driver for this
thing? These are 1989 vintage.
I'm also looking for the following Motorola VMEbus Module manuals:
** MVME 236-1,2,3 (Publication number MVME 236-1 Dx ), DRAM memory module
(x = version or edition number. I'll take any version.)
** MVME 133-1 ( " " MVME 133-1 Dx ),
Processor module
** Support Docs manual for this processor: SIMVME133-1
** MVME134bug ( " " MVME134bug Dx ), debugger
manual for '134 processor module
** and finally the Support Documentation (schematics, etc.) for an
MVME147S which is publication number SIMVME147S. Already have the manual.
** I'm also looking for Xycom catalogs and any tech documentation from
back in the mid-80's.
Thanks for your help!
Regards, Chris
PS: Are there any of you out there who have VMEbus gear in your collection?
-- --
Christian Fandt, Electronic/Electrical Historian
Jamestown, NY USA cfandt(a)netsync.net
Member of Antique Wireless Association
URL: http://www.ggw.org/awa
Really! The original "Lunar Lander" game . . .
I often marvel at how they manage these decade-long development cycles.
Imagine the apparent lunacy of launching a 10-year-old design just because
it takes that long to integrate, manufacture, and test it.
The simulator must have been written in Threetran . . .
Dick
-----Original Message-----
From: John Lewczyk <jlewczyk(a)his.com>
To: Discussion re-collecting of classic computers
<classiccmp(a)u.washington.edu>
Date: Wednesday, April 28, 1999 10:26 PM
Subject: Re: the "FIRST PC" - How about the computer on the Lunar Module?
>I was watching the show on the history of computers on the Discovery
channel
>and they talked about the computer on the Lunar Module that landed on the
>moon. It had 5000 integrated circuits in it and was quite the marvel for
>its time. Could this be a candidate for the first Personal Computer? They
>were kinda pricey! ;-)
>
>Does anybody have any information on that cpu - word size, instruction set,
>memory, control panel, etc? Who manuafactured it? Where can one go and
see
>it (without going to the moon!) How about the software for it?
>
>An simulator for one would be pretty cool to see, especially if it was
>running the program that they used to land on the moon!
>
>
>same page you would use for RT-11 (its essentially rt-11 V2). HT-11
>would have to have dup, dir, resourc and a few other utilities on it do
>be useful.
But such utilities didn't come along until later in RTs life.
Actually, in early versions of RT-11 (HT-11), PIP did all the
same functions which were eventually broken out into the
separate utilities DUP and DIR... Of course, since that split,
several other functions were added to each utility, and have
no analogue in V2.
And there was no RESORC, or HELP.
Megan Gentry
Former RT-11 Developer
+--------------------------------+-------------------------------------+
| Megan Gentry, EMT/B, PP-ASEL | Internet (work): gentry!zk3.dec.com |
| Unix Support Engineering Group | (home): mbg!world.std.com |
| Compaq Computer Corporation | addresses need '@' in place of '!' |
| 110 Spitbrook Rd. ZK03-2/T43 | URL: http://world.std.com/~mbg/ |
| Nashua, NH 03062 | "pdp-11 programmer - some assembler |
| (603) 884 1055 | required." - mbg |
+--------------------------------+-------------------------------------+
I was watching the show on the history of computers on the Discovery channel
and they talked about the computer on the Lunar Module that landed on the
moon. It had 5000 integrated circuits in it and was quite the marvel for
its time. Could this be a candidate for the first Personal Computer? They
were kinda pricey! ;-)
Does anybody have any information on that cpu - word size, instruction set,
memory, control panel, etc? Who manuafactured it? Where can one go and see
it (without going to the moon!) How about the software for it?
An simulator for one would be pretty cool to see, especially if it was
running the program that they used to land on the moon!
Hello.
I'm working on a project for the TSA National Conference (Technology Student
Association- www.tsawww.org ). It's a CAD design project, and printouts
need to be made at the competition. Unfortunately, my plotter just coughed
up and died this afternoon. It started to grind, made a loud pop, and some
smoke puffed out of it. I took it apart (thought it was a P/S problem,
since the P/S died once before), but it seemed that the decoder (?) chip had
fried. It's an old Tandy, so doubt I'll be able to find any new parts for
it, and I wouldn't have time to repair it, anyway. My school does have a
plotter (2 year old HP), but they won't let me take that beast to Tulsa for
the competition (I'm not quite sure how I'd get it there, either).
I'm not looking for anything real fancy - one with just a black pen will
work fine. As long as it works (with a PC - PS/2 P70), is fairly portable
(can be carried by one person), and won't cost me that much.
ThAnX,
--
-Jason Willgruber
(roblwill(a)usaor.net)
ICQ#: 1730318
<http://members.tripod.com/general_1>
Do you know where I may obtain this card, because I have a scanjet
which I obtained by dumpster diving, but can't interface it with my
computer, so I need that card do you know where I could get he ISA
version.
_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com
Dude I need that card in order for my dumpster diving scanjet, how
much.
_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com
>Test 1 gives a '?' and I get this message:
>
> ? 6 80A1 0000.4001
>?? 1 00C0 0011.700E
Test 6 means that your SCSI bus is (most likely) unterminated, and
test 1 is indicating that you don't have your Ethernet terminated.
Remember, the little recessed switch between the BNC and the AUI selects
which Ethernet connector to use.
>?24 UNXINT 00010000 041F0000 01C
Unexpected interrupt. I really have no idea where from.
>If I run the proper 'show' command (forgot which one I used) the disks
>spin up (RZ23 and RZ24), and 'show boot' indicates it wants to boot from
>the RZ24.
Can you type "B DKA0" (or whatever your OS resides on) and see if
you still get the UNXINT?
Tim.
Please forgive me group. I sent another personal note to the entire list.
I'll practice my cutting and pasting this weekend.
----------------------------------------------------------------------------
-------------------------------
Kevin Stumpf * Unusual systems * www.unusual.on.ca
+1.519.744.2900 * EST/EDT GMT - 5
Collector - Commercial Mainframes & Minicomputers from
the 50s, 60s, & 70s and control panels and consoles.
Author & Publisher - A Guide to Collecting Computers &
Computer Collectibles * ISBN 0-9684244-0-6
.
Wonderful, wonderful. Glad you had a good time. I can hardly wait to meet
you guys sometime.
I am hard pressed to give DG NOVAs away. I am so isolated in Kitchener. I
love my hometown,
but you, you get to drive a bit and park in the might TRW's parking lot.
Yikes, a dream come
true.
You keep enjoying the Valley ya here.
I hope to have my Computer Room done in the next month. That is a room
wherein all of the
accessories and furniture (except the chairs and lamps - so far) are made
>from old computer
parts.
Up the old computer eh.
----------------------------------------------------------------------------
-------------------------------
Kevin Stumpf * Unusual systems * www.unusual.on.ca
+1.519.744.2900 * EST/EDT GMT - 5
Collector - Commercial Mainframes & Minicomputers from
the 50s, 60s, & 70s and control panels and consoles.
Author & Publisher - A Guide to Collecting Computers &
Computer Collectibles * ISBN 0-9684244-0-6
.
>> > ? 6 80A1 0000.4001
>> >?? 1 00C0 0011.700E
>>
>> Test 6 means that your SCSI bus is (most likely) unterminated, and
>Hm. If the internal cable has a terminator plugged in, and there is a
>terminator on the external port, what's left?
There are also other quirks that can lead to test 6 giving an error -
bad termination is the most common. Can you do a SHOW DEV and see
what comes up?
>> Can you type "B DKA0" (or whatever your OS resides on) and see if
>> you still get the UNXINT?
>If I type "BOOT DKA3000" (the result of "SHOW BOOT") the system boots to
>VMS 5.5
Then I'd say you're succesful!
>I haven't yet attempted to see if it'll boot unattended, with the BNC
>terminated properly.
Terminating will help #1, and in between SHOW DEV and simplifying the
hardware configuration you'll probably fix #6.
>Are there any good VMS neophyte resources on the 'net, aside from the VMS
>FAQ?
>What is the name of the account analgous to "root"? I'll recognise it when
>I hear it but I can't recall what it is now.
SYSTEM. The VMS FAQ tells you how to break in, while physically present
at the console, if you've lost the SYSTEM password.
--
Tim Shoppa Email: shoppa(a)trailing-edge.com
Trailing Edge Technology WWW: http://www.trailing-edge.com/
7328 Bradley Blvd Voice: 301-767-5917
Bethesda, MD, USA 20817 Fax: 301-767-5927
Joe <rigdonj(a)intellistar.net> wrote:
> Sounds like HP-IB connectors. The 7945 is a STRANGE disk drive! It's a
> 55 Mb hard drive and four removeable 5.12" platter drives.
Huh? My 7945s are 55MB hard drives period, there's nothing removable
unless you have a screwdriver. OK, if you look inside there is
probably a ~60MB Priam/Vertex MFM/ST-506 i/f drive, and one or two
printed-circuit boards to speak CS/80 over HP-IB out one side, and MFM
out the other to talk to the drive. There is a 68xx playing
microcontroller to run the drive (on the board with the HP-IB
connector) but it wasn't sold as a computer and I'm pretty sure it's
intended to be user-programmable.
-Frank McConnell
-----Original Message-----
From: Richard Erlacher <edick(a)idcomm.com>
To: Discussion re-collecting of classic computers
<classiccmp(a)u.washington.edu>
Date: Wednesday, April 28, 1999 5:57 PM
Subject: Re: When stuff has to go
>I'll happily wait for them, shipped to
>
>Erlacher Associates
>Box 19651
>Denver, CO 80219
>
>attn: Dick
>
>That attention line isn't necessary unless someone else picks up the mail,
>which is generally not the case. I get a lot of literature, though, and am
>not always the first to see and subsequently hide (lose) it. This way it's
>more likely to get my immediate attention.
>
>thanks,
>
>Dick
>
>
>-----Original Message-----
>From: Lawrence LeMay <lemay(a)cs.umn.edu>
>To: Discussion re-collecting of classic computers
><classiccmp(a)u.washington.edu>
>Date: Wednesday, April 28, 1999 12:25 PM
>Subject: Re: When stuff has to go
>
>
>>> If you've got enough of these that they're not too valuable to ship into
>the
>>> ether, I'd appreciate one of these documentation sets re: NT4.0.
>>>
>>> Do you think they'd fit in one of those freebie USPS Priority Mail boxes
>and
>>> within the 2-lb limit. If so, I'd be happy to send you a fiver for your
>>> postage and trouble. The postage for a package of <2# is $3.20.
>>>
>>
>>Actually, I should be able to ship them using Book Rate. Which is less
>>than what you stated for 2 pounds. They are already in boxes, but the
>>boxes are somewhat damaged. Peopel were throwing screwdrivers and
>>such at empty boxes, including these not so empty boxes, so they
>>usually have a hole bigger than a quarter in them.
>>
>>Sure, why dont you sent me your address, and i'll ship em via book rate,
>>after taping up the hole. After you get them, you can send me a check for
>>whatever the shipping costs were, plus whatever.
>>
>>The set consists of 2 D-ring manuals, one is about 1" binder, the
>>other is much bigger, maybe 2" or so. There is a lab excercises, and
>>lab exercise solutions stuff, plus a larger section that is the
>>reading material for each lab. plus 3 CDroms, one has data for the
>exercises
>>(which assume you have 2 networked computers, one running server, one
>>running workstation), so you can pretty much ignore that, the other
>>2 CD's are NT server and NT workstation, 120 day licenses.
>>
>>-Lawrence LeMay
>>lemay(a)cs.umn.edu
>
It's not a rumor, the source code for GEM has been released and is available on the unofficial CP/M web site. The heritage of this source code was unknown a few days ago, it was not known either if it would compile, or how close [or far] it was related to the shipping products. But it's a starting point.
G'day,
The thing consists of tape feeder (model 1227-2001) and punch itself (model
1215-1001). It was manufactured by VEB Rechenelektronik
Meiningen/Zella-Mehlis, GDR.
--
Sergey Svishchev -- svs{at}ropnet{dot}ru
I'll happily wait for them, shipped to
Erlacher Associates
Box 19651
Denver, CO 80219
attn: Dick
That attention line isn't necessary unless someone else picks up the mail,
which is generally not the case. I get a lot of literature, though, and am
not always the first to see and subsequently hide (lose) it. This way it's
more likely to get my immediate attention.
thanks,
Dick
-----Original Message-----
From: Lawrence LeMay <lemay(a)cs.umn.edu>
To: Discussion re-collecting of classic computers
<classiccmp(a)u.washington.edu>
Date: Wednesday, April 28, 1999 12:25 PM
Subject: Re: When stuff has to go
>> If you've got enough of these that they're not too valuable to ship into
the
>> ether, I'd appreciate one of these documentation sets re: NT4.0.
>>
>> Do you think they'd fit in one of those freebie USPS Priority Mail boxes
and
>> within the 2-lb limit. If so, I'd be happy to send you a fiver for your
>> postage and trouble. The postage for a package of <2# is $3.20.
>>
>
>Actually, I should be able to ship them using Book Rate. Which is less
>than what you stated for 2 pounds. They are already in boxes, but the
>boxes are somewhat damaged. Peopel were throwing screwdrivers and
>such at empty boxes, including these not so empty boxes, so they
>usually have a hole bigger than a quarter in them.
>
>Sure, why dont you sent me your address, and i'll ship em via book rate,
>after taping up the hole. After you get them, you can send me a check for
>whatever the shipping costs were, plus whatever.
>
>The set consists of 2 D-ring manuals, one is about 1" binder, the
>other is much bigger, maybe 2" or so. There is a lab excercises, and
>lab exercise solutions stuff, plus a larger section that is the
>reading material for each lab. plus 3 CDroms, one has data for the
exercises
>(which assume you have 2 networked computers, one running server, one
>running workstation), so you can pretty much ignore that, the other
>2 CD's are NT server and NT workstation, 120 day licenses.
>
>-Lawrence LeMay
>lemay(a)cs.umn.edu
><Anyway, so I wired up my #2 nut with sense wire to the h-bridge and start
><slapping current back and forth through my nuts. :-) Seriously though when
><viewed on 'scope it looks something like:
><
>< +--+
>< | |
><Ch1 -+ +----+ +-----
>< | |
>< +--+
>< +--+
><Ch2 -+ +----+ +-----
>< +--+
>
> Transformer action prior to saturation.
>
><UNTIL you get to about 7.5 amps or so, and then it looks like:
>
> No you know what nuts dont work...
I don't usually have trouble with American English, but I must confess this
baffles me. Does it mean something like "Now you know why nuts don't work"? :-)
>< +--+
>< | |
><Ch1 -+ +----+ +-----
>< | |
>< +--+
>< +--+
><Ch2 ---+ +----+ +-----
>< +--+
><
><So I stared at it a bit and the little bulb went on between my ears.
[snip]
> Yep. Watching that spring snap in interesting on a scope. Those nuts are
> slow too! Try a bunch of other materials now that your set up...
Hows this for an idea. If you find that the toroidal ferrites that Siemens and
people make don't have enough hysteresis, why not go to the other extreme and
try the stuff magnets are made of. Ring magnets as used for loudspeakers and
things are probably a bit large :-) - I wonder if it's possible to drill a
hole down a bar magnet and then cut slices off. For mass production, I'm sure
the magnet manufacturers would sell you the stuff unmagnetised...
><The gap between the pulse start and the sense pulse is used to tell whethe
><or not the core had a 1 in it. Now in the DEC design what happens after th
><read pulse (which is really a "write zeros" pulse, is they take the data
><they just read and re write with the write ones pulse. However this time
><since the sense lines aren't needed to figure out what the cores had in
><them, they use them for "inhibit" currents.
Now can someone enlighten me: There will be a minor glitch-type delay between
read and sense pulses with no transition, and a much bigger delay with a
transition. How do you tell the difference? Is this one of the applications
where a monostable really is useful?
><Cool stuff, now it raises some new questions:
>< 1) Do you want your pulses to be long enough to switch the
>< core exactly, or longer? (eg does writing a zero just cancel
>< a one or does it cancel the one and write a zero in its place?)
>
> I forget.
Perhaps now you have a test rig you can try different pulse widths as well...
>< 2) Why not just gate the write one current pulse? That would save
>< on the inhibit current stuff.
>
> well you have to know what your writing back and to do that you have to
> read it first. Hence the common write after read cycle on many machines
> from the era of core.
I think what he meant was: Rather than sending write current through all core
planes and inhibit current back through those to which you don't want to write,
why not send write current only through those planes to which you want to write?
My initial guess was that you might connect the write wires of several planes in
series, and have a single driver for the lot.
But then I realised that this would be very difficult to drive - the voltage
required to drive a given current would depend on what you were writing - or
worse still, what you were reading!
So why is it done this way?
>< 3) What properties of a material make it easier to switch at lower
>< currents? I don't want to build a core plane with nuts if I need
>< 8 amps to switch them.
>
> Good magnetic conductors that hold their magnetizm. Some steels, ferrites,
> cobalt alloys, alnico, a few rare earths. Try some of those ferrite beads
> used for bypassing in RF work.
The other property that affects this is size. The smaller the core, the less
current it takes to magnetise it.
Philip.
On 27 Apr 99 at 23:33, Mike Ford wrote:
> **** RARE ***** ISA card, will trade for small plane or country
>
> I don't want to be the reason some poor guy out in the world stops using a
> piece of equipment due to the cost of some critical part that I have. OTOH
> if there are TWO such people needing the item, I see no reason why the one
> that "needs" it the most doesn't get it.
>
> BTW the card is a HP 48L REV A 88290-66501, the fingers look ISA to me, the
> connector looks DB25F, and the label on the bracket says Scanjet I/F card.
>
> What exactly is this, just a scanner controller card?
<CRAWLS OUT FROM UNDER DESK> Yes, I have one of these too I guess.
This is labelled C2502-66500 REV B 1994. The date sounds about right
as I remember ordering it. Mine has a bar code label with the
marking 4HE3PFG. From the documentation, ISTR that it is just a
barebones SCSI card that is designed to just about work with
an HP Scanjet. The SCSI Scanjet will also work with a proper SCSI
card so not having one is no great loss.
<\CRAWLS OUT FROM UNDER DESK>
Phil
**************************************************************
Phil Beesley -- Computer Officer -- Distributed Systems Suppport
University of Leicester
Tel (0)116 252-2231
E-Mail pb14(a)le.ac.uk
If you've got enough of these that they're not too valuable to ship into the
ether, I'd appreciate one of these documentation sets re: NT4.0.
Do you think they'd fit in one of those freebie USPS Priority Mail boxes and
within the 2-lb limit. If so, I'd be happy to send you a fiver for your
postage and trouble. The postage for a package of <2# is $3.20.
regards,
Dick
-----Original Message-----
From: Lawrence LeMay <lemay(a)cs.umn.edu>
To: Discussion re-collecting of classic computers
<classiccmp(a)u.washington.edu>
Date: Tuesday, April 27, 1999 3:33 PM
Subject: Re: When stuff has to go
<snip>
> I have all these Microsoft manuals and CD's for learning about Microsoft
NT 4.0
> (mainly administration stuff)... What i'm gonna do with 8-10 sets of this
stuff is
> puzzling me to no end.
>
>-Lawrence LeMay
The story doesn't give any idea of what CPU the machine will be based upon.
Anyone have an idea? ARM by any chance? A hacked version of NetBSD runs on
ARM already.
Kevin
At 09:48 AM 28/04/99 -0500, you wrote:
>
>Looks like Clive Sinclair is working on another portable, this time with
Linux
>and a non-Intel CPU.
>
>http://webserv.vnunet.com/www_user/plsql/pkg_vnu_template.comp_news?p_to_da
te=28-APR-99&p_cat_id=59&p_story_id=82266
>
>--
>David Wollmann
>DST / DST Data Conversion
>http://www.ibmhelp.com/
>
>
>
>
==========================================================
Sgt. Kevin McQuiggin, Vancouver Police Department
E-Comm Project (604) 215-5095; Cell: (604) 868-0544
Email: mcquiggi(a)sfu.ca
ok, tonight's stupid vax trick is deciphering the wonderous boot messages.
I've gotten the SPX card I was supposed to have, and things are looking
much better now than they had been before.
But (always the 'but'!)
The boot fails in an entirely different manner now.
Tests A, 3, and 2 give a '_' result which as I understand means whatever
it was testing wasn't found to test.
Test 1 gives a '?' and I get this message:
? 6 80A1 0000.4001
?? 1 00C0 0011.700E
>>> continue
?24 UNXINT 00010000 041F0000 01C
and then nothing more.
If I run the proper 'show' command (forgot which one I used) the disks
spin up (RZ23 and RZ24), and 'show boot' indicates it wants to boot from
the RZ24.
Help! I really do not know what I'm doing. (:
ok
r.
--- Cameron Kaiser <ckaiser(a)oa.ptloma.edu> wrote:
> [C= 1520 plotter]
> ::Does anyone out there have any software for it? (I don't recall seeing
> ::any on ftp.funet.fi).
>
> As a matter of fact, *I* do. Do you get comp.binaries.cbm?
Yes, but I don't check it as frequently as I used to (not your fault...
I don't have telnet access to my primary news server from where I am).
-ethan
_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com
It would be well to get the timelines aligned. The model 1 was of 1977
vintage. The model -3 was worked up in the late '70's before Apple got its
juggernaut rolling. Radio Shack had a real chance to make the microcomputer
market its own. No one had a decent sales and service network, not to
suggest that Radio Shack's was really decent, but at least it was there.
The Model 3 was out in '81? by which time double density was "old hat" and
by 1982-1983, Apple had the door closed. Having turned out two (if not
more) pieces of relative rubbish, the RS people had no chance after 1983.
IBM was gaining acceptance (nobody ever got fired for buying IBM, right?)
and ultimately legitimized the PC for "respectable" business use. By mid
'84, the 8-bitters were in the "Komputerdaemmerung."
Dick
-----Original Message-----
From: Allison J Parent <allisonp(a)world.std.com>
To: Discussion re-collecting of classic computers
<classiccmp(a)u.washington.edu>
Date: Friday, April 09, 1999 5:09 PM
Subject: Re: What if,... early PCs (was: stepping machanism
><The RCA TV set design that RS used for a monitor for the model 1 was NOT
><really adequate for 80x24 display. (YES, I've done it.)
>
>It could but the opto isolator used to keep the hot chassis and the video
>seperate wasn't up to the task. Bypassed and of course using an isolation
>transformer it was much crisper even at 80 cols.
>
><Double density was NOT readily achievable in 1978. And the poor quality
>
>My dog, don't tell DEC that or intel.
>
><> was SLOW. The Z-80-card in the Apple was significantly (and noticeably)
><> faster. The two machines otherwise occupied about the same desk space,
a
>
>Than the TRS80, every thing was faster. Next to my S100 CPM crate with a
>real 4mhz z80 and no wait state memory they were both slow.
>
><> aside from the stupid, Stupid, STUPID choice to leave the Tandy machine'
><> display at 16 lines of 64 characters (about half of what was on a 24x80,
>
>As it works 64wide was more useful for word processing than 32 or 40.
>
>Allison
>
>> The one Mike has is definately the proprietary one (I also have one sitting
>> here). It was packed with scanners like the ScanJet Plus.
>
> If that one is rare then the MCA version I use with the scanjet I have
> must be unique! ;)
On the contrary, I have a scanjet (which I've never used) and the MCA adapter.
I have no machines with MCA, though (yet!), so I might be offering to buy the
ISA version. One day...
Philip.
NOS! RARE!! VALUABLE!!! (yeah, right...)
In the boxes from a recent acqusition, I found a number of boxed of
Centronics 'Linewriter' 400/800 and 1200 series ribbon cartridges.
Since I don't have any of these printers in the collection (in fact, have
never heard of the thing!), they are available to anyone who can use them
for cost of shipping or flat out free if you pick them up!
There are about six boxes (of six carts each) of the 400/800 ribbons, and
one box of the 1200 ribbons.
Of course, if you want to offer something interesting in trade, thats cool
as well! B^}
-jim
---
jimw(a)computergarage.org
The Computer Garage - http://www.computergarage.org
Computer Garage Fax - (503) 646-0174
>>> Coming soon to www.computergarage.org - the CBBS/NW on-line archives
>>> Coming to VCF III (2-3 October 1999) - CBBS/NW live!
[Power supplies with earth return]
> I have never looked but I suppose it might. I have a 400A service and
> sometimes I do a fair job of loading it. The transformer ped is out of the
Another difference! It is very unusual in the UK to give a domestic customer
more than 100A in the main incoming fuse. 400A on each side of your 115-0-115
supply is getting on for 100kW. Do you really use that? I would have thought
10kW would be more likely (my parents use 36kW at the winter peak, mostly
heating load. 50A from each of three phases at 240V)
Anyway, 400A on the 240V side corresponds to nearly 7A to be returned through
the earth at 14kV. Ouch! I wonder what the resistance of the earth connection
is. There will be a minimum resistance to prevent undue voltage rise under
short circuit conditions, but I don't know how this relates to earth return
circuits...
The only places where I've seen this sort of arrangement, there are still 2
conductors. One insulated to HV for the line, and one lightly insulated for the
(HV) neutral.
> way so I rarely go closer than 30 feet from it. They also must put the
> ground rod(s) inside the for safety (hate to think what it would be like if
ISTR that in the UK there is a minimum distance between LV and HV earth
electrodes.
> the ground got cut on the primary). I have never seen them but they have to
> be there somewhere.
Earth open circuit? Hmm. The entire HV winding rises to 13kV and the HV
neutral flashes over to the transformer tank? Assuming the tank is part of the
LV earth system. Otherwise the transformer tank rises too, and flashes over to
your house supply...
Philip.
><OK, how about it. Put a ring of compasses around the wire with needles str
><enough magnetised that they will stay pointing N-S around the ring regardle
><the Earth's field.
><
><Can you then flip them with a current? A very good visual demonstration of
><core works!
>
> Yep, That would be good to watch but that's really a demo of the fields
> around conductors (imporant building block).
I actually meant to take the demo one step further. Each compass needle has its
own magnetic field. Put them close enough together and (with luck) the N end of
one needle will attract the S end of the other.
Put several of these compases in a ring, and the needles will point around the
ring, whether or not there is a current flowing down a wire in the middle.
And there are two stable states, just like a core.
With (even more) luck, you can flip between states with a current. Just like
core.
Worth a try?
This weekend I shall see if I can find some cheap, small compasses in a toy shop
or somewhere...
Philip.
Ok, I booted a disk labelled "HT-11B distribution" on my H-11 and it comes
up to the "." prompt. But not much else. (dir doesn't work for example)
Is there a clue page somewhere ?
--Chuck
>had DCL incorporated in it... to get a directory, you have to
>run PIP (R PIP) and issue the command 'ddx:/L' where dd is the
>device you're using (presumably DX) and 'x' is the unit number.
Yep, ignore my comment about R DIR. I'm pretty sure that DIR.SAV
didn't exist until CCL came about (though of course you never know
for sure with HT-11...)
I spent an hour explaining to the folks at Mentec yesterday how
IGETC and IFREEC aren't in RT-11 V5.5 and later SYSLIB.OBJ, despite how
the manual said that they were still there :-).
--
Tim Shoppa Email: shoppa(a)trailing-edge.com
Trailing Edge Technology WWW: http://www.trailing-edge.com/
7328 Bradley Blvd Voice: 301-767-5917
Bethesda, MD, USA 20817 Fax: 301-767-5927
>Ok, I booted a disk labelled "HT-11B distribution" on my H-11 and it
>comes up to the "." prompt. But not much else. (dir doesn't work for
example)
I believe HT-11 was based on a version of RT-11 which had not yet
had DCL incorporated in it... to get a directory, you have to
run PIP (R PIP) and issue the command 'ddx:/L' where dd is the
device you're using (presumably DX) and 'x' is the unit number.
Megan Gentry
Former RT-11 Developer
+--------------------------------+-------------------------------------+
| Megan Gentry, EMT/B, PP-ASEL | Internet (work): gentry!zk3.dec.com |
| Unix Support Engineering Group | (home): mbg!world.std.com |
| Compaq Computer Corporation | addresses need '@' in place of '!' |
| 110 Spitbrook Rd. ZK03-2/T43 | URL: http://world.std.com/~mbg/ |
| Nashua, NH 03062 | "pdp-11 programmer - some assembler |
| (603) 884 1055 | required." - mbg |
+--------------------------------+-------------------------------------+
>Ok, I booted a disk labelled "HT-11B distribution" on my H-11 and it comes
>up to the "." prompt. But not much else. (dir doesn't work for example)
Try a "R DIR".
What is the exact text of the error message? (You know, the error
messages are not put there for you to ignore. They do mean something
to others, even if they seem cryptic to you.)
>Is there a clue page somewhere ?
I think your copy of HT-11B will be roughly equivalent to RT-11 V2
(maybe V3). No online help. You should find the big set of blue books
that came with it! Many of the utility options from later versions
of RT will work, but not all, and the details of a SYSGEN changed greatly
between major versions.
--
Tim Shoppa Email: shoppa(a)trailing-edge.com
Trailing Edge Technology WWW: http://www.trailing-edge.com/
7328 Bradley Blvd Voice: 301-767-5917
Bethesda, MD, USA 20817 Fax: 301-767-5927
Doing a casual dumpster dive this eve and found a box with
Vic-1520 Colour Printer Plotter. NIB including manual and cables. Unopened
tube containing the 4 colour nibs. Dont know if they're dried out but they're
water-based.
An MJB H8401 4 socket game-port expander and 40/80 converter
in a really sturdy metal case with 6-led select switch and reset.
C= 802 printer like new.
New parallel card for Apple ll with cable and lle socket plus typed manual
>from PC Wares .
What looks to be a 1/2 ht. 5 1/4 Apple ll floppy in a 1541 case usual All
cable but with a different non-apple controller card inside ??
A Bantam paperback manual on the Timex-Sinclair 1000 and a couple of
copied mmanuals (Oxford Pascal for C64, Spinnaker), a package from Quantum
Link with a discount coupon. Wonder if AOL would honor it ? :^))
Made my day !
ciao larry
lwalker(a)interlog.com
Let us know of your upcoming computer events for our Events Page.
t3c(a)xoommail.com
Collectors List and info http://members.xoom.com/T3C
I agree in principle but I just double checked my memory and just looked at
my HT feed. It is only connected to the HT line and then drops down into a
conduit and under ground for the ~800 feet to the pedistal mounted
transformer. There is only the 1 connection at the pole. A friend of mine
used to burry lines for the local phone company and has hit on occasion
(when the locator screwed up) the 14KV drops and said all he ever finds is a
single wire from the result. He did say it is impressive when it gets
shorted however. He has melted teeth off the backhoe bucket and his ears
hurt for a while afterwords. It also works wonders on the ditch witch teeth
and the vibrating plow blades. Even though the power drops are supposed to
be a minimum of 3 feet down that is not always the case.
Dan
> I don't know about where you come from but in my state,
>the power company is required to keep the ground current to
>a minumum. The smallest power line I've see was two wires.
>Much of the older telegraph lines used ground return. I don't
>think it would be good for general power distribution. They also
>used ground return on many telephone setups.
> This reminds me of a story I once heard:
> A phone repairman heard of this dog that could predict
>when the phone would ring. A few seconds before the bell
>rang, the dog would let out a howl.
> He had to see this magic dog.
> He when to the old ladies house and he found the dog chained
>to the telephone box on the side of the house. He then realized
>how the dog knew. You see, it was winter and the ground was
>frozen at the box. This meant that when a ring came in, it
>didn't have enough current to make the bell ring but there
>was enough current to give the dog a strong shock through
>the chain. The poor dog would get a nasty shock and urinate
>on the ground. On the next ring, the urine would provide
>enough conduction that the bell would ring.
> That is the story of the magic dog.
>Dwight
>
>Dwight
>
>
>I've just gotta ask! Does it bring the worms to the surface when it
>rains?
> - don
I have never looked but I suppose it might. I have a 400A service and
sometimes I do a fair job of loading it. The transformer ped is out of the
way so I rarely go closer than 30 feet from it. They also must put the
ground rod(s) inside the for safety (hate to think what it would be like if
the ground got cut on the primary). I have never seen them but they have to
be there somewhere.
Dan
>> >How can the transformer possibly work if the primary is only connected
to
>> one
>> >HT line? What is the other side of the primary connected to? Where's
the
>> >return path?
>>
>> Earth
>
>I had an electronics tech that worked for me a number of years, and we were
>working on some control circuits that had only one wire between two panels.
>In answering the question as to how the path was completed, his answer (I
>hope tongue-in-cheek) was through the air. I am assuming here that "Earth"
>was also said tongue-in-cheek!
>
It is the actual way they do it here. See my prior post from looking at the
pole feed.
Dan
I'd kick in ten buck or so for a picture of the bonfire :)
>
> Especially if its not limited to 10 year old stuff. I have all these
> Microsoft manuals and CD's for learning about Microsoft NT 4.0
> (mainly administration stuff)... What i'm gonna do with 8-10 sets
> of this stuff is puzzing me to no end.
>
> -Lawrence LeMay
>
>
>How can the transformer possibly work if the primary is only connected to
one
>HT line? What is the other side of the primary connected to? Where's the
>return path?
Earth
In one of the HP 21MXE machines I received recently, there is a Versatec
printer interface. I have no need for it at all. It consists of about 6 or 8
interface cards, plus a rackmount box. From what I can tell, it was used to
hook up a versatec plotter. It also *APPEARS* to have a parallel interface
on the box, but I don't know any particulars, this may not be correct.
If someone has a real use for it, they're welcome to have it for shipping
costs. However, if no one claims it, I will likely strip off the front panel
switches on the rackmount box (which are the authentic style for my
Nicolet-80 which has some non-authentic front panel switches installed by
the last user) and pitch the rest.
If interested, just email me for particulars.
Jay West
>"Daniel T. Burrows" <danburrows(a)mindspring.com> wrote:
>> Close but not quite right. For single phase installations the power
company
>> supplies 2 hots and neutral. This is a center tapped secondary and the
>> neutral is earthed at the service entrance.
>
>No, for split-phase, the power company does not "supply" a neutral from the
>distribution system. The neutral is *only* tied to the center tap of the
>secondary and to ground. It is not tied to anything on the primary side of
>the transformer; that would be bad.
That is what I was trying to decsribe above.
>> The primary of this transformer
>> is fed from only 1 high voltage phase.
>
>I don't believe this; it doesn't match the descriptions I've read
elsewhere.
>I've always seen it shown in diagrams with the primary connected across two
>phases of the three-phase. Otherwise you need a high-current return path
>somewhere else.
Take a close look at rural areas and there is only 1 High voltage line
present.
It is fed to the HT input of all the pole transformers.
>To even the loading of the phases, the transformers for split-phase service
>have their primaries distributed between the three possible combinations of
>the three phases.
When there are 3 phases available that sometimes is the case. Look closely
at the pole transformers and in most cases when there are 2 or more
transformers mounted on 1 pole there is only 1 HT input to each transformer.
If it were between phases there would be 2 HT inputs.
Dan
At 09:21 PM 4/25/99 -0700, you wrote:
>At 09:43 PM 4/25/99 -0600, you wrote:
>>My original post may have been misleading. It just says "Macintosh" on the
>>back of the case. I'm assuming that it's a 128K Mac because: ...
>>
>>How can I check the memory capacity, to see if it's a 128K or a 512K Fat
>>Mac? I'm not that familiar with Macs.
>
>Boot it up, drop down the left hand (I think) menu and select 'About
>Finder'. This should indicate the memory in the system.
>
>-jim
>
>---
>jimw(a)computergarage.org
>The Computer Garage - http://www.computergarage.org
>Computer Garage Fax - (503) 646-0174
>
When I choose "About the Finder ...", I get
"The Macintosh Finder Version 1.0 (18 Jan 84)
@ 1984 Apple Computer"
No mention of memory size. But I would guess that it doesn't mention the
memory size because no size other than 128K was contemplated; i.e. this is
an original Mac. Any other way to check? BTW, were the "Programmer's
switches" (Interrupt and Reset) de-emphasized after the original Mac? My
Mac Plus has the same microswitches inside the case, but I had never heard
of them before.
This system is a bit of a puzzle. As I understand it, a single drive
original Mac was almost unusable, due to lack of RAM and the need for
frequent disk swaps. So I would expect mint condition. However, this system
(Mac, mouse, KB, Imagewriter printer) shows some signs of wear, even though
it was never upgraded to 512K, and there was no second drive with the system.
Regards,
Mark
>> > CKK FA <xy> 1 11/44 Diagnostic ROM*
>> >My second problem is the first test, I can't find a KKFA*.* test. Is there
>> >another test I can run on the diagnostic ROM?
>>
>> The diagnostic ROM *is* the test :-). This is the "big" bipolar
>> PROM located near the boot PROM's. And the test is executed at startup.
>OK, I'll buy that, BUT why was there a Diagnostic for the Diagnostic ROM at
>one point? It does seem rather redundant though.
I think you're taking the table too literally: the Diagnostic ROM *is*
the Diagnostic ROM test :-). Generically, it's a dirt-simple memory
test which also gives the CPU a bit of a exercise (simple bit manipulation
and looping) in the process. At least some of the Diagnostic ROM's also
do a checksum on themselves (this is actually a requirement for firmware
in some European countries) but I don't know if the 11/44's ROM does this.
>> >CKKKAC0 11-44 KK11B CACHE
>> >
>> >RMI REGISTER (G5179) NOT USED-SKIP HI ORDER BIT ADDRESS TEST
>>
>> The G5179 is the PDP-11/44 Remote Memory Interface (an extremely
>> rare option). You don't have it :-).
>Ah, good, this was the most disturbing of the messages I got.
*Generally*, G-series modules referred to by XXDP+ are modules
with special diagnostic purposes. These G-modules are often simulators or
exercisers, and in many cases were not often found outside of
the manufacturing and repair facilities. Other G-series modules
are the components of low-level formatters and dedicated hardware
test jigs. Many of these modules, according to the hardware indices
I have at hand, were custom-wrapped boards produced in extremely small
(sometimes only 1 or 2) quantities, yet they still have G-numbers.
>Now I've just got to pour through the doc's for the peripherals so I can
>figure out what tests to run on them.
For at least your RL11 and RL02's:
ZRLG?? Controller Test #1
ZRLH?? Controller Test #2
ZRLI?? Drive Test #1
ZRLJ?? Drive Test #2
ZRLK?? Performance Exerciser
ZRLL?? Drive Compatiblity Test
ZRLM?? Bad Sector File Utility
Running the drive tests or performance exerciser with multiple drives
at the same time produces an impressive light show as all the unit lights
blink in both regular and random patterns!
--
Tim Shoppa Email: shoppa(a)trailing-edge.com
Trailing Edge Technology WWW: http://www.trailing-edge.com/
7328 Bradley Blvd Voice: 301-767-5917
Bethesda, MD, USA 20817 Fax: 301-767-5927
>My single biggest problem seems to be stopping a diagnostic once I've
>started it. So far I've been resorting to stopping the CPU and rebooting,
>but one would think that there must be a better way, and that I've missed
>it.
You don't have to reboot; you can often just halt the CPU and start
up XXDP+ again at the restart address (this is given at boot time as
a message on the console.) Some diagnostics (especially the really
extensive memory diagnostics) wipe out the XXDP+ monitor and you do,
indeed, have to reboot.
> CKK FA <xy> 1 11/44 Diagnostic ROM*
>My second problem is the first test, I can't find a KKFA*.* test. Is there
>another test I can run on the diagnostic ROM?
The diagnostic ROM *is* the test :-). This is the "big" bipolar
PROM located near the boot PROM's. And the test is executed at startup.
#3 is #3, but I think this is proper behavior
CKKABD0 11/44 TRAPS
NO FLOATING POINT OPTION PRESENT
NO CIS OPTION PRESENT
CONSOLE
17777707 023252
>>>
>#5 may or may not be a problem with the cache (real problem is my not
>knowing how to interpret it).
>
>CKKKAC0 11-44 KK11B CACHE
>
>RMI REGISTER (G5179) NOT USED-SKIP HI ORDER BIT ADDRESS TEST
The G5179 is the PDP-11/44 Remote Memory Interface (an extremely
rare option). You don't have it :-).
>UNIBUS EXERCISER NOT USED-DMA TESTS NOT PERFORMED
There was also an optional Unibus exerciser that could be installed
instead of the normal terminator. These aren't all that rare - they're
very commonly found inside 11/750's.
--
Tim Shoppa Email: shoppa(a)trailing-edge.com
Trailing Edge Technology WWW: http://www.trailing-edge.com/
7328 Bradley Blvd Voice: 301-767-5917
Bethesda, MD, USA 20817 Fax: 301-767-5927
>> > Take a close look at rural areas and there is only 1 High voltage line
>> > present.
>> > It is fed to the HT input of all the pole transformers.
>
>Same thing is done in rural areas in Oz. They are called SWR lines, which
>is TLA for Single Wire Run AFAIK.
>Not sure of the voltage, but I think it's around 8kv. (240v to
subscribers)
>They are somewhat unpopular, and are prone to surges and sags etc.
>Given the nature of the return path, (ground) and the way it would be
>affected by weather etc, this is not surprising.
I would think it would have a lot more surges and sags than it does. I
guess they manage to keep the HT runs short enough however. I have several
1 to 3 KVA UPS's here and rarely (except during storms) do they kick in.
Boy does it get noisy then with all their alarm beepers going.:) Can't wait
to move them out once I make room (and get batteries for) the 10 KVA online
UPS I picked up.
The HT lines I am on are around 14.5KV. The typical distribution lines I
have found vary from12KV to 14.5 in the different areas I have lived.
Currently in North Carolina.
Dan
Ok, I've finally dusted off this Motorola box I got the other day, it has
a MVME-101 CPU Card, A MVME225-2 Memory card and a MVME 319 Controller.
It runs OS/9 v2.1, it appears to have been used for some kind of robotics
application, but all the other cards have been removed. Does anyone have
more info on this box?
Cheers
Karl
------------------------------------------------------------------------------
Karl Maftoum
Computer Engineering student at the University of Canberra, Australia
Email: k.maftoum(a)student.canberra.edu.au
>> http://www.bccc.com/nancy/memorydress.html
>
>Core memory in oscilliscopes? Where did she get that idea?
She also talks about medical equipment, which causes me to believe
that most of the core memory she gets comes out of pulse height analyzers
>from the late 60's to the mid 70's. These look a lot like oscilliscopes
to the untrained idea (they have a CRT, lots of knobs, BNC jacks, etc.)
--
Tim Shoppa Email: shoppa(a)trailing-edge.com
Trailing Edge Technology WWW: http://www.trailing-edge.com/
7328 Bradley Blvd Voice: 301-767-5917
Bethesda, MD, USA 20817 Fax: 301-767-5927
Hmmm, this is really odd, I found some more boards that I don't seem to
have inventoried today. Anyone have any ideas on these?
Versatec
PDP-11 Matrix control
This is a dual height board, but I'm pretty sure it's for a UNIBUS system,
thanks to the wierd connector sticking out the side of it for another board.
DILOG DQ342
Quad Height, has a 34 and a 10-pin connector
SCD-RQD11/EC
Quad Height, 4 20-pin connectors, 1 34-pin, and 1 10-pin. 3 LED's 2 green,
1 red. I think it's a Sigma ESDI controller, based on doing a DejaNews
search, it also looks like it _might_ be basically a rebadged WQESD
controller, since the one article talks about WOMBAT. Is this correct, and
can I just use my WQESD manual for it?
Plessey
P/N 705920-100A
Quad Height, RAM board
Zane
| Zane H. Healy | UNIX Systems Adminstrator |
| healyzh(a)aracnet.com (primary) | Linux Enthusiast |
| healyzh(a)holonet.net (alternate) | Classic Computer Collector |
+----------------------------------+----------------------------+
| Empire of the Petal Throne and Traveller Role Playing, |
| and Zane's Computer Museum. |
| http://www.dragonfire.net/~healyzh/ |
>Or what would your definition of Micocomputer be? I suppose we have to
>establish that first. graphic monitor and floppy drive, with hard drive
>optional, would seem a good start.
By those standards, even an IBM 5150 (aka "IBM PC") wasn't even a
microcomputer. I think that sort of definition is way too narrow. Then a
gain, I despise most any kind of exclusionary definition. But that doesn't
leave one with much in the way of definitions left, does it? :-).
I *do* like the web page that Sam pointed out
( http://www.blinkenlights.com/pc.shtml ). I may not agree with the
final positive, but I do agree with all the previous negatives :-).
And that Arkay CT-560 looks pretty nifty!
Tim.
I have several jars of ferrite cores made by IBM sometime in the late
1950's. I don't know exactly what size they are, but they can be
hand-wired without a stereo microscope.
I know, because I built a plane of 1x64x64 when I was in high school in
1971. (I was very determined to build my own computer.) The project was
abandoned when I went away for college, which was probably a good thing,
because my analog design skills were not up to creating the drive and sense
circuitry.
As I recall, I used something like #60 enameled wire. One of the
challenges was stripping the insulation off the ends of the wires without
damaging the copper.
If anyone is seriously intending to build a demo core memory system, I'd be
glad to provide a couple of hundred cores. I'd recommend something like a
16x16 array, unless you're looking for a project to make a 20-to-life
sentence go faster.
----
John Dykstra jdykstra(a)nortelnetworks.com
Principal Software Architect voice: ESN 454-1604
Enterprise Solutions fax: ESN 667-8549
Thank you man. Lots of work followed by lots of benefit.
Yours in good faith.
----------------------------------------------------------------------------
-------------------------------
Kevin Stumpf * Unusual systems * www.unusual.on.ca
+1.519.744.2900 * EST/EDT GMT - 5
Collector - Commercial Mainframes & Minicomputers from
the 50s, 60s, & 70s and control panels and consoles.
Author & Publisher - A Guide to Collecting Computers &
Computer Collectibles * ISBN 0-9684244-0-6
.
On Mon, 26 Apr 1999, PG Manney wrote:
> I recently acquired a PCjr with a bunch of software. Machine's very clean.
>
> I'm not really that interested in playing with this beast. Should I sit on
> it as an investment? Is it worth anything now? Dnyone interested?
It is a relative situation. Value is what is it worth to you or the buyer. A
few points about the computer. There are not that many floating around for
sale. It was a flop for IBM but it also was IBM's entr?e into the "Home
computer" market. This gives it some weight. The PC and its siblings had
supplanted the PC jr and nailed the lid on the coffin, but I would hang on
to it, it will not become valuable for a while but it is a "place marker" in
the history of computers. What did its introduction mean to the industry?
Altair- first viable personal computer, Apple I computer, first of the
longest lived manufacturer. (Yes IBM has been around longer but not as a PC
maker) 1st Sony PC, the design and implementation of the 3.5" diskette,
Tandy the first mass market machine not only sold in computer stores,
Commodore Pet, First computer to make the cover of a national general
circulation magazine (Popular Science) and from a calculator company no
less; using calculator keys for the keyboard. The Commodore also set a
standard for selling computers to computer dealers in their original selling
agreements. Vector Graphics, first computer company founded and run by a
woman. Osborne, the computer made by the guru of computer hobbyists and
Kaypro, first generally accepted computer for the average business person.
Want to know the value of a computer? Is it a piece of hardware or a point
of computer history, did it change the way things were done? Good luck.
I wrote
> BTW Siemens make some torroidal cores down to 1mm thick ferrite, slightly
larger
> in other materials. RS Components stock some - http://rswww.com/ and go in
> through the catalogue: "Electronics", "Transformers/Inductors/Ferrites",
> "Ferrites", "Torroids" (sic). There are even data sheets but I didn't manage
to
> download them.
So it seems that RS and I made the same spelling mistake. I think "Toroid" and
"Toroidal" are the correct spellings...
P.
NOTE: my problems are at the end of this message, got carried away to the
extent someone might find this to have some useful info :^)
I'm trying to run some tests on my /44 and have been having loads of fun
with my lack of doc's on XXDP+. Note, for people in the same boat, I'd
recommend Pete Turnbull's notes
http://www.dunnington.u-net.com/public/XXDP.ps Though the best help I've
found is having the doc's on the hardware I've tried to test.
The /44 Tech Manual says to run 1-11 of the following tests in order (NOTE:
I added the XXDP+ column).
MAINDEC Operating Title XXDP+ 2.5
Diagnostic Sequence
--------------- ------- ------------------------------- -----------
CKK FA <xy> 1 11/44 Diagnostic ROM*
CKK AA <xy> 2 11/44 CPU/EIS KKAAB0.BIC
CKK AB <xy> 3 11/44 Traps KKABD1.BIC
CKK TA <xy> 4 11/44 Mem. Mgt. Prt A KKTAB1.BIC
CKK TB <xy> 5 11/44 Mem. Mgt. Prt B KKTBD0.BIN
CZM 9B <xy> 6 M9312/11/44 UBI Boot ZM9BE0.BIN
CKK UA <xy> 7 11/44 UBI Map KKUAE0.BIN
CKK KA <xy> 8 11/44 KK11-B Cache KKKAC0.BIC
CZM SD <xy> 9 MSL-M/L Memory ZMSDD0.BIN
MS11-L/M/P Memory Diagnostic ZMSPC0.BIC
CZD LD <xy> 10 DL11-w/MFM SLU ZDLDI0.BIN
CKK AC <xy> 11 11/44 Power Fail KKACC0.BIC
CKF PA <xy> 12 FP11-F Part A KFPAD0.BIC
CKF PB <xy> 13 FP11-F Part B KFPBC0.BIC
CKF PC <xy> 14 FP11-F Part C KFPCD0.BIC
CZK EE <xy> 15 PDP-11 CIS Instr. Exerciser ZKEEC0.BIC
CZK UA <xy> 16 UNIBUS Systems Exerciser Diag. ZKUAE0.BIN
CZK UB <xy> 17 UNIBUS Exerciser Module ZKUBC0.BIN
*Included with the M7098 UBI module.
CKFPA
||\/|
|| |Indicates a series of diagnostics: A= part 1, B=part 2, C=part 3, etc.
|| | (this is what the PDP-11/44 Tech Manual claims, I'm not convinced
|| | that it was followed)
|| Indicates a specific device tested by the diagnostic:
|| "FP" = Floating Point Diagnostic
|| "RK" = RK05 (disk diagnostic)
|"K" indicates a specific diagnostic for the PDP-11/44 system.
"C" indicates a PDP-11 diagnositic (not used on diagnostic disk pack or
magnetic tape).
<xy> = x = Revision Character (alpha)
y = Patch Number (0-9)
My single biggest problem seems to be stopping a diagnostic once I've
started it. So far I've been resorting to stopping the CPU and rebooting,
but one would think that there must be a better way, and that I've missed
it.
My second problem is the first test, I can't find a KKFA*.* test. Is there
another test I can run on the diagnostic ROM?
#3 is #3, but I think this is proper behavior
CKKABD0 11/44 TRAPS
NO FLOATING POINT OPTION PRESENT
NO CIS OPTION PRESENT
CONSOLE
17777707 023252
>>>
Problem #4 isn't that big a deal, the "M9312/11/44 UBI Boot" diagnostic
complains that the DD and DL ROMS are in as DL and DD, while it wants DD
and DL.
#5 may or may not be a problem with the cache (real problem is my not
knowing how to interpret it).
CKKKAC0 11-44 KK11B CACHE
RMI REGISTER (G5179) NOT USED-SKIP HI ORDER BIT ADDRESS TEST
UNIBUS EXERCISER NOT USED-DMA TESTS NOT PERFORMED
END OF PASS # 1
END OF PASS # 2
END OF PASS # 3
<etc,etc,etc>
I solved #6 by finding and substituting the ZMSPC0 memory test for ZMSDD0.
Opps, guess I didn't try step 11, and 12-14 can't be done at the moment as
the FP11 isn't installed, and I don't have a CIS for #15, 16&17 both
complained.
Zane
| Zane H. Healy | UNIX Systems Adminstrator |
| healyzh(a)aracnet.com (primary) | Linux Enthusiast |
| healyzh(a)holonet.net (alternate) | Classic Computer Collector |
+----------------------------------+----------------------------+
| Empire of the Petal Throne and Traveller Role Playing, |
| and Zane's Computer Museum. |
| http://www.dragonfire.net/~healyzh/ |
Greetings All,
Can you help identify these UNIBUS boards? They were found in a
BA11-K expansion box in a VAX 11/750. The VAX was used to run the
equipment in an MRI trailer. I didn't remove the system and don't
know to what type of equipment it was originally connected.
1) Full size genuine DEC hex board, no "M" number on spine.
"DIGITAL" and "BSWU-T" etched on front. Two stickers, marked
"835084" and "4522 117 2760". 93 TTL chips, 18 PAL chips, 5
DIP switch blocks, two 50-pin connectors for ribbon cables. On
rear side, "4522 111 91963" etched and a sticker with "PR32.4B"
and "MB6024ET".
2) Plessey Peripheral Systems quad board. Marked with "P/N 703680-
100E" on front, "703679-001 REVB" on rear. 7 chips with stickers
"218 101C, 102C, 103C, 104C, 105C, 100 UK30, UK2A". 62 TTL chips.
1 50-pin connector with cable to what appears to be an interface
board (#3 below).
3) 8" by 10" board connected to Plessey board above. 2 50-pin connec-
tors on top. Etched with "C-FTR", "FDD-FTR", "FTR-FTR". 12 26LS31
& 32 chips, 10 TTL. Instead of card-edge fingers, has 2 3-level
male 3x32 pin AMP3485 connectors which plug into corresponding
female receptacles in BA11-K box (one group of hex slots replaced
with these).
Any help identifying these boards is appreciated. Doubt I'll ever use
them, but nice to know what they might be!
BTW - Posted this inquiry to comp.sys.dec & alt.sys.pdp11 awhile back
so it may look familiar.
Thanks,
Jason Brady jrbrady(a)mindspring.com Lynnwood, WA
Well.. amplifying what Sellam has written... the very first
SoCal CompuCrawl is in the history books.
It takes up about two sentences. ;}
The Gathering was small but intense... we had big fun, tho. I
gave away some lonely equipment to a Good Home, and we played with
some of my Geek Toys. I got a cool t-shirt with 'GEEK' emblazoned
boldly for all to see and snicker at. Marvin behaved himself for the
most part, and law enforcement assistance was thankfully not
required at any time during the entire soiree.
Since there were several of Us who apparently had to cancel at the
last minute, I am strongly considering having another next month,
instead of next quarter (september) as I had originally planned.
Also, various folks mentioned to me that logistics and/or
transportation issues affected their participation. Anyone needing
a ride to-from should contact me directly and we'll sort it out.
So again: if there is any interest between now and the next SoCal
TRW swap meet, on the last Saturday of May (the 29th? 30th?) from
local and visiting Listmembers, I will again hold a Vintage Computer
open house after the TRW swapmeet and post-swap Brunch, and
thereafter, quarterly.
Mark Your Calendars! (Use spray paint this time)
Cheers
John
I recently acquired a PCjr with a bunch of software. Machine's very clean.
I'm not really that interested in playing with this beast. Should I sit on
it as an investment? Is it worth anything now? Dnyone interested?
Thanks
P Manney
Is it illegal to yell "Movie!" in a fire station?
Thousands of discounted photo items at http://www.hmcltd.net/pgphoto
Every two years at this time the University of Queensland Alumni Association
holds a large sale of old books donated by individuals plus library
discards. I've found some good collectables there in the past, such as old
manuals, but this time (today) it took me five minutes to just find where
the computer books were - instead of a full trestle table top as in previous
years, there was just 4 inches of space reserved for them - maybe 20 books
in a hall of many many thousands.
I found the lady in charge and asked what had happened to them? She said "we
kept any computer books dated in the 50's or 60's (I didn't find any), and
anything fairly recent, but all donations from the 70's and 80's went out."
I asked "Did you send them to one of the charities to sell at their
bookfests?". Her response "oh no, they just go straight to the shredder! -
we can't get rid of them otherwise."
And sadly, I suspect she was correct. Besides the odd character like me
looking for manuals for long gone models, most of the stuff that went out
for sale was rubbish to 99.99+% of people and stayed on the table at the end
of the day. But I sure wish she had at least given me the chance to look
through that stuff before it hit the shredder.
The good news was that I found amongst the "sets" (encyclopedias etc) a full
set (I think, 22 volumes anyway) of the Time-Life series Understanding
Computers. Lots of good computer history and pictures - but I would be
interested if anyone has any criticism of the facts presented in any of the
articles in that series - they seem authoritative enough, but then some of
the people on this list know more than the usual sources that Time-Life
writers would have used.
Phil
in Brisbane, Australia.
Yesterday, at the KS10 move, I came away with two IBM PCs, but I
don't know enough about them to know if they are the AT or XT
models... they both have a 5.25" floppy and a hard drive, and
both have color monitors.
They are both desktop boxes... the monitors were sitting on top
of them.
So, how do I tell...
Megan Gentry
Former RT-11 Developer
+--------------------------------+-------------------------------------+
| Megan Gentry, EMT/B, PP-ASEL | Internet (work): gentry!zk3.dec.com |
| Unix Support Engineering Group | (home): mbg!world.std.com |
| Compaq Computer Corporation | addresses need '@' in place of '!' |
| 110 Spitbrook Rd. ZK03-2/T43 | URL: http://world.std.com/~mbg/ |
| Nashua, NH 03062 | "pdp-11 programmer - some assembler |
| (603) 884 1055 | required." - mbg |
+--------------------------------+-------------------------------------+
Hum.... Thanks for the tip on the seller! My M series is sick, so I was just
getting ready to fire off an email asking what cards were in the memory
backplane.... with a record like that, I don't think I'll bother (now if it
was a 7900A drive, I'd forge ahead anyways <grin>)!
Jay West
>> Hey, Sallam, couldn't this power thing be a good addition for
>> VCF 3.0? A speach about how to operate Eq. from a different
>> country (and power system) in an acceptable and safe fashion ?
>> Maybe if Philip and me (possible with a thirs, US guy) team up
>> to give an outline of the different circumstances to remember
>> when using foreign (old) computers ? There might be some need.
>
> Yes, I think this would make for a great workshop. I expect more people
> to start trading computers across the world and this will make for a very
> relevant discussion.
I think it's an excellent idea. In fact I have long thought a computer-buff's
guide to power electrics (the mains) would be worth writing.
But I doubt I'll manage VCF 3 this year. A holiday in CA is not something I do
every year, alas...
Philip.
>2. Phase.
>
>As I understand it the usual practice in the US is take _either_ a phase
and
>earth (neutral) _or_ two phases of the HV supply and feed a single phase
>transformer from this. The LV side of the transformer is (say) 240V with a
>centre tap. The centre tap is earthed and provides the neutral connection,
the
>outer two taps are then both hot at 120V, 180 degrees apart. This is true
_even
>if_ the primary (HV winding) is connected between two phases of the HV
3-phase
>system.
Close but not quite right. For single phase installations the power company
supplies 2 hots and neutral. This is a center tapped secondary and the
neutral is earthed at the service entrance. The primary of this transformer
is fed from only 1 high voltage phase.
>In the UK the usual practice is to connect all 3 phases of the HV (almost
>invariably 11kV phase to phase) to a delta-star 3-phase transformer. The
>secondary, the star-connected winding provides 3 phases and neutral.
Neutral is
>earthed at the transformer. Protective earth can be provided by _either_ a
>separate wire from the main earth at the transformer _or_ an earthing
electrode
>at each customer's site _or_ the neutral is earthed at a large number of
points
>on the system and the customer's protective earth is bonded to neutral at
the
>point of entry of the supply. In all cases the customer sees 240V line to
>neutral; if he gets more than one line (hot) connection, they will be 120
>degrees apart.
The delta-star is the same but with 120 phase to neutral and 208 phase to
phase. In the UK it is the same but 240 phase to neutral and 416 phase to
phase.
You can also commonly find 480 3 phase delta- star 277 phase to neutral.
This is then used for lighting (277 florescent is common) and large loads
like air conditioning. In these installations the customer has to provide
their own transformer to 208/120.
>In remote locations, only 2 phases of the 11kV system are taken to the
site.
>Small loads get a single phase 11kV/250V transformer with one end of the LV
>earthed; larger loads get a single phase 11kV/500V transformer with a
centre tap
>earthed. Some farm equipment (I am told - I have never seen this) is rated
for
>480V single phase.
I don't think this is avail. in the US.
>
>It is very unusual for a domestic installation to get more than one phase
and
>neutral. But 3-phase can be done - the supply company don't mind putting
it in
>if they think you'll buy a lot of electricity!
They will here also and I checked into getting it here but I am a few miles
>from the closest point that 3 phase is available for distribution. I would
either have to guarentee a large $ per month usage or pay them to add the
additional lines. Over $10,000 was mentioned.
Dan
Hi all,
I read a web page somewhere that indicated DEC put in the public domain
all the documentation they no longer publish.
Is this true? Can anyone point me back to the original web page?
Thanks,
clint
<Ok after spending much of the weekend trying to get my core driver working
<and feeling really good about having all the parts I needed in my spares
<box, I realized I had built half of an h-bridge. Since I had already
<designed a really nice MOSFET based h-bridge that could switch 10 - 15 amp
<for my robots I slapped my head and went "Doh!"
;) that will do.
<Anyway, so I wired up my #2 nut with sense wire to the h-bridge and start
<slapping current back and forth through my nuts. :-) Seriously though when
<viewed on 'scope it looks something like:
<
< +--+
< | |
<Ch1 -+ +----+ +-----
< | |
< +--+
< +--+
<Ch2 -+ +----+ +-----
< +--+
Transformer action prior to saturation.
<UNTIL you get to about 7.5 amps or so, and then it looks like:
No you know what nuts dont work...
< +--+
< | |
<Ch1 -+ +----+ +-----
< | |
< +--+
< +--+
<Ch2 ---+ +----+ +-----
< +--+
<
<So I stared at it a bit and the little bulb went on between my ears.
<
<The first pulse "writes" a zero to the core, if the core is either already
<magnetized with a zero, or has nothing in it, then the sense line sees the
<deta-B (change in magnetic field) and a current is induced in the wire.
<When the second pulse comes along it "writes" a one into the core, same
<effect on the sense wire. The clever part comes when your "write" a zero t
<a core that has a one already written to it.
Core is one of the few DESTRCUTIVE READ memories. You have to try and flip
it to see if it flips, if it does you had a (one or zero) and if didn't
you have a (zero or one).
Designing circuits the transformer and the "bistable" properties makes for
interesting logic.
<In this case the current in the wire induces its standard magnetic field,
<but that field is _cancelled_ by the field already in the core, thus for a
<period of time the sense line sees no change in magnetic flux, and so no
<current is induced. Then however the core switches to 0 and the sense wire
<sees that change in flux and out comes the induced pulse now delayed from
<the initial point by a time controlled by how long it took to saturate the
<core and switch it.
Yep. Watching that spring snap in interesting on a scope. Those nuts are
slow too! Try a bunch of other materials now that your set up...
<The gap between the pulse start and the sense pulse is used to tell whethe
<or not the core had a 1 in it. Now in the DEC design what happens after th
<read pulse (which is really a "write zeros" pulse, is they take the data
<they just read and re write with the write ones pulse. However this time
<since the sense lines aren't needed to figure out what the cores had in
<them, they use them for "inhibit" currents.
They used seperate wires (four wire cores) in some cases as it was easier
that all that switching.
<--------------------------
<Cool stuff, now it raises some new questions:
< 1) Do you want your pulses to be long enough to switch the
< core exactly, or longer? (eg does writing a zero just cancel
< a one or does it cancel the one and write a zero in its place?)
I forget.
< 2) Why not just gate the write one current pulse? That would save
< on the inhibit current stuff.
well you have to know what your writing back and to do that you have to
read it first. Hence the common write after read cycle on many machines
>from the era of core.
< 3) What properties of a material make it easier to switch at lower
< currents? I don't want to build a core plane with nuts if I need
< 8 amps to switch them.
Good magnetic conductors that hold their magnetizm. Some steels, ferrites,
cobalt alloys, alnico, a few rare earths. Try some of those ferrite beads
used for bypassing in RF work.
Allison
<OK, how about it. Put a ring of compasses around the wire with needles str
<enough magnetised that they will stay pointing N-S around the ring regardle
<the Earth's field.
<
<Can you then flip them with a current? A very good visual demonstration of
<core works!
Yep, That would be good to watch but that's really a demo of the fields
around conductors (imporant building block).
Allison
Hi,
I was about to send this just to ccauction list, but I realized that some
ClassicCmp readers might not read ccauction ... and they might
have an interest.
In a rather misleading title:
"antique Altair-like HP-1000 M-series computer"
dschambe(a)uiuc.edu is selling a partially gutted HP 1000 computer.
http://cgi.ebay.com/aw-cgi/eBayISAPI.dll?ViewItem&item=95719221
This seller has consistently refused to respond to my email about
two items that I got for low bids on prior auctions...so I have never
been able to finalize the purchase.
If anyone from this list does bid on the HP 1000, and wins, please
encourage this guy to honor his *existing* committments before
sending him money!
thanks!
sieler(a)allegro.com
Core memory, the saga continues.
Ok after spending much of the weekend trying to get my core driver working,
and feeling really good about having all the parts I needed in my spares
box, I realized I had built half of an h-bridge. Since I had already
designed a really nice MOSFET based h-bridge that could switch 10 - 15 amps
for my robots I slapped my head and went "Doh!"
Anyway, so I wired up my #2 nut with sense wire to the h-bridge and start
slapping current back and forth through my nuts. :-) Seriously though when
viewed on 'scope it looks something like:
+--+
| |
Ch1 -+ +----+ +-----
| |
+--+
+--+
Ch2 -+ +----+ +-----
+--+
UNTIL you get to about 7.5 amps or so, and then it looks like:
+--+
| |
Ch1 -+ +----+ +-----
| |
+--+
+--+
Ch2 ---+ +----+ +-----
+--+
So I stared at it a bit and the little bulb went on between my ears.
The first pulse "writes" a zero to the core, if the core is either already
magnetized with a zero, or has nothing in it, then the sense line sees the
deta-B (change in magnetic field) and a current is induced in the wire.
When the second pulse comes along it "writes" a one into the core, same
effect on the sense wire. The clever part comes when your "write" a zero to
a core that has a one already written to it.
In this case the current in the wire induces its standard magnetic field,
but that field is _cancelled_ by the field already in the core, thus for a
period of time the sense line sees no change in magnetic flux, and so no
current is induced. Then however the core switches to 0 and the sense wire
sees that change in flux and out comes the induced pulse now delayed from
the initial point by a time controlled by how long it took to saturate the
core and switch it.
The gap between the pulse start and the sense pulse is used to tell whether
or not the core had a 1 in it. Now in the DEC design what happens after the
read pulse (which is really a "write zeros" pulse, is they take the data
they just read and re write with the write ones pulse. However this time
since the sense lines aren't needed to figure out what the cores had in
them, they use them for "inhibit" currents.
Remembering that the cores were all written to zero by the 'read' when the
write 'ones' pulse comes along you don't want it writing cores that you
want to keep zero (they had zero before). So a current that is in opposite
direction of the write current is sent down the sense lines where zeros
should be kept. The magnetic field generated by these "inhibit" currents
cancel the magnetic field created by the "write ones" current and thus
prevents those cores with a 'zero' in them from being written to '1'.
--------------------------
Cool stuff, now it raises some new questions:
1) Do you want your pulses to be long enough to switch the
core exactly, or longer? (eg does writing a zero just cancel
a one or does it cancel the one and write a zero in its place?)
2) Why not just gate the write one current pulse? That would save
on the inhibit current stuff.
3) What properties of a material make it easier to switch at lower
currents? I don't want to build a core plane with nuts if I need
8 amps to switch them.
--Chuck McManis
PLEASE REPLY DIRECTLY TO THE AUTHOR OF THE ORIGINAL MESSAGE.
>Reply-To: <kenp(a)trlab.com>
>From: "Ken Peck" <kenp(a)trlab.com>
>To: <kstumpf(a)unusual.on.ca>
>Subject: Computer Hardware for Museum
>Date: Mon, 26 Apr 1999 16:28:02 -0400
>X-MSMail-Priority: Normal
>Importance: Normal
>X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3
>X-UIDL: e7780be67b36c9d8688e16fdc0bca942
>
>Kevin,
>
>There is a Vax 6500 in Minneapolis,
>Minnesota that will be de-installed in June. I thought perhaps there might
>be some interest in the historical value of it for some collector or museum.
>If you or someone you know might be interested, please let contact me.
>
>Regards,
>
>Ken Peck
>Total Renal Laboratories, Inc.
>1991 Industrial Dr.
>Deland, Fl. 32724
>800.604.5227
>
>
>
----------------------------------------------------------------------------
-------------------------------
Kevin Stumpf * Unusual systems * www.unusual.on.ca
+1.519.744.2900 * EST/EDT GMT - 5
Collector - Commercial Mainframes & Minicomputers from
the 50s, 60s, & 70s and control panels and consoles.
Author & Publisher - A Guide to Collecting Computers &
Computer Collectibles * ISBN 0-9684244-0-6
.
The previous comment should have made it obvious it was NOT within the reach
of the "average" American. First of all, it was over a month's pay for the
average American, it was equivalent to six months' groceries for a family of
four, and you could get a refrigerator or a washer, neither of which were
routine discretionary expenditures for the "average" American of that time.
That was during and immediately after the Korean war, when a 4-bedroom house
on a 1/4-acre lot cost $4600. That same house, now, in California would
cost you $4600 a month to rent. People's attitudes about what's important
enough to spend your money on have changed considerably.
$300 was not an expenditure an "average" American would consider lightly in
1952. That was the year I came to this country. There was an election
between Adlai E. Stevenson (Democrat) and Dwight D. Eisenhower (Republican).
It was BEFORE the first test of a hydrogen bomb.
People weren't crazy then as they are now . . . and all the loose nuts
hadn't yet learned to run to California.
Dick
-----Original Message-----
From: Sellam Ismail <dastar(a)ncal.verio.com>
To: Discussion re-collecting of classic computers
<classiccmp(a)u.washington.edu>
Date: Thursday, April 22, 1999 10:16 PM
Subject: Re: The "FIRST PC" and personal timelines (Was: And what were
the80s
>On Thu, 22 Apr 1999, Richard Erlacher wrote:
>
>> No, what's relevant isn't the technology and its state of maturity, but
the
>> comparison of the relative value of the numbers. Today, it's just
assumed
>> that if you buy an item for $300 and it subsequently breaks, you shrug
your
>> shoulders and throw it away. Back in the '50's, not many people were
silly
>> enough to do that.
>
>So what? $300, even back in the 50s, was still realistically within the
>price range of the average American. A multi-million dollar mainframe was
>not. $300 vs $$$millions is a significant difference.
>
>Sellam Alternate e-mail:
dastar(a)siconic.com
>---------------------------------------------------------------------------
---
>Don't rub the lamp if you don't want the genie to come out.
>
> Coming this October 2-3: Vintage Computer Festival 3.0!
> See http://www.vintage.org/vcf for details!
> [Last web site update: 04/03/99]
>