At 12:17 PM 6/20/03 -0600, you wrote:
>AARGGH!
>
>Read Ethan's posts. He can NOT use ANY ISA sound cards, because the
computer does not have any ISA slots. Period.
>
>So, can anyone answer Ethan's question about how to get a PCI sound card
to work with a ca. 1994 MS-DOS game?
What about using a PC emulator? I run DOS inside Windows using Virtual PC
and sound works, though it does skip in some games.
There are other PC emulators that I haven't tried yet. Bochs and DOSbox
comes to mind. DOSbox may be the better one to try as it's freeware (as
far as I know) and is designed specifically to run DOS games on Windows
PCs. A known limitation is that it currently does not support 32 bit
protected mode, but for wolf 3d and other pre DOS4GW games this shouldn't
be a problem. I'll get around to trying it one of these days.
If the 2 cards will coexist or he's willing to replace his current card it
may be worth looking for a SB PCI64. I use one and compatibility with
older software is usually pretty good.
> Here are the challenges I see:
> You need to scan the PCI bus for the card.
> You need to persuade the OS to let you access the hardware directly.
I was going to do this under OS9, since I already have code to do the
device tree scanning, and there isn't a problem touching hardware directly :-)
>> Flamingo DEC 3000 Model 500 Home...won't boot. ... had DEC UNIX
.
> OK. I *think* Ultrix was the only OS commercially available (not sure
> about the later product named "Digital Unix" that was formerly OSF/1)
Ultrix was never commercially available on Alpha hardware, AFAIK. As
Eric Dittman pointed out, VMS was available in addition to Digital Unix.
Ultrix was based on 4BSD; Digital Unix was based on OSF/1, one of
the less successful offerings from the very misleadingly named (in
today's context) Open Software Foundation. While their Motif GUI was
widespread, OSF/1 was not - in fact it's a good trivia question to ask
who aside from DEC ever shipped it. (Intel Paragon. AIX/ESA? Encore?)
Anyway, I checked and I don't have docs for this model. But just
yesterday I dragged out my 3000/300LX and had to reseat the memory
before the machine would behave...
Good luck,
--Steve.
smj(at)spamfree.crash.com (lose spamfree to get through, m'kay?)
Hi, Fred --
Searching all over the place, used Google, and came up with your name!!
I have a Casio CFX-400 that has gone through 4 watch cases -- it started
out with the silver case and was replaced 2 times, then about a year and
half ago I tried the same source as the other 2 times and they were sold
out with no place to go. I don't remember how I did it, but I DID find a
source in the mid-West that had ONE more case left and it was the less
expensive looking black plastic case -- I'LL TAKE IT, I screamed into
the phone!!! Doesn't matter how much it costs!!!
Well, now that black case has finally given up the ghost where the pins
of the band attach to the case itself -- in fact, from stress, it has
cracked and broken three times already in the same corner, and I've
managed to fix it with superglue and once with epoxy (luckily I was able
to find the small black plastic piece that broke off) -- but today it
broke again, in a NEW spot, and the small piece that broke off is GONE,
KAPUT, LOST, never to be seen again -- in a forest of dirt, rocks, pine
leaves, pine cones, and just plain STUFF -- the piece that came off is
probably less than an 1/8 inch in size, but IT was what was holding the
pin into the hole!!
I was wondering if you have ANY idea where I might find another case --
I've searched before with very little luck -- seems like this watch is
definitely a dying breed, and it was one of their BEST!!!
Thanks in advance for any info you might have :-)
Stan Glaser
stantstk(a)pacbell.net
I've hacked together a 2.11 BSD C program (nothing special, should work
on other *nixen) that takes a .tap tape file and spits it onto a real
tape. I've tested it with both a TK50 and a TS05 tape drive. It even
successfully wrote a bootable TK50 format XXDP 2.5 tape. I'm going to
be cleaning up the code and posting it on the web, but for those who
can't wait, here is the raw code. It is left as an exercise to the
reader to figure out where my MUA breaks the source code lines.
------------ Cut Here --------------------
/* detap.c - 2003 by Christopher L McNabb */
#include <stdio.h>
#include <strings.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/file.h>
#include <sys/inode.h>
#include <sys/ioctl.h>
#include <sys/mtio.h>
main(argc, argv)
int argc;
char *argv[];
{
int infile,outfile,ctr;
long int offset;
long int records=1;
long int filecnt=1;
long int reclen;
long int reclen2;
void* buffer;
struct mtop tapeeof,taperew;
ctr = 0;
taperew.mt_op = MTREW;
taperew.mt_count = 1;
tapeeof.mt_op = MTWEOF;
tapeeof.mt_count = 1;
if(argc < 3)
{
printf("Usage: %s infile outdev\n",argv[0]);
exit(-1);
}
infile=open(argv[1],O_RDONLY);
if(infile < 0)
{
printf("Could not open %s\n",argv[1]);
exit(-1);
}
outfile=open(argv[2],O_CREAT | O_RDWR | O_TRUNC,IREAD | IWRITE);
if(outfile < 0)
{
printf("Could not open %s\n",argv[2]);
exit(-1);
}
printf("Rewinding Tape\n");
if( 0 > ioctl(outfile,MTIOCTOP,&taperew))
{
printf("\nMTIOCOP REW ERROR\n");
exit(-1);
}
offset = 0;
read(infile,&reclen,4);
while(1)
{
ctr ++;
if(reclen == 0)
{
filecnt++;
if(0 > ioctl(outfile,MTIOCTOP,&tapeeof))
{
printf("\nMTIOCTOP EOF ERR\n");
exit(-1);
}
read(infile,&reclen,4);
if(reclen == 0)
{
printf("\nEnd of Tape\n");
close(outfile);
ioctl(outfile,MTIOCTOP,&taperew);
break;
}
records=1;
continue;
}
buffer = malloc(reclen);
read(infile,buffer,reclen);
read(infile,&reclen2,4);
if(reclen != reclen2)
{
lseek(infile,-3,L_INCR);
read(infile,&reclen2,4);
if(reclen != reclen2)
{
printf("\nHdr1 and Hdr2 do not match\n");
exit(-1);
}
}
write(outfile,buffer,reclen);
fprintf(stdout,"Total Records: %6d File: %6ld Record: %6ld Record
Length: %6u\r",ctr,filecnt,records,reclen);
fflush(stdout);
free(buffer);
records++;
read(infile,&reclen,4);
}
close(infile);
close(outfile);
}
------------------- SNIP --------------------------
--
Christopher L McNabb
Operating Systems Analyst Email: cmcnabb(a)4mcnabb.net
Virginia Tech ICBM: 37.1356N 80.4272N
GMRS: WPSR255 ARS: N2UX Grid Sq: EM97SD
Ethan:
Regarding your message posted on classiccmp.org from last May, did you ever
find a taker for the Series/1 (or any parts thereof)? I've been trying to
find a copy of RPS (Realtime Programming System) from such a beast, but to
no avail (so far). Any info that you could provide would be appreciated.
Thanks,
Jim Storc
ITT A/CD
AARGGH!
Read Ethan's posts. He can NOT use ANY ISA sound cards, because the computer does not have any ISA slots. Period.
So, can anyone answer Ethan's question about how to get a PCI sound card to work with a ca. 1994 MS-DOS game?
-----Original Message-----
From: Paul Berger [mailto:sanepsycho@globaldialog.com]
Sent: Friday, June 20, 2003 12:45 PM
To: cctalk(a)classiccmp.org
Subject: RE: Sound for DOS games on modern hardware?
On Fri, 2003-06-20 at 03:05, Ethan Dicks wrote:
> --- G Manuel <gmanuel(a)gmconsulting.net> wrote:
> > Have you considered just running 2 sound cards in the system.
>
> Two PCI sound cards? How does that help?
Actually an ISA sound card and PCI one will usually co-exist. The trick
is to get a non-pnp ISA one that you can set to the classic settings.
Easiest solution is to do what has been suggested, setup a separate
system just designed to play classic DOS sutff. I have a 486DX-2 with a
good ET-4000 based video card and a SoundBlaster 2 for the sound. I
have a couple non-PnP SoundBlaster 16's that I'm holding onto for a
higer end system I'm planning on building for later games.
Paul
>
> -ethan
Several things happening on the classiccmp server front....
1) I'm looking into cleaning up the old mohnarc list archives, and
integrating them into the current mailman archives. This would also include
filling in the couple of missing months as well as scrubbing the email
addresses from the old archives. The old archives are currently offline,
pending me completing this task. I am going to try and put in a search
function as well, and MAYBE a thread view.
2) I'm also looking into upgrading the mailman list software to the latest
stable version. This has a whole bunch of new features - most for list
admins, but a decent amount of new user features as well. See list.org and
the 2.1 release for specifics.
3) One of the features in the new mailman is the introduction of the
isolated list moderator role. Right now there is just the list owner, and
the subscribers. To approve posts on a moderated list (cctech), or posts
>from non members to a private list (cctalk), the list owner has to go in and
do this on each individual post (web based). The screens that come up for
this also include list configuration items that a list moderator only
shouldn't be able to change. With the new software, since there is a list
moderator type user, that means I can solicit responsible people from the
list to help moderate posts, without giving them access to system wide list
configuration. If anyone would like to volunteer to be a list moderator, I'd
like to get a few people to help after I get the new software installed. You
don't need to know anything about unix or mailman, you just have to be able
to use a web browser and look at each post and click "accept, discard,
etc.". Ideally I'd like to get a few people that are spread across different
time zones who are willing to do this once a day. If several people do this,
the flow of posts requiring moderation should be a lot quicker. I am
guessing that if we have maybe 3 moderators, it wouldn't take each person
more than 5-10 minutes a day, or every other day. If interested, contact me
off-list. The new version of mailman has some new spam filters. Spam is
already caught for moderation, so these spam features would just make it
less work for the moderator as to the number of posts to discard. If this
works really well, I may not need additional moderators.
4) The server hosting the list has become... ermmm "cluttered". I want to
reinstall the OS from scratch and everything along with it. This is
partially to get current on all the packages used on the server (read:
security reasons), and partly because the machine is just cluttered up. Yes,
all the current archives and such will be maintained across the install of
course. This DOES mean that the list would be totally down when I swap the
drives, perhaps for 20 minutes. Of course I'll let the list know in advance
when this is to be done.
5) The server is starting to swap (not enough memory), and the main data
disk is about 60% full. When the server was purchased, going from memory
here... various listmembers contributed around $220 bucks, and I paid about
$200 out of my own pocket to cover the box. I would like to definitely
upgrade the memory to 512mb, this will cost somewhere in the neighborhood of
$120 (maybe $20, researching). I'm also thinking about upgrading the data
drive from 20gb to 170gb. This would cost about $99 bucks. Would anyone be
interested in helping out with donations towards these? Either cash or the
requisite hardware. Let me know off-list if so. Don't just go straight to
paypal, I need to research a little further if the drive is required. I'll
let the list know my findings then. Part of the reason for considering more
disk is that the one there is a bit over half full, but most of it is
because I want to mirror a large number of classic computer related files
>from other locations. And yes, the server that hosts the list is completely
dedicated to classiccmp stuff, nothing else is on it.
6) Finally, I've got some ideas for things I want to do to the classiccmp
website. I'm an admin, not a web developer, so I'm curious if there is
anyone on the list who is willing to do specific changes to the
classiccmp.org website. Most of the things I want to put there need to be
done in PHP and possibly mySQL so being familiar with those is important.
And finally, (putting on some body armor first), I'm in the mode of taking
requests - so if anyone has suggestions for things they'd like to see on the
website or changes to the list, please contact me OFF LIST. I'd love to hear
any ideas you all may have for improvements. Depending on the suggestion, I
may just implement it or reject it, or I may bring it to the list for
discussion/decision as to if it should be done.
Regards,
Jay West
I'm still in the market for any model of Ohio Scientific Challenger
computer.
If you've got one to sell or trade, please contact me directly.
Thanks!
--
Sellam Ismail Vintage Computer Festival
------------------------------------------------------------------------------
International Man of Intrigue and Danger http://www.vintage.org
* Old computing resources for business and academia at www.VintageTech.com *
--- Received from RVIKAR.BUBENIMI +420465451457 20/06/03 09.43
Dear David Ward,
I found on internet pages this msg. about data mini cassette
PHILIPS LDB4401.I am very interesting to buy it (about 20
pieces).Please send me price for 1 unit and if is possible send it
to our company to the Czech republic, if is valid your message
>from january 2003 (bellow).
http://www.classiccmp.org/pipermail/cctech/2003-January/007538.htm
l
Thank you for help - have a nice day
Milos Bubenicek
---- 20/06/03 09.43 ---- Sent to ---------------------------
-> cctech(a)classiccmp.org
Al Kossow wrote:
> > Can the PCI version of the Catweasel be used in a Mac?
>
> I'll be working on this in the next couple of weeks, starting
> from Tim's code.
Cool, let me know how it goes. Be sure to start with the latest version;
I just released v3.2 yesterday.
Here are the challenges I see:
- You need to scan the PCI bus for the card. I have two sets of
routines in the code for that, one that uses an interface provided by
Linux, one that calls into the PCI BIOS for use in the MS-DOS version of
the tools. You'll probably need a third set for the BSD-based MacOS X.
Hopefully it provides such routines.
- You need to persuade the OS to let you access the hardware directly.
If you can't do that, you'll need to restructure things so that the code
that accesses the hardware is properly isolated in a device driver.
- If there's too much else running on the machine, a couple of places
where I spin waiting for something to happen may miss the event. This
probably won't be a problem, especially if you use the default index
hole to index hole reading mode, which waits for the index hole in
hardware.
Once you're done I'd like to look at folding your changes into my
version.
--
Tim Mann tim(a)tim-mann.org http://www.tim-mann.org/
-----Forwarded Message-----
> From: JOHN MCCANCE <john.mccance(a)verizon.net>
> just took a look at the classiccmp site and found the attached on cctech.
> since i am not a member yet, could i prevail upon you to e-mail this
> guy and tell him that i have one kit of what he is looking for.
> complete with rails, backplane edge connecter, front panel and lun
> plug cable, and a lun plug. free to a friend. would prefer the us or
> canada. it is for a single drive such as the rf-70 series.
>
> thanks
>
> john
>
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>
> MicroVAX4000/5050A drive sledsMicroVAX4000/5050A drive sleds
> Greg Elkin mailto:cctech@classiccmp.org
> Sun May 4 01:29:24 2003
> Previous message: VCF Europa 4.0
> Next message: TRS-80 / System 80
> Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
>
> Just acquired a VAX 4000/505A (thanks Paul!) with no disks installed -
> anyone got the details for adding a raw DSSI disk to one of these
> things ; the chasis has a drive drive backplane at the top with 4
> edge connectors, into which a drive sled of some form slots in.
> I need to knock up whatever is on the sleds, drive LEDs & switches.
> Unless anyone has some excess sleds that I could liberate?...
>
> Ohhh, wonder if the MDS pils of docs has any details on this - off to
> look now :)
>
> ta
> greg
>
> Previous message: VCF Europa 4.0
> Next message: TRS-80 / System 80
> Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
>
>
--
Barry Skidmore <skidmore(a)worldvenue.org>
Hello,
I just acquired an HP 9100A in great condition with no signs of abuse but it
has a strange problem: although the numeric input keys and four functions
work fine, the transcendentals and other keys on the leftmost pad do
unexpected things.
When in the radian mode, many of the keys (like sin x, cos x, tan x, e^x)
perform an x<>y, but even more strangely, in the degree mode pressing these
same keys blanks the display and hangs the machine. After such a hang, when
I cycle power the display lights up with 9.999999999 99 in the x register.
Also, storage registers a, c, e, and f seem to work fine, but registers b
and d return bizarre values.
I've examined the machine thoroughly and find nothing obviously wrong or
missing. I've reseated all of the cards, but to no avail. When I enter the
program mode, pressing each key seems (on cursory inspection) to produce the
correct key code. Any ideas?
TIA,
Stan
Mr. Sharp,
I'm sorry I hadn't had a chance to do more research before my last
E-Mail, I found his full handle just tonight. I don't know if you know
what happened, but I'll let you know that you can look up his last name
@ www.click10.com <http://www.click10.com/> and get part of the story
if you don't already know.
Ted Hubbart
Hello,
re:Â Electron Microscopy Interface Boards
If anyone has the following parts and wants to sell, I have
someone inquiring.
Matrox PG-640A
R Bernstein Digital Instruments Digital Interface for Nanoscope II
R Benrstein Digital Insturments SKY320-P-04
Best Regards
Well things have slowed down somewhat and my only finds this week were the
following at $2.50 each.
Kaypro 1
Kaypro 2 (not the II)
Kaypro 4
Several mousepads for that collection and some new old stock commodore
buttons.
Hi
The older archives can be found with a web search. Once
found, it is simple to harvest email addresses. I don't
think I got this one yet but then, they all look the same.
For a while, you could just look for $20.5M but over
time they have varied the amount.
Dwight
>From: "Fred N. van Kempen" <waltje(a)pdp11.nl>
>
>This email address is ONLY used for cctalk. SO, someone is
>getting addresses from this list.
>
>Jay?
>
>--fred
>
>---------- Forwarded message ----------
>Date: Thu, 19 Jun 2003 07:29:42 -0700
>From: BASHER MOBUTU <bashermobutu(a)lycos.com>
>Reply-To: bashermobutu1(a)latinmail.com
>To: waltje(a)pdp11.nl
>Subject: ASSISTANCE NEEDED
>
>Good Day,
>
>You may be surprise to receive this email since you do not know me.
>I am the son of the late president of Democratic Republic Of Zaire, President
Mobutu Sese Seko, ( now The Republic of Congo, under the leadership of the son
of Mr. Laurent Kabila). I presume you are aware there is a financial dispute
between my family ( THEMOBUTUS ) and the present civilian Government. This is
based on what they believe as bad and corrupt governance on my late father's
part. May his soul rest in perfect peace. As you might have heard how a lot of
my father's bank account in Switzerland and North America have been frozen.
Following the above named reasons, I am soliciting for your humble and
confidential assistance to take custody of THIRTY Million United States Dollars
( US$30,000,000.00 ), also to front for me in the areas of business you desire
profitable.
>
><blah deleted, the usual crap>
Here is what I did:
Built a pure DOS rig that shares mouse, keyboard, and monitor with my P4
sytem via a KVM switch and patches into my Creative amp.
Believe it or not it took a long time to build the perfect DOS machine (for
me). My requirements were a system running Dos 6.2 with Dosshell and Win 3.1
that had sound and could let me play Red Storm Rising, the best game I have
ever played on the PC.
That machine is currently a Gateway 486DX66 with a SB32 AWE non plug and
play ISA sound card, 12xCDROM, 5.25 and 3.5" floppies, and HD. Gateway has
specs for the MB jumpers on all their older systems on their web site which
was a great help. This MB has PS2 connectors for the mouse and keyboard
which makes it simple to connect to the KVM switch. I also am using an ISA
Promise HD controller that allows the systems bios to use a HD greater then
1G. Built it for cheap from parts found on eBay.
The first system I built was a Pentium 233mmx with ISA and PCI slots but RSR
and some other older Dos games would not run and the plug and play stuff was
a nightmare for sound with DOS and Win3.1.
Hi - I am trying to install a Teac FD-55GFR 5 1/4" drive into a Pentium 200 mhz computer. Upon trying to read the drive I get a "General Failure Trying To Read Drive A" error message. I have the drive connected to the end of the ribbon cable, and the drive is designated as drive A. Also, I noticed that there are some switches (I forgot what they are called - upright posts where you couple a pair together using a U-shaped something or another) on the bottom of the drive. How should these switches be set? Also, could my problem be that I am not using a correct BIOS?
Thanks for all of your help.
Hi,
If someone is interrested in
RA92 (DEC SDI disk drive, 1.5 or 2 Gb)
HSC70 (Hierarchical Storage Controller based on a PDP 11/73 in 19"
cabinet, 1m high)
please contact me off list.
I'm located near Aachen (=Aken = Aix la chapelle)
Lothar
Fred Cisin wrote:
> I haven't heard from Mike Gingel
> in almost ten years; is anybody still in touch with him?
I'm not personally in touch with Mike Gingell, but he has a web page at
http://users.vnet.net/gingell/trs80/trs80.html with his email address on
it. You can also download Hypercross and some of Mike's other software
>from the page.
--
Tim Mann tim(a)tim-mann.org http://www.tim-mann.org/
Hi
I am looking for a comprehensive reference works for (non-PC-board) DEC hardware.
Things with the part number pattern like :
70-xxxxx-xx
10-xxxxx-xx
12-xxxxx-xx
90-xxxxx-xx
I'm sure you get the idea. If you could let me know about print, online, official DEC documents, or even DEC microfiche, I would be very grateful.
Cynde Moya, MLIS, PhD(c)
Archives Cataloguer
Vulcan Inc.
www.vulcan.com
Office Tel. 206-223-4901
Mobile Tel. 206.369.3205
Fax. 206-223-4207
I 've replaced them by the dozens in those early days - this are industry
standard fans, I think you can find them anywhere. Just make sure you have
ball bearings, no sleeves. They are a bit nosier (who cares in an 11/70) but
last much longer. In Europe we used Torin (UK factory) and Papst (Germany)
but they were all 220V versions of cause...
gr.
Luc
-----Original Message-----
From: cctech-admin(a)classiccmp.org [mailto:cctech-admin@classiccmp.org]On
Behalf Of Tom Uban
Sent: Tuesday, June 17, 2003 2:38 PM
To: cctalk(a)classiccmp.org
Subject: BA11-F boxer muffin fan source ?
Hello,
I am restoring an 11/70 with a BA11-F chassis which uses 17 4.7"x4.7"x1.5"
115v muffin fans (as they all do) and need to find a good source for
replacements. Does anyone have any suggestions?
--tnx
--tom
This email address is ONLY used for cctalk. SO, someone is
getting addresses from this list.
Jay?
--fred
---------- Forwarded message ----------
Date: Thu, 19 Jun 2003 07:29:42 -0700
From: BASHER MOBUTU <bashermobutu(a)lycos.com>
Reply-To: bashermobutu1(a)latinmail.com
To: waltje(a)pdp11.nl
Subject: ASSISTANCE NEEDED
Good Day,
You may be surprise to receive this email since you do not know me.
I am the son of the late president of Democratic Republic Of Zaire, President Mobutu Sese Seko, ( now The Republic of Congo, under the leadership of the son of Mr. Laurent Kabila). I presume you are aware there is a financial dispute between my family ( THEMOBUTUS ) and the present civilian Government. This is based on what they believe as bad and corrupt governance on my late father's part. May his soul rest in perfect peace. As you might have heard how a lot of my father's bank account in Switzerland and North America have been frozen. Following the above named reasons, I am soliciting for your humble and confidential assistance to take custody of THIRTY Million United States Dollars ( US$30,000,000.00 ), also to front for me in the areas of business you desire profitable.
<blah deleted, the usual crap>
Well, one of our local Goodwills has an IBM Displaywriter for sale in pieces.
The CPU & monitor is one lot and the dual 8" Floppy disk drive is another
lot. I could not find the keyboard or printer. they want $20 for each part if
anyone is interested. Shipping would be expensive.
If someone wants to look at it for themselves it is at the Centralia,
Washington Goodwill.
Too expensive by me. They may mark it down int a couple of weeks or so.
Paxton
Astoria, Oregon
Here's a guy selling a nice, complete TRS-80 (model 1) system as well as a
complete IBM PC. Both seem very nice:
http://www.visitcharlie.com/hallway/garagesale.asp
There is a link for e-mailing Charlie, the guy selling the stuff. Send
him your offers. I don't think he wants too much for these.
No affiliation...please e-mail Charlie.
--
Sellam Ismail Vintage Computer Festival
------------------------------------------------------------------------------
International Man of Intrigue and Danger http://www.vintage.org
* Old computing resources for business and academia at www.VintageTech.com *
I got ahold of an old, nonworking, Prime PT200 terminal. It just
displays a horizontal line in the center of the tube for a little bit,
then a blank screen. The lighted keys flash on powerup, and the
keyclick works. This leads me to believe that the the logic part of the
terminal is still functional, and the video portion has lost vertical
deflection. I took the back off and found a bunch of bulging, leaking
electrolytic capacitors. Most of the capacitors are pretty common
values that I was able to replace with some from my junk box, but there
are two capacitors on the power module/board thing that are so corroded
they are not even legible any more. I did my best to make out the
values, but only one has any numbers visible at all. If anyone has the
schematics, parts list, or a PT200 that still has good capacitors, I
need the values of capacitors C19 and C15 on the power module/board.
C19 _appears_ to be 1000uf @ 70v, but it's missing a couple numbers,
and very corroded, so I can't be certain. C15 is so badly corroded that
I can't even find any evidence of the original markings. Also, does
anyone have a manual or any information about this terminal? There are
two RJ-45 looking ports on the back labeled T1 and T2, and I don't know
what they do...
Thanks!
Ian Primus
ian_primus(a)yahoo.com
At 06:47 AM 6/19/03, you wrote:
>:-)
>
>Hmm, I've got some Ultima titles like that..
>
>Audio hardware is a fairly typical old software/modern
>hardware problem.
>
>FWIW, I've never had much luck w/ non-creative cards
>being used directly by programs that expect to
>talk to creative cards..
>
>However, if you've WinNT/2000/XP in the mix you
>might try this: http://ntvdm.cjb.net/
>
>(VMware is also a EXPENSIVE possiblity - but
>its sound drivers are not 100%)
I've never used VMware. I've have tried Virtual PC and found while it does
emulate the soundblaster the sound in most of the games that I have tried
skips. There's a trial version of Virtual PC on the connectix site if I
remember correctly.
There's also a DOSbox, freeware as far as I know and supposedly optimized
for running DOS games. I haven't got around to trying it myself yet. It
doesn't support protected mode yet, but as Wolf3D runs on a 286 that
shouldn't be a problem.
>
>You might also try to see if someone has ported
>Wolfenstein to some other platform you've access to.
>(The source was release quite some time ago)
>
>YMMV/etc, of course.
>
>David
>
>(Would a discussion of emulating 10yr old audio
>hardware be considered on-topic?)
Does anybody know how to fix the classic protable Epson HX-20?
This is my part of collections, I know it's work fine before. When I tried to
switch on the machine last week, (it was after 15 hrs charged), the LCD didn't
show up and there was no response on the contrast wheel. But I still tried to
key in something, like "SOUND 10,10" and "LPRINT A", there was a beep sound and
the text printed from the mini-printer. Then I plug in the AC adapter again
and tried to switch 'on and off' many times on the startup switcher, the LCD
worked again. At that time I thought the problem is solved.
After one day later, the problem happened again, I needed to switch on and off
many times to make the machine wake up. I am sure the machine is work on the
first switch, because the computer responded my key strokes but the LCD still
sleep.
Really want to know what's happened on this machine and how to check/fix it?
Thanks
Man
In a message dated 6/18/2003 3:39:12 PM Eastern Daylight Time,
teoz(a)neo.rr.com writes:
<< Fastest NUBUS video card I know of is the Radius Thunder IV 1600, good luck
finding one. Alot of that speed is from the built in DSP chips that
accelerate photoshop. I have the plain supermac thunder IV without the DSP
addon board and its not faster then the built in video on my Q950 for normal
video (the built in video doesnt use the nubus bus so its faster then just
about any addon board for normal video)
The fastest 68k upgrade to a nubus non PPC mac would be a Rocket 68040/40
(or maybe a 50) nubus card. >>
I have a Rocket card but never got it to work properly. I lucked out and was
able to download drivers for it, but the system would get flakey after the
rocket sound effect played.
>I have a MAC Performa 550. Somehow my son has crashed the hard drive to the
>point where the computer no longer thinks there is a hard drive.
>
>Does the recovery CD allow you to boot off the CD? I have a
>utilities diskette but it won't restore off the backup diskettes since the
>computer thinks there is no hard drive any longer.
The first thing is to get the machine booted with anything that has Disk
First Aid and Drive Setup on it (Disk Tools floppy, or a bootable CD). To
boot from the CD, put the CD in and hold down the C on the keyboard then
turn on the computer and keep holding C until it starts to boot. (make
sure caps lock isn't on as it only works with a lowercase C)
Then run Drive Setup and see if it sees the hard drive, if not, the drive
itself is toast, get a new drive. If it does see it, update the driver
(its in the menus). After updating the driver, reboot using your boot
disk NOT the hard drive. After the reboot, run Disk First Aid and attempt
a Repair on the hard drive.
After that, the drive still may or may not be bootable. If it still is
not bootable, try reinstalling the OS, that should restore it to bootable
state.
-chris
<http://www.mythtech.net>
I got this from a friend. Does anybody know the answer?
=================================
I have a MAC Performa 550. Somehow my son has crashed the hard drive to the
point where the computer no longer thinks there is a hard drive.
Does the recovery CD allow you to boot off the CD? I have a
utilities diskette but it won't restore off the backup diskettes since the
computer thinks there is no hard drive any longer.
=================================
Gene Ehrich
gene(a)ehrich.com
gehrich(a)tampabay.rr.com
John,
I found my original HP 1000 keys and they are marked 4T1427. The CAT99
keys may be for the back door of the cabinet. Many of the HP 1000s were
mounted in cabinents that had locking doors on the back. I don't know what
the key number was but I think they had round heads also. I do know they
were made of brass and I know that they were different from the FP keys. If
you don't need the FP keys I can use them. I've made copies but they're not
the same as the originals and aren't as nice.
Joe
>
> I have several HP 1000s and two original keys but I'm not sure what
you're asking. But yes the keys in all of the HP 1000s are interchangeable,
at least in the six or eight machines that I've tried. I don't have one
here but IIRC they are Corbin keys and they are brass with a round head.
FWIW I just got some keys made and it was a real hassle. I tried Home
Depot, Lowe's and a couple of othe large hardware places and they didn't
have any blanks of the same type. I finally went ot a small local hardware
store and they found some blanks made by another company (ILCO?) that they
could make keys from. The new keys have a trapazoid shaped head like that
usually used on house keys and they're nickel plated steel so they look
completely different from the original keys.
>
> The locks on the HP 1000 simply hold the front panel closed. But the
main power switch is located under the cover.
>
> If what you have ARE HP 1000 keys I could use them but it's probably
not worth the cost to ship them from the UK to Florida.
>
> Joe
>
>
>
>At 09:51 PM 6/6/03 +0100, you wrote:
>>Quick question for those people with HP 1000 machines and the like...
>>what are the front-panel keys like? Only I have a few discarded HP
>>keys here that are all alike:
>>
>> Corbin Cabinet Lock CAT99
>> Corbin 4T1427
>>
>>All the keys are brass. Are they for an HP front-panel lock of some
>>sort? If so, which?
>>
>>--
>>John Honniball
>>coredump(a)gifford.co.uk
In a message dated 6/18/2003 11:06:31 AM Eastern Daylight Time,
vance(a)neurotica.com writes:
<< I am looking for a PS/2 Ultimedia Audio Card. I want to use it in an
RS/6K. Anyone have an Ultimedia PS/2 they're not using and don't mind
giving up the card?
Peace... Sridhar >>
Never heard of it. You talking about the Audiovation or the M-APCA?
Last week I picked up a new cable tester. As a result I'm selling my old
one. It's a Cirris Signature 1000 and it comes with 17 different cable
adapters plus an AC adapter and two Cirris storage boxs for the adapters.
These are GREAT devices! They make testing and reverse engineering cables a
breeze. This one can test up to 128 different points (in .2 seconds!) and
can even print out a complete wire list that you can add to a note book for
a permanent record. If you've never used one, read the description at
www.cirris.com.
<http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=2539809546>
Joe
Hi,
i'm still trying to find a Z-8000 Trump Card ...
I asked Steve Ciarcia for some help, unfortunately he has thrown away all existing stuff :-(.
He mentioned, that Sweet Micro Systems (who manufactured the board) sold 500 - 1000 to
Nielsen ratings. I tried to get in contact with them, but this was not successful (i got no response
to my request).
Does anyone have connections to former Sweet Micro Systems or Nielsen ratings people, that could help me ?
Thanks Bernd
Bernd Kopriva Phone: ++49-7195-179452
Weilerstr. 24 E-Mail: bernd(a)kopriva.de
D-71397 Leutenbach
Germany
Hello Sellam,
Let me know what you need me to do and I'll take a shot at it. . .
Best regards,
Erik
> Hello Folks.
>
> We're entering Phase 2 of our Alpha testing of the new Vintage
Computer
> Marketplace. It took us a little bit longer than anticipated to get
the
> basic service rolling but everything is in place and running now. We
need
> a few more testers to help exercise the basic functionality before we
turn
> it up to Beta testing.
>
> If you're interested in helping to test out the service, please e-
mail me
> directly.
>
> Thanks!
>
> --
>
> Sellam Ismail Vintage Computer
Festival
> ----------------------------------------------------------------------
--------
> International Man of Intrigue and Danger
http://www.vintage.org
>
> * Old computing resources for business and academia at
www.VintageTech.com *
>
>
--
Saw this on the LEM Swap list, thought someone might be interested.
Contact them, not me.
---------------- Begin Forwarded Message ----------------
Date: 6/18/03 8:37 AM
Received: 6/18/03 9:24 AM
From: rminton(a)commscope.com
To: LEM Swap List, lem-swap(a)mail.maclaunch.com
5 MB Profile hard drive in good working order, works with Lisa (not Mac
XL's) or Apple II's with parallel cards.
$75 + shipping.
Thanks,
Randy
----------------- End Forwarded Message -----------------
-chris
<http://www.mythtech.net>
Hi, I had to look up a few words of your reply in the dictonary...
You can (or could) do that for your own equipment, but I can't imagine me
walking around
with grease tubes and mineral spirits in the computer rooms of those days.
Second, a fan costed about $10-$15 and a computer engineer about $80-$100
per hour.
Third, you could't take the risk - if the bloody thing went down again the
next 12 months, you smoked a huge cuban havana...
and at last, this things are supposed to be impedance protected, but after
being stalled for some time, more then once the windings were damaged...
this was perhaps less common on the 110V versions, but our european 220V's
had other behaviors.
This was not ebay stuff you bought for a few bucks, but $80.000 - $100.000
equipment.
Luc
-----Original Message-----
From: cctech-admin(a)classiccmp.org [mailto:cctech-admin@classiccmp.org]On
Behalf Of R. D. Davis
Sent: Tuesday, June 17, 2003 7:39 PM
To: cctalk(a)classiccmp.org
Subject: Re: BA11-F boxer muffin fan source ?
Quothe Luc Vande Velde, from writings of Tue, Jun 17, 2003 at 07:09:49PM
+0200:
> I 've replaced them by the dozens in those early days - this are industry
Why??? I thought that only clueless biz'driods and related idiots
replaced perfectly good repairable equipment. All that one needs to
do is disassemble the fans, clean them up, soak the old bearings/race
assembly in mineral spirits, apply new grease and then reassemble the
fans.
--
Copyright (C) 2003 R. D. Davis The difference between humans & other
animals:
All Rights Reserved an unnatural belief that we're above Nature &
rdd(a)rddavis.org 410-744-4900 her other creatures, using dogma to justify
such
http://www.rddavis.org beliefs and to justify much human cruelty.
I am looking for a PS/2 Ultimedia Audio Card. I want to use it in an
RS/6K. Anyone have an Ultimedia PS/2 they're not using and don't mind
giving up the card?
Peace... Sridhar
Hi all,
I do occasional volunteer work for a technology museum in Cambridge - one of
the things they're interested in doing (once some new storage is put in so that
things can be moved around) is putting on an exhibit showing the history of
computing in the Cambridge area.
At present I'm really after suggestions of machines to look out for (and
machines themselves if it's that or they go to the tip!) - other than Acorn,
Sinclair and Torch from personal experience I'm not sure who was really active
in this region, and know basically nothing of what went on in the 60's and 70's
around here. I expect some of you UK guys know the history of the British
computing scene pretty well though.
I already have plenty of Sinclair and Acorn machines (I picked up yet another
BBC Master along with a more modern A3020 and Risc PC only yesterday) but will
have to be on the lookout for other systems of local significance over the
coming weeks.
cheers
Jules
________________________________________________________________________
Want to chat instantly with your online friends? Get the FREE Yahoo!
Messenger http://uk.messenger.yahoo.com/
Hello Folks.
We're entering Phase 2 of our Alpha testing of the new Vintage Computer
Marketplace. It took us a little bit longer than anticipated to get the
basic service rolling but everything is in place and running now. We need
a few more testers to help exercise the basic functionality before we turn
it up to Beta testing.
If you're interested in helping to test out the service, please e-mail me
directly.
Thanks!
--
Sellam Ismail Vintage Computer Festival
------------------------------------------------------------------------------
International Man of Intrigue and Danger http://www.vintage.org
* Old computing resources for business and academia at www.VintageTech.com *
I've just uploaded technical manuals for the RL02 and
RL11 to www.spies.com/aek/pdf/dec. The RL02 manual
includes a description of the drive interface.
Hi
Well, some would consider what I've done to be
real bad while others might see the reason behind my
actions. I have an Olivetti M20. This is one of the rare
desk tops that was made with a Z8000 processor ( there
were a couple of s-100 boards as well ). I wanted to
be able to bring up CP/M-8000 on this machine. The
problem was that it didn't have enough memory. They sold
two versions of the memory boards, 32K and 128K. I
didn't think I'd ever see any 128K boards ( most everyone
I know that has one of these machines has the 32K boards ).
I did the unforgivable. I modified the boards to use
64K chips instead of the 16K chips. This required some cuts
and jumpers since the boards were almost the same ( power
planes are different ).
While I was reluctant to do these mods, I felt that
bringing this software alive was more important than
preserving the original condition of the machine. After
all, it is the software that completes the computer.
The hardware is just the means.
So shot me.
Dwight
I agree.
The whole historical significance of classic computers is the way they inspired tinkerer's everywhere.
When you see my Altair, with its maze of prototyped wire-wrap interfaces, the monitor made from a converted B&W TV set, and the homemade "light pen" -- it brings all of this history into perspective.
Never mind the fact that I haven't dared to power it up in years :-)
-Rob
-----Original Message-----
From: Vintage Computer Festival [mailto:vcf@siconic.com]
Sent: Tuesday, June 17, 2003 12:48 PM
To: cctalk(a)classiccmp.org
Subject: RE: Restoration: how far should it go??
On Tue, 17 Jun 2003, Feldman, Robert wrote:
> A greyer area is the following: I bought a Tan-case Osborne 1 early on.
> Later, I had it upgraded with the 52/80/104 column display option and
> double density disk controller. As a "collector", does one remove the
> upgrades and have an "original" O1 (and it was used in the original
> configuration for quite some time), or keep the mods and have a fuller
> representation of the product's lifetime? Personally, I would keep the
> mods.
Me too. They're part of its history. I don't see how the machine would
be better represented in its "factory" condition than in the condition it
was in when it was last used.
--
Sellam Ismail Vintage Computer Festival
------------------------------------------------------------------------------
International Man of Intrigue and Danger http://www.vintage.org
* Old computing resources for business and academia at www.VintageTech.com *
At 07:45 17/06/2003 -0600, Feldman, Robert wrote:
>I would also add that if the modification was simply board-swapping or
>chip-swapping (e.g., an overdirve processor in a PC), then I think that it
>would be more permissable to undo the swap. On the other hand, in general,
>I would leave in place a soldered modification. Indeed, such a mod might
>have been factory original, as I have seen a number of main boards with
>cut traces and hand-soldered wires snaking over the board. There will be
>times when the collector can not tell if the mod was "factory" or
>"aftermarket".
When I was an apprentice for Ferranti Computer Systems, I spent six months
in the Test Dept. Mostly post-production testing. Every board had a mod
level, and most mods were indeed cut tracks and hand soldered wires. We
also had to test equipment that was returned from the customer for new mods
to be applied. (so does that count as "aftermarket" or factory?)
Rob
I would also add that if the modification was simply board-swapping or chip-swapping (e.g., an overdirve processor in a PC), then I think that it would be more permissable to undo the swap. On the other hand, in general, I would leave in place a soldered modification. Indeed, such a mod might have been factory original, as I have seen a number of main boards with cut traces and hand-soldered wires snaking over the board. There will be times when the collector can not tell if the mod was "factory" or "aftermarket".
A greyer area is the following: I bought a Tan-case Osborne 1 early on. Later, I had it upgraded with the 52/80/104 column display option and double density disk controller. As a "collector", does one remove the upgrades and have an "original" O1 (and it was used in the original configuration for quite some time), or keep the mods and have a fuller representation of the product's lifetime? Personally, I would keep the mods.
Bob
-----Original Message-----
From: Vintage Computer Festival [mailto:vcf@siconic.com]
Sent: Monday, June 16, 2003 10:57 PM
To: cctalk(a)classiccmp.org
Subject: Re: Restoration: how far should it go??
On Mon, 16 Jun 2003, Tony Duell wrote:
> > I had my Otrona 8:16 upgraded from 256KB to 640KB RAM, so it now has
> > stacked chips. However, that was a mod done at the time (actually,
> > Otrona Advanced Systems had gone under by then, but it was a 3rd party
> > (Brown Enterprises) mod that was current with the machine. What Tony was
> > objecting to is a modern collector hot-rodding an old box by increasing
> > the RAM (or processor, or ...) in a way that would not have been done
> > contemporaneously with the machine.
>
> Related to that is what you should do if you find a modified machine --
> do you keep the modification, or return it to factory spec? There are
> plenty of arguments either way (e.g. 'The modification is part of the
> history of the machine and should be kept' .vs. 'The machine should be
> preserved as it was originally'). Personally, I am undecided on this.
> Sometimes I keep the modification (particularly if it's useful and
> doesn't adversely affect the operation and repairabilty of the machine),
> sometimes I remove it.
If you are merely a collector (I like to consider myself an "archivist") I
think the modification is part of the historical fabric of the machine,
and changing it would alter that history.
If you're just a hacker, and you intend to continue use of the machine,
then any change you make becomes part of the historical fabric of that
machine.
It just depends on how you look at it.
--
Sellam Ismail Vintage Computer Festival
------------------------------------------------------------------------------
International Man of Intrigue and Danger http://www.vintage.org
* Old computing resources for business and academia at www.VintageTech.com *
I think it's time to revisit the ever popular topic of scanning Microfiche. I'm in the market for a new scanner, and ran across the "Epson Perfection 3200 Photo" scanner. I was looking at it, because it's one of a very few Firewire scanners on the market. What really got me to thinking though, is the fact that it is a 3200x6400dpi scanner, and has a 4"x9" transparency adapter. This has me wondering if it wouldn't work for scanning Microfiche.
Does anyone have any thoughts on the subject?
Zane
--
--
| Zane H. Healy | UNIX Systems Administrator |
| healyzh(a)aracnet.com (primary) | OpenVMS Enthusiast |
| | Classic Computer Collector |
+----------------------------------+----------------------------+
| Empire of the Petal Throne and Traveller Role Playing, |
| PDP-10 Emulation and Zane's Computer Museum. |
| http://www.aracnet.com/~healyzh/ |
About the OIS140 system I am sure I have all the schematics (at least till
1981 - the year I left Wang)
About the terminal - I have only known the all-in-one versions (there were 2
models I think, one was 8080 based, the newer one Z80 based)
The problem might be to reproduce them - in those days schematics were real
blueprints - size at least A3 some even A2 (sorry but I can not translate
this to "other side of the ocean" format) in any case to large for my
scanner.
During the years they also colored pretty brown or gray, so I am afraid a
regular copy might be hard to read.
If I had the time I could redraw them in a schematic program but time is one
of the things I miss most in my life...
It was goo to see this old OIS140 back on your website - I haven't seen one
since I left Wang. If I could find one in Europe, it would be a pleasure to
start it up again.
I 'll try to find the floppy disks back - I had all system diagnostics,
games (you the good old cave...) and so on...
Luc Vande Velde
luc(a)e2t.be
-----Original Message-----
From: cctech-admin(a)classiccmp.org [mailto:cctech-admin@classiccmp.org]On
Behalf Of Jim Donoghue
Sent: Monday, June 16, 2003 2:07 PM
To: cctalk(a)classiccmp.org
Subject: RE: Wang Computer Systems/schematics
I've been trying to find schematics for some time now.. the only thing I
have managed to find so far are some VS-85 schematics. I have started an
OIS web site, you can see it at www.cass.net/~jdonoghu/wang.html
If you can find them, I'd be interested in them!
On Mon, 2003-06-16 at 03:14, Luc Vande Velde wrote:
> Hi, I ve been working at Wang in a previous life. Should be (or was) an
OIS
> specialist...
> I might have all schematics - software and so on somewhere.
> If you need them give al yell back and I 'll look for it
>
> Luc Vande Velde
> Belgium
>
--
Jim Donoghue
Smithy Co.
(734) 913-6700
Hi folks,
I tried alt.sys.pdp8, google, and AEK's site, but I can't for the life
of me find any schematics for the PDP-8/I's Extended Arithmetic Element.
Can anyone help out?
See http://www.parse.com/~pdp8/pdp8i/restore.html for the ongoing saga :-)
Cheers,
-RK
--
Robert Krten, PARSE Software Devices +1 613 599 8316.
Realtime Systems Architecture, Consulting and Training at www.parse.com
Looking for Digital Equipment Corp. PDP-1 through PDP-15 minicomputers!
I'm a bit surprised at the result of this auction:
http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&category=1247&item=2734334833
I suppose it makes sense that these things are getting harder to come by,
but I think the $603 top bid is a tad high.
The most interesting stuff didn't even get bids. Of course the Documation
card reader didn't get any hits with the US$2,700 starting bid, which is
no surprise.
Check out the results of the rest of the auctions here:
http://cgi6.ebay.com/ws/eBayISAPI.dll?MfcISAPICommand=ViewListedItems&useri…
--
Sellam Ismail Vintage Computer Festival
------------------------------------------------------------------------------
International Man of Intrigue and Danger http://www.vintage.org
* Old computing resources for business and academia at www.VintageTech.com *
I had my Otrona 8:16 upgraded from 256KB to 640KB RAM, so it now has stacked chips. However, that was a mod done at the time (actually, Otrona Advanced Systems had gone under by then, but it was a 3rd party (Brown Enterprises) mod that was current with the machine. What Tony was objecting to is a modern collector hot-rodding an old box by increasing the RAM (or processor, or ...) in a way that would not have been done contemporaneously with the machine.
-----Original Message-----
From: Jim Davis [mailto:jpdavis@gorge.net]
Sent: Sunday, June 15, 2003 2:13 AM
To: cctalk(a)classiccmp.org
Subject: Re: Restoration: how far should it go??
Eric Smith wrote:
>"jamesd" <jdickens(a)ameritech.net> wrote:
>
>
>>I see you have higher standards than IBM, for a while after the AT was
>>released they sold ram that was two chips piggy backed so they could get
>>more
>>ram on the board.
>>
>>
><snip>
>
>Both the CLCC on substrate and the factory-stacked DIPs were actually
>quite reliable. Until ZIPs, SIPPs, and DIMMs were invented, that was
>the highest packaging density in common usage for RAM.
>
>
>
I thought one DIP had an inverted CS, Though I might be wrong. I did the
stacked thing on my atari 400,
Stacked 8K chips to get 16K. But that was in 82 and the atari H/W
manuals are in the garage.
Jim Davis.
Yes I have both a Wang Professional Computer and a Wang WLTC. The Wang PC
has both a B&W and Color Monitor. The Color Monitor only functions with
Wang programs. The B&W monitor functions with both Wang and DOS
programs. It has been a long time since I have run the PC system but as I
recall the version of DOS it carries is 2.X. There are two 5 1/4 disk
drives and lots of disks. The WLTC has a built in thermal printer. Not
sure what version of DOS it carries but as I remember it is the same as the
PC. It has an external 5 1/4 floppy drive. The WLTC also comes with a
canvas carrying case.
David Tillson
Salt Lake City, UT
At 05:23 PM 6/12/2003 -0600, David Vohs wrote:
>Saw your post on CCMP. Do you have a Wang Professional Computer or a WLTC
>(Wang Lap Top Computer) in the lot? I'm intrested in acquiring either one
>of these machines.
>
>Keep me posted on this.
>
> > I have a number of Wang computers, printers, circuit boards, manuals,
> > software, disks, training manuals etc. that are taking up needed
> > space. The computers include a portable with a built in printer; a
> > desktop
> > system with a color monitor, and several OIS systems. The printers
> > include
> > 2 daisy wheels, a dot matrix and 2 laser systems (HP's with a Wang
> > label). Available for the cost of shipping from Salt Lake, Utah.
> >
> > David Tillson
> > dtillson(a)xmission.com
> >
>--
> David Vohs
> netsurfer_x1(a)fastmailbox.net
I have a number of Wang computers, printers, circuit boards, manuals,
software, disks, training manuals etc. that are taking up needed
space. The computers include a portable with a built in printer; a desktop
system with a color monitor, and several OIS systems. The printers include
2 daisy wheels, a dot matrix and 2 laser systems (HP's with a Wang
label). Available for the cost of shipping from Salt Lake, Utah.
David Tillson
dtillson(a)xmission.com
If anyone has a documentation set for the SMS 1000 PDP-11 chassis, please
contact me offline if you are willing to loan or sell me a copy of it for a
"reasonable" price. I am not looking for an item to be put under glass in a
museum - I need working documentation.
I bought one of these chassis's a while back (less docs) and can't use it
without some assistance. I don't even know what "style" of QBUS it has in it!
The chassis was "supposed" to come with the manuals, but... it didn't. It is
too heavy to ship it back to the seller; the total shipping cost both ways
cost about the same at the item did.
I'll pay $20 US for information to the FIRST person (by email received time &
date) to point me to a source for this documentation, that leads to my having
a copy in my hands. If that person also is an owner of the documentation
willing to provide me with a copy, I will pay them the $20 plus a reasonable
copying and shipping fee.
There are exclusions, to my bounty offer but will not affect anyone but the
original seller of the SMS 1000.
Stuart Johnson
I picked up a SS10 yesterday. It was missing it's power supply but had
a 24bit framebuffer a 10/100 S-Bus nic, MBus processor module, some ram
and a hard drive. Seemed like a restorable pizza box and since I don't
have a 10 I bought it. I got it home and the Sun p/n guide tells me
that a SS10 uses the same power supply as a SS5. I have a couple of
spares for my 5's so I got one out. There is no way it's going to fit
in the chassis. The SS10 chassis has a beveled cast ridge where the
power supply should slide into. Is this a real SS10 or was the label
switched? Was there two different versions of the 10 chassis or power
supply?
I'd like to trace it all out and get it working but for a $10
investment, I can salvage out the parts and still feel that I got a good
deal.
James
Hi Eric Josephson,
Thanks for the info on monitors and the kind offer of the HP 98789A!
Can you cantact me off list about this - my e-mail is
peterbrown10(a)hotmail.com
Cheers
Peter Brown
_________________________________________________________________
Stay in touch with absent friends - get MSN Messenger
http://www.msn.co.uk/messenger
In a message dated 6/16/2003 11:15:39 AM Eastern Daylight Time,
cb(a)mythtech.net writes:
<< I came across this plastic base thing for an IBM something.
It looks like a clip on PC base, maybe to stand a desktop case upright,
or maybe just a larger foot to a tower unit.
Its IBM part number 91F7591, FRU 92F0000.
>>
yup, that's for PS/2s. I can use it if no one else needs it.
Remember that UPS stands for United Package Smashers
Ive heard that they require enough packing to survive a 6 foot drop which is
what they probably do to every package just to make a point. I avoid using
them. I've always had good results from the USPS.
In a message dated 6/16/2003 10:21:45 AM Eastern Daylight Time,
jcwren(a)jcwren.com writes:
<< It's all very dependent on the store. I have one near me that I use,
since
the nearest Fedex and UPS counters are miles away. I have a good
relationship with the people there, and they understand how to pack most
items. Generally, I'll give a specification how I want it packed, and
they'll do exactly as I ask. They know to put tape over lables in case they
get wet (preventing running), triple taping bottoms, double taping edges,
etc. >>
>Looks like the stand for the IBM PS/2 model 77. I Paid money for
>mine..... they are really nice to have.
Are they worth something? Hard to find? Is this something I should try to
ebay?
-chris
<http://www.mythtech.net>
Trying to finish repairing a Tek (ne: Xerox) Phaser 350 printer, and while
I've got most of the major gremlins beaten down, there is still one fault
that I can't get sorted.
So... I was wondering if someone out there might have a copy of the
interactive diagnostics package (350diags.exe) and (hopefully) the pinout
of the 'service port'. It is supposed to be RS-232 but comes out on a
5-pin inline connector... (figures)
Thanks;
-jim
---
jimw(a)agora.rdrop.com
The Computer Garage - http://www.rdrop.com/~jimw
I recently received a bunch of Hilevel Technology Inc. cable
interfaces that you use between a development system and a
target system. The interfaces include:
DTI 16A
AI 201
RI 202 (x 2)
RI 202A
RI 204
AI 370
DT 370
If someone can use these, let me know, and I'll send them to
you for the cost of shipping/postage (probably $5 - $10).
Thanks,
Dave
--
David C. Jenner
djenner(a)earthlink.net
They are now called "The UPS Store" here in Chicago (at least). We thought that they were a UPS branch, so my wife recently went there to ship a rolled tapestry weaving (3' by 9" diameter, well boxed, but in a used box) that they made her rebox. The guy behind the counter was also a real jerk about it.
Bob
-----Original Message-----
From: Vintage Computer Festival [mailto:vcf@siconic.com]
Sent: Saturday, June 14, 2003 11:38 PM
To: cctalk(a)classiccmp.org
Subject: Re: OT: Rant about UPS...
<snip>
MBE folks are a bunch of monkeys. I've never received any packages that
were packed by them that didn't come crushed. They don't pack enough foam
in the box, and they don't understand basic packing techniques, especially
for heavy stuff.
The next person that sends me something packed by MBE is going to receive
the package back marked "refused".
--
Sellam Ismail Vintage Computer Festival
------------------------------------------------------------------------------
International Man of Intrigue and Danger http://www.vintage.org
* Old computing resources for business and academia at www.VintageTech.com *
Hi Joe,
I was having a quick play with an R332 9000 machine at the weekend and
noticed a couple of other 'interesting things' about it.
1. Further to my mail about the extra rear panel jumper leads required to
make this things work. It appears that the FDD mounted in the front panel
of the computer is linked to its own controller card that is in turn linked
to a rear panel HPIB connector. In order for the computer to see the FDD, a
short HPIB connector must be used to link the HPIB connector on the rear
panel of the computer (vertically orientated) and the HPIB connector on the
plug in CPU card.
2. On close inspection of the FDD controller card, it appears that there
are two disk connectors of different lengths (one is the FDD controller).
The disk connector is open - could this be a connector for a HDD? If so, it
doesn't look like an MFM connector - it looks much more like a regular IDE
connector. I've seen references to an internal HDD option for the R332 - is
it possible that this drive is an IDE type?
Cheers
Peter Brown
_________________________________________________________________
It's fast, it's easy and it's free. Get MSN Messenger today!
http://www.msn.co.uk/messenger
I came across this plastic base thing for an IBM something.
It looks like a clip on PC base, maybe to stand a desktop case upright,
or maybe just a larger foot to a tower unit.
Its IBM part number 91F7591, FRU 92F0000.
On the underside is a picture of what looks like maybe a PS/2 desktop
computer.
You can see a picture of this thing at
<http://www.mythtech.net/stand.jpg>. (Its not the greatest pic, the Apple
QuickTake 100 doesn't do such a hot job of taking closeup pics).
A: does anyone know what it is for
B: does anyone want it as I am likely to toss it in the trash.
-chris
<http://www.mythtech.net>
Hi All,
Thanks for the info on programming the 1350. I picked up another one of
these HP vector displays, a type 1347 (I think), at a surplus store. It
sounds pretty similar to the 1350 except that the display tube is built in
to the device.
I think that HP used these displays in quite a few of their spectrum
analyser instruments to generate the fancy displays that are required for
frequency domain analysis.
The 1347 was available in either free-standing cased form or as an open cage
that could be integreted into third party instruments. 3 BNC connections on
the rear panel allow you to drive an external XYZ display if you need to.
I'll have a try drawing some pictures using the programming information that
has been posted and let you all know if the commands are the same.
Cheers
Peter
_________________________________________________________________
Get Hotmail on your mobile phone http://www.msn.co.uk/msnmobile
Hi, I ve been working at Wang in a previous life. Should be (or was) an OIS
specialist...
I might have all schematics - software and so on somewhere.
If you need them give al yell back and I 'll look for it
Luc Vande Velde
Belgium
-----Oorspronkelijk bericht-----
Van: cctech-admin(a)classiccmp.org
[mailto:cctech-admin@classiccmp.org]Namens Jim Donoghue
Verzonden: donderdag 12 juni 2003 21:38
Aan: cctalk(a)classiccmp.org; dtillson(a)xmission.com
Onderwerp: Re: Wang Computer Systems
Do you have model numbers for the OIS systems? I may be interested. Are
any of the manuals/disks for the OIS?
On Thu, 2003-06-12 at 14:59, David Tillson wrote:
> I have a number of Wang computers, printers, circuit boards, manuals,
> software, disks, training manuals etc. that are taking up needed
> space. The computers include a portable with a built in printer; a
desktop
> system with a color monitor, and several OIS systems. The printers
include
> 2 daisy wheels, a dot matrix and 2 laser systems (HP's with a Wang
> label). Available for the cost of shipping from Salt Lake, Utah.
>
> David Tillson
> dtillson(a)xmission.com
>
--
Jim Donoghue
Smithy Co.
(734) 913-6700
> How much do people think is too much restoration???
I try to get my machines running as they would have been in their prime.
This includes making the common upgrades that most users would have done.
Since I am restoring kits, there was wide variation in assemble quality. If
I have or can find the correct parts I am just finishing the assemble 25
years later. (I am talking about adding a capacitor or a minor cut and
jumper. Not increasing the memory by tacking RAM chips on top of the
original ones.)
I want the machine to work, even if I have to replace parts. I restored a
SWTPC TV Typewriter that had been very poorly assembled in the 1970s by
stripping the boards bare. (This is not the first choice procedure.) I was
able to find accurate replacements for almost all of the parts.
http://www.swtpc.com/mholley/CT_1024/Restore/CT1024_Restore.htm
I also build new upgrade boards for SWTPC 6800 computers. Some of these use
current production parts and some use historical parts. These can added to a
system and removed without damage. (I sell copies of some of my upgrades but
I make them for my own use. Which is a good thing because I will never
recover my cost.)
http://home.attbi.com/~swtpc6800/new_stuff.htm
Sometimes a hand wired board is a accurate example of what the original
owners would have used.
http://www.swtpc.com/mholley/QRC_Proto/32kMemoryIndex.htm
These upgrades allow the base level product to be upgraded to a full
featured version so you can run the vintage software.
Another area of restoration is documentation. I have been scanning
documents, converting them to text, then creating PDF files for the web. I
correct the typographical errors in the originals and add corrections. I
don't try to maintain the exact format or pagination. I do identify major
changes that I make.
I have been taken to task of not preserving the original documents with all
of the errors!
Michael Holley
www.swtpc.com/mholley
I have a small box that came with a box of odds and ends and I would like
to know what it is. It is gray 3-1/2 x 3 x 1 box with a recessed 25 pin
female connection point on one end.
The only markings on the box is CAMERICA, Patent Pending, Made in China.
Does anybody have any idea what it might be?
I was playing around with the HP LIF Utilities and found that it's
supposed to be able to read a HP disk drive via a HP-IB card installed in a
PC. I tried it but can't get it to work. The buss number is strange (bus 0)
and it says that the drive is incompatible. Has anyone here had any
experience using it that way?
JOe
Hi,
I just got 2 IBM 3101-Terminals. The display unit and the documentation is
missing. The only written stuff I have is the "Customer Problem Analysis and
Resolution Guide" which stuck under the Keyboard. Can anyone send me a mail
with documentation? Fortunately I have lots of spare Monitors, but I need the
pin outs of the video connector to solder a new cable. Does anyone has an
schematics for the devices?
elmar.b.schmitz(a)batronix.com
I want to plug the terminal in my Linux-Server. I pulled an additional RS232
along the cat5 cables for administrative work. It is a bad idea to change
network settings over telnet if the devices won't restart. And why have I to
use a PC with 200W power consumption if I just want to type in some Stuff? And
an ASCII - Terminal is cool, too.
Thank you,
Elmar
>Anyone got one of these drives or a pointer to the software on the 'net? No
>problem booting the machine under DOS to access the tape drive - I doubt
>there's any (free) NT software around that'll read the format on those tapes.
>That's assuming the information on them hasn't vanished anyway of course...
I have an old Iomega 250 tape drive, also uses a floppy interface. I
think I still have the original software for it. I'll check Monday and
let you know. If I have it, I can make disk images and post them
somewhere for you (IIRC its 5.25 disks)
-chris
<http://www.mythtech.net>
Message: 38
Subject: Re: Iomega floppy tape drives + software
Date: Sun, 15 Jun 2003 12:23:30 -0400
From: chris <cb(a)mythtech.net>
To: "Classic Computers" <cctalk(a)classiccmp.org>
Reply-To: cctalk(a)classiccmp.org
> >Anyone got one of these drives or a pointer to the software on the 'net?
> I have an old Iomega 250 tape drive, also uses a floppy interface. I
> think I still have the original software for it.
problem solved as it happens - but thanks anyway! Turns out I'd been clever and
stuck an image of the software disk onto CD - I just found it by chance whilst
hunting some other stuff out.
(the disadvantage of list digest mode - I had to wait until I got the digest
with my post in before I could reply, as I couldn't remember the subject line
:-)
cheers
Jules
________________________________________________________________________
Want to chat instantly with your online friends? Get the FREE Yahoo!
Messenger http://uk.messenger.yahoo.com/
Hi all,
Being a new comer to the hobby, I have not posted much on the forum
before. The subject however is one that has recently been brought to my
attention, and hopefully will bring about some debate.
Here is the scenario. You've just come home from the Antique
show/Trash and treasure/garage sale. You've picked up a nice new toy,
hopefully at least a little less than the price you should have paid. (With
the blessing of the other half of course) You know it's not a worker and have
a general idea of the condition of course. You just can't wait to get it back
to the workshop. You take the cover off and......
How much do people think is too much restoration??? Now obviously
you aren't going to spent thousands on a system that even in the distant
future will not even generate hundreds, and obviously you aren't going to
rebuild and replace every part in the item, because then it's a replica not an
antique. Obviously however a going system is more valuable than a broken one.
So to what lengths do you go to fix it?? For quite some time I have had in my
possession a fairly old system that I am told is "historically significant".
For those that know what one is it is an EDUC-8 a descrete logic
CPU/Programming trainer from the mid 70's. There seems to be two main
opinions among computer collectors.
Opinion 1: The collector who collects entirely for the sake of owning
the object in question and is not concerned about operating it or whether the
item works as planned. They will buy an antique for preservation and think it
is sacrilegious to do any restoration other than maybe a "spit and polish".
Opinion 2: The collector who collects with the intention of
restoration. Who might go to extreme lengths to rebuild and restore the item
he has brought, because to him the idea of keeping something that isn't
working as planed is against God and nature.
Without getting into protracted discusion about the theology of either
collector, I would like to hear the opinions on the list about how far a
restoration should go before it starts detracting from the value of the piece.
I know this is a complex issue, and obviously depends on allot of factors, but
surely there are SOME guide lines that should or could be followed. I am about
to start a complex restoration on the EDUC-8 and am hoping the experts on the
list will give me some ideas based on their experience with other systems.
Idealy I would love the thing to be actually working. Possibly with some
replica I/O interfacing. I must say the the system is at best in "fair to
poor" condition, and without some attention it will probably deteriate
further. I supose I could just clean it up and place it in a "display case"
but I tend to be a collector of more the second opinion than the first.
Obviously however I do not wish to "distroy" the "vintage" significance of the
unit either
Hope to hear from you soon.....
Peter T.
> (Let's see, I have the 1350, a DEC GT40, and a Vectres
> (yes, I know I don't like video games, but this thing
> has a vector display and a 68A09 processor, so it's worth
> getting ;-))).
Of things vector display ish ..
One full sized and one 'baby' Atari BattleZone with two
extra board sets. (That's where Big Brother got their rumble
sound effect BTW.) One Asteroids board (works ok on a Philips
scope) and most of a Tail Gunner (no case, no controls and
the sound board is wrecked).
One day they'll all work.
Lee.
________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
Hello,
I've been developing 'device drivers' for some HP1000 boards to allow
those devices to be run under a freeware HP
operating system and programming language. There are a few boards I
don't have documentation for, but would like
to offer drivers for.
Here is a list of HP interface manuals I'm looking for:
59310B BUS I/O - the standard instrument control HPIB bus interface board.
91200B TV INTERFACE - apparently a NTSC bit-map video display board.
12554A 16-BIT DUPLEX REGISTER - I understand and use this board, but I
have one or two that need repairs.
12968 ASYNC COM INTERFACE - apparently the BACI boards little brother?
12972 8-CHANNEL ASYNC MUX - 8 RS-232 serial ports on a single I/O card.
The top 3 are higher in priority than the last two.
hi all,
I stumbled across a load of old QIC 80 tapes of mine today and got curious as
to what might be on some of them. I managed to dig out the relevant tape drive
>from storage (it's an Iomega drive - 3.5" bay sized - with a floppy interface;
slow as hell from what I remember!)
I haven't used this thing for years but plugged it into a machine running NT4.0
- amazingly NT detected it and has installed low-level drivers for it, so I'm
hopeful that the drive will still work. Of course I have no software for NT
that'll read the format on the tapes...
Problem - can't find the relevant DOS software either. I probably chucked the
floppies a few years back knowing me :-)
I do remember way back (actually would have been 1993 or so - just on topic for
the list!) using another vendor's software under DOS though. Software was for
the Jumbo series or drives that were around at the same time; different vendor
but it worked with the Iomega drive too. Not that I can find a floppy with that
on either :-)
Anyone got one of these drives or a pointer to the software on the 'net? No
problem booting the machine under DOS to access the tape drive - I doubt
there's any (free) NT software around that'll read the format on those tapes.
That's assuming the information on them hasn't vanished anyway of course...
cheers
Jules
________________________________________________________________________
Want to chat instantly with your online friends? Get the FREE Yahoo!
Messenger http://uk.messenger.yahoo.com/
madyn(a)ix.netcom.com (Harvey White) writes:
> I'll have to see if I can find data on HP-IL, might be worth rolling
> an interface for it, or just stick to the IEEE-488....
The most common configuration was a 9121 or 9122 floppy disk drive attached
via HP-IB aka IEEE-488.
I used to be the product support engineer in the factory for the 163X family
circa 1986, and probably still have a full, annotated service manual at
somewhere... but I'm on the other side of the planet at the moment and won't
be home for several weeks.
Bdale
>As others have mentioned, Fedex Ground is usually cheaper.
Just watch it on the FedEx Ground pick ups. They charge an $11 weekly fee
for each week a pickup occurs in (one fee, as many pickups and packages
in the week as you want). If you send rarely, this can very easily negate
the price savings over other carriers like UPS since you can't spread the
fee across multiple packages.
Of course, you can do what I do and just drop the package off at a FedEx
depot and then they don't charge you the fee.
-chris
<http://www.mythtech.net>
This was forwarded to me from one of the lists, a thread about "What to
visit while in the bay area" and I
suggested Halted. "Jim" was looking for a particular kind of Hard Disk
Drive...
Here's the answer for Jim.
I work for Halted, but please don't email me directly with product
inquiry please
send them to sales(a)halted.com
You'll get much better service that way.
Ron
(just a counterdroid at Halted)
Begin forwarded message:
> From: Sales <sales(a)halted.com>
> Date: Sat Jun 14, 2003 12:51:08 PM US/Pacific
> To: Ron Hudson <rhudson(a)cnonline.net>
> Subject: Re: Halted Website
>
> We do not have the drives you are looking for. You might try Corporate
> Systems Center (CSC) for these drives.
> Richard Kolber.
>
>
> At 08:23 AM 6/12/03 -0700, you wrote:
>
>
>> On Wednesday, June 11, 2003, at 08:42 AM, Jim wrote:
>>
>>> Ron,
>>>
>>> Thanks. Rather than try to dig through the website, I'll just ask.
>>>
>>> You guys got a couple 6-10gb ATA drives? If so, how much shipped to
>>> 97883?
>>>
>>> Thanks.
>>>
>>> Jim
>>>
>>>
>> We might, we have a selection of IDE disk drives in that range.
>> I will cc: my reply to sales(a)halted.com so you can get a better
>> answer.
>>
>>
>>
>>
>> ---
>> Incoming mail is certified Virus Free.
>> Checked by AVG anti-virus system (http://www.grisoft.com).
>> Version: 6.0.487 / Virus Database: 286 - Release Date: 6/1/03
>
> ---
I'm sure you guys will enjoy the humor in this...
I went to the shipping counter at the UPS hub here, with a box that has
an Atari 800, disk drive, and software. The guy at the counter asked
what I was shipping...
"Oh, just some software, and an old computer and disk drive."
"Copmuter? It that the original packing?"
"Huh? Uh, no. It's an _old_ Atari copmuter."
(Confused glance from him at the mention of the word 'Atari')
"Well, uh, lets take a look...What's this?"
"Umm, A disk drive..."
"Well, uh, we can't ship it like this. It has to be in the original box"
"Really. Since this computer is about 20 years old, I highly doubt that
the original boxes still even exists in this world. So now what am I
supposed to do?"
(Blank look from him)"Well, let me tape this box back up for you"
As I take the box to the FedEx hub next door, I wonder where this guy
has been in the 80's. He has to be at least 30 years old...
--
--- Dave Woyciesjes
--- ICQ# 905818
I could use some help with a hardware problem?? PLEASE!!
Two weeks ago, my system crashed because both hard disk drives
failed. I replaced them (and sent the bad ones in for replacement
under warranty), but did not do anything else since at the time
it seemed that the more likely problem was something random.
Some additional information - I looked at the disk drives before
they were returned for replacement and they would not spin up
when the logic board was still connected, but when the logic
board was disconnected, spin-up did take place. It seems
likely that the logic boards were fried.
Just last week, the system crashed again and would not even power
up. This seemed to point to the power supply and it was replaced.
Now the system is working perfectly again. The latter time, the
replacement disk drives were not harmed.
Can anyone help with a reasonable estimate as to whether or not
it seems more or less likely that the cause of both problems was
the power supply or not? The system had probably been running
a total of about the equivalent of 3 years of continuous use.
Sincerely yours,
Jerome Fine
--
If you attempted to send a reply and the original e-mail
address has been discontinued due a high volume of junk
e-mail, then the semi-permanent e-mail address can be
obtained by replacing the four characters preceding the
'at' with the four digits of the current year.
> And in a recent experience I found that having
>FedEx ground deliver to your job instead of your
>home is always cheaper and in my case for a heavy,
>long crate was about 20% cheaper.
> Try leaving the 'Shipping to Residence' button
>unchecked when checking prices.
On the other hand, they also offer a nice "scheduled delivery" feature
for residential deliveries. You can tell them what time of day you want
it delivered. But you do pay thru the nose for this (I think the one time
I looked at it, it was an $8.00 surcharge on a $10 package).
-chris
<http://www.mythtech.net>
>I have to take the box(es) to the FedEx folk, since
>one of the reasons Ground is cheap is that they don't provide pick-up
>service - but since FedEx locations are easy to find,
They do provide pickup to some areas. But they charge an $11 a week fee
for any week in which pickups occur.
I do have them pickup from my office when I can charge the cost off to a
client, or when the packages are just too damn big for me to bother
taking to the depot (like Friday they picked up 5 50lb boxes full of
laptops... too much for me to bother hauling to the depot, and I could
charge the $11 directly to my client so I didn't care).
-chris
<http://www.mythtech.net>
Vintage Computer Festival wrote:
> As others have mentioned, Fedex Ground is usually cheaper.
And in a recent experience I found that having
FedEx ground deliver to your job instead of your
home is always cheaper and in my case for a heavy,
long crate was about 20% cheaper.
Try leaving the 'Shipping to Residence' button
unchecked when checking prices.
--Doug
=========================================
Doug Coward
@ home in Poulsbo, WA
Analog Computer Online Museum and History Center
http://dcoward.best.vwh.net/analog
=========================================
Does anyone have a internal SCSI cable for a SS5 in the Aurora 2
chassic. I picked up a SS5 with thew 170mhz chip but the SCSI cable
between the motherboard and the SCA backplane is missing. The Sun p/n is
a 530-2278. I can pay via Paypal.
James
--
http://webpages.charter.net/jrice54/classiccomp2.html
I've added an IBM PS/2 Model 55 and Model 56 to my pile of machines
heading to be junked.
If anyone wants them or parts from them... let me know. Like the
286-486's the end of next week, the pile goes to the dumpster to speak up
before then.
-chris
<http://www.mythtech.net>
On Jun 13, 12:11, Ethan Dicks wrote:
> I have bought a Sun DWIS/S card to drop in an old SPARCstation and
> hopefully talk to some differential SCSI drives. What I can't
> confirm is which kind of differential SCSI the card supports. I'm
> guessing that the absense of any information means that it's HVD
> (which is not what I need right now).
>
> The SunSolve page on the controller is at:
>
> http://sunsolve.sun.com/handbook_pub/Devices/SCSI/SCSI_DWIS_S.html
>
> ...to remove any ambiguity about what card I have coming.
>
> Thanks for any illumination,
It's the original "ordinary" differential, not LVD and certainly not
LVD/SE. In other words, what some people call HVD.
--
Pete Peter Turnbull
Network Manager
University of York
I recently found a computer to which I have never seen likes: The Siemens
6-611. Although I'm just getting started within serious collecting, this
is an interesting machine.
It features more than one 80851 (I counted 4), A Z84, and a bunch of
AY-something chips. It has a v. large mainboard.
It has a console I think is serial, with a wierd textile
covering the CRT. The console is also labelled 6-611. The keyboard
features indicators like ACK and a sexiful key. The monitor powers up,
beeps, and the OK light on the KB lights up.
Mass storage is an 8" drive, and a large HDD, 8" style. It has two
separate power connectors, one for the hard drive logic, one for the motor
and mechanics.
Upon powerup, smoke erupted from the powersupply, which I think were
filter caps. (ARGH, the SMELL!) The system worked fine after that. The
monitor has a power switch and AC out for the system, which doesn't. The
monitor also regulates the power to 230v (In comparison to 235v in
Norway.)
I lacked the cable from the console to the machine at that time, a
standard serial cable, DB-9.
Much Peace,
______________________
|Tore Sinding Bekkedal|
|toresbe(a)ifi.uio.no |
|+47 91 85 95 08 \_________________________
------------------------------------------------/