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.