Re: 6502 code

2016-12-12 Thread drlegendre .
@Sean

I was wondering the same, but perhaps he needs physical hardware for some
specific purposes, like timing and so forth?

The emus (VICE) are quite good these days, though. I can hardly find
anything that VICE x64 won't run.

On Tue, Dec 13, 2016 at 1:20 AM, Sean Conner  wrote:

> It was thus said that the Great dwight once stated:
> > Hi
> >
> >  There has been so much PDP and other stuff lately I kind of feel out of
> place
> > asking about 6502 stuff.
> >
> > Anyway, I've mentioned on the 6502.org that QuickSort is not always the
> fastest
> > sort. So I wrote a 6502 assembly sort but don't have a machine big
> enough to test it
> > on. I've only got my KIM-1 just working.
> >
> > I was hoping someone would like to help me out, possible a Commodore64,
> > maybe even a PET or Apple II.
> >
> > It needs about 24 page zero bytes and about 5K of RAM.
> >
> > It sorts 1K of 16bit integers.
> >
> > Anyway, if someone would like to help, let me know. I've made several
> passes
> > through the code and believe it to be close to bug free but know I'm
> bound
> > to have a couple left.
> >
> > See it as a challenge!
>
>   If you have a modern system, you could always download a 6502 emulator
> and
> test it on that.  Such a tactic wasn't even unheard of in the day---if I
> recall correctly, that's how Gates & Co. tested their first BASIC---on an
> emulated 8080.
>
>   -spc
>
>


Re: 6502 code

2016-12-12 Thread drlegendre .
Howdy,

More than happy to help you, I have native C64 and C128 available.

Check your personal email for my address.. just send the code along.

On Mon, Dec 12, 2016 at 1:51 PM, dwight  wrote:

> Hi
>
>  There has been so much PDP and other stuff lately I kind of feel out of
> place
>
> asking about 6502 stuff.
>
> Anyway, I've mentioned on the 6502.org that QuickSort is not always the
> fastest
>
> sort. So I wrote a 6502 assembly sort but don't have a machine big enough
> to test it
>
> on. I've only got my KIM-1 just working.
>
> I was hoping someone would like to help me out, possible a Commodore64,
>
> maybe even a PET or Apple II.
>
> It needs about 24 page zero bytes and about 5K of RAM.
>
> It sorts 1K of 16bit integers.
>
> Anyway, if someone would like to help, let me know. I've made several
> passes
>
> through the code and believe it to be close to bug free but know I'm bound
>
> to have a couple left.
>
> See it as a challenge!
>
> Thanks
>
> Dwight
>
>
>


Re: 6502 code

2016-12-12 Thread Sean Conner
It was thus said that the Great dwight once stated:
> Hi
> 
>  There has been so much PDP and other stuff lately I kind of feel out of place
> asking about 6502 stuff.
> 
> Anyway, I've mentioned on the 6502.org that QuickSort is not always the 
> fastest
> sort. So I wrote a 6502 assembly sort but don't have a machine big enough to 
> test it
> on. I've only got my KIM-1 just working.
> 
> I was hoping someone would like to help me out, possible a Commodore64,
> maybe even a PET or Apple II.
> 
> It needs about 24 page zero bytes and about 5K of RAM.
> 
> It sorts 1K of 16bit integers.
> 
> Anyway, if someone would like to help, let me know. I've made several passes
> through the code and believe it to be close to bug free but know I'm bound
> to have a couple left.
> 
> See it as a challenge!

  If you have a modern system, you could always download a 6502 emulator and
test it on that.  Such a tactic wasn't even unheard of in the day---if I
recall correctly, that's how Gates & Co. tested their first BASIC---on an
emulated 8080.

  -spc



Re: TOPS-20 Telnet and Port Forwading issue

2016-12-12 Thread Warner Losh
On Mon, Dec 12, 2016 at 11:10 PM, Warner Losh  wrote:
> On Mon, Dec 12, 2016 at 11:04 AM, Seth Morabito
>  wrote:
>> Hi folks,
>>
>> I don't know if this is the best place to ask this question, but I don't
>> know of any better forums for PDP-10 discussion, so hopefully it's
>> on-topic enough.
>>
>> I recently set up the KLH10 PDP-10 emulator on my network, running
>> TOPS-20 7.1. It's on a box in my 192.168.1.0/24 network. TCP/IP works
>> great, I can telnet to it from within my network without any issue.
>>
>> I also set up my firewall (a box running CentOS 7.1) to port forward
>> from external TCP port 2320 to internal TCP port 23 on the KLH10 box.
>>
>> Interestingly, when I telnet from _outside_ the network to my firewall's
>> port 2320, it works, but Telnet goes into line mode rather than
>> character mode! I can fix it with telnet escape (^]) by setting
>> character mode explicitly with "mode character", but that's kind of
>> annoying to do each time I connect.
>>
>> It feels like Telnet is no longer doing line mode / character mode
>> negotiation when I'm port forwarding. It's most mysterious.
>>
>> If you want to see for yourself, you can telnet to
>> gatekeeper.retronet.net 2320, which is the KLH10 instance.
>>
>> Does this ring any bells for anyone?
>
> I'm guessing that this is the classic "Many telnet clients default to
> line mode for only for port 23." issue.

For a recent telnet in FreeBSD, I had to do a 'mode linemode' before
it would behave like you are describing. Connect, hit return, hit the
escape character (traditional one is ^]). mode linemode . then
I saw local echo and things looked approximately like I'd expect.

Warner


Re: TOPS-20 Telnet and Port Forwading issue

2016-12-12 Thread Warner Losh
On Mon, Dec 12, 2016 at 11:04 AM, Seth Morabito
 wrote:
> Hi folks,
>
> I don't know if this is the best place to ask this question, but I don't
> know of any better forums for PDP-10 discussion, so hopefully it's
> on-topic enough.
>
> I recently set up the KLH10 PDP-10 emulator on my network, running
> TOPS-20 7.1. It's on a box in my 192.168.1.0/24 network. TCP/IP works
> great, I can telnet to it from within my network without any issue.
>
> I also set up my firewall (a box running CentOS 7.1) to port forward
> from external TCP port 2320 to internal TCP port 23 on the KLH10 box.
>
> Interestingly, when I telnet from _outside_ the network to my firewall's
> port 2320, it works, but Telnet goes into line mode rather than
> character mode! I can fix it with telnet escape (^]) by setting
> character mode explicitly with "mode character", but that's kind of
> annoying to do each time I connect.
>
> It feels like Telnet is no longer doing line mode / character mode
> negotiation when I'm port forwarding. It's most mysterious.
>
> If you want to see for yourself, you can telnet to
> gatekeeper.retronet.net 2320, which is the KLH10 instance.
>
> Does this ring any bells for anyone?

I'm guessing that this is the classic "Many telnet clients default to
line mode for only for port 23." issue.

Warner


Re: IBM Server 7587

2016-12-12 Thread Ben Sinclair
Thanks! Mine just arrived a few moments ago.

It powers up just fine, and appears to be a pretty standard PC with a
Phoenix BIOS. It doesn't have a hard drive installed, but I'm planning to
use an IDE to CF board.

It's somewhat loud, so I might see about replacing the fans. I can't
imagine this gets very hot, but we'll see.

On Mon, Dec 12, 2016 at 1:20 PM, Gregory Beat  wrote:

> Here is the ZIP File for the IBM 7587 documentation.
> http://ohlandl.ipv7.net/758x/IBM_SBC_Systems.html
>
> Various IBM files
> http://ohlandl.ipv7.net/
>
> g. beat
> chicago
>
> Sent from iPad Air
>
> > On Dec 12, 2016, at 1:08 PM, Gregory Beat  wrote:
> >
> > This is the IBM Datasheet for the 586VE single board computer, used in
> model 7588.
> > Very likely same Single Board, in that Industrial Chassis.
> > http://ohlandl.ipv7.net/758x/586VE_SBC_Information.pdf
> >
> > Sent from iPad Air
> >
> >> On Dec 12, 2016, at 1:04 PM, Gregory Beat  wrote:
> >>
> >> IBM has had a number of "industrial computer" models.
> >>
> >> The IBM Server 7587 is a hardware platform designed for reliable 24
> hour operation.   It was often used in mid-1990s computer telephony
> interfaces (Pentium socket 7, up to 233 MHz).
> >> Responding to the customer's need for a powerful, reliable ISA bus
> computer that is easy to panel/wall mount and easy to service, IBM
> developed the IBM 7587.
> >>
> >> It is a 5 slot ISA/PCI passive backplane, PICMG compliant computer
> powered by an IBM Single Board Computer. The 7587 has a large filtered
> cooling fan that keeps the internal components well under their operating
> limits, even in hot environments. With its shock mounted hard disk drive
> and adapter hold down bracket, the system can withstand the shock and
> vibration found in many harsh work environments.
> >>
> >> Programming interfaces are supported for watchdog timer and thermal
> monitoring functions on the SBC. The system can operate without disk,
> display or keyboard. It is quick to service, with all internal components
> easily accessible after removing the top cover.
> >>
> >> Sent from iPad Air
> >>
> >>
> >> Sent from iPad Air
>



-- 
Ben Sinclair
b...@bensinclair.com


Re: IBM Server 7587

2016-12-12 Thread Gregory Beat
Here is the ZIP File for the IBM 7587 documentation.
http://ohlandl.ipv7.net/758x/IBM_SBC_Systems.html

Various IBM files
http://ohlandl.ipv7.net/

g. beat
chicago

Sent from iPad Air

> On Dec 12, 2016, at 1:08 PM, Gregory Beat  wrote:
> 
> This is the IBM Datasheet for the 586VE single board computer, used in model 
> 7588.
> Very likely same Single Board, in that Industrial Chassis.
> http://ohlandl.ipv7.net/758x/586VE_SBC_Information.pdf
> 
> Sent from iPad Air
> 
>> On Dec 12, 2016, at 1:04 PM, Gregory Beat  wrote:
>> 
>> IBM has had a number of "industrial computer" models.
>> 
>> The IBM Server 7587 is a hardware platform designed for reliable 24 hour 
>> operation. It was often used in mid-1990s computer telephony interfaces 
>> (Pentium socket 7, up to 233 MHz).
>> Responding to the customer's need for a powerful, reliable ISA bus computer 
>> that is easy to panel/wall mount and easy to service, IBM developed the IBM 
>> 7587. 
>> 
>> It is a 5 slot ISA/PCI passive backplane, PICMG compliant computer powered 
>> by an IBM Single Board Computer. The 7587 has a large filtered cooling fan 
>> that keeps the internal components well under their operating limits, even 
>> in hot environments. With its shock mounted hard disk drive and adapter hold 
>> down bracket, the system can withstand the shock and vibration found in many 
>> harsh work environments. 
>> 
>> Programming interfaces are supported for watchdog timer and thermal 
>> monitoring functions on the SBC. The system can operate without disk, 
>> display or keyboard. It is quick to service, with all internal components 
>> easily accessible after removing the top cover. 
>> 
>> Sent from iPad Air
>> 
>> 
>> Sent from iPad Air


6502 code

2016-12-12 Thread dwight
Hi

 There has been so much PDP and other stuff lately I kind of feel out of place

asking about 6502 stuff.

Anyway, I've mentioned on the 6502.org that QuickSort is not always the fastest

sort. So I wrote a 6502 assembly sort but don't have a machine big enough to 
test it

on. I've only got my KIM-1 just working.

I was hoping someone would like to help me out, possible a Commodore64,

maybe even a PET or Apple II.

It needs about 24 page zero bytes and about 5K of RAM.

It sorts 1K of 16bit integers.

Anyway, if someone would like to help, let me know. I've made several passes

through the code and believe it to be close to bug free but know I'm bound

to have a couple left.

See it as a challenge!

Thanks

Dwight




Re: IBM Server 7587

2016-12-12 Thread Gregory Beat
This is the IBM Datasheet for the 586VE single board computer, used in model 
7588.
Very likely same Single Board, in that Industrial Chassis.
http://ohlandl.ipv7.net/758x/586VE_SBC_Information.pdf

Sent from iPad Air

> On Dec 12, 2016, at 1:04 PM, Gregory Beat  wrote:
> 
> IBM has had a number of "industrial computer" models.
> 
> The IBM Server 7587 is a hardware platform designed for reliable 24 hour 
> operation. It was often used in mid-1990s computer telephony interfaces 
> (Pentium socket 7, up to 233 MHz).
> Responding to the customer's need for a powerful, reliable ISA bus computer 
> that is easy to panel/wall mount and easy to service, IBM developed the IBM 
> 7587. 
> 
> It is a 5 slot ISA/PCI passive backplane, PICMG compliant computer powered by 
> an IBM Single Board Computer. The 7587 has a large filtered cooling fan that 
> keeps the internal components well under their operating limits, even in hot 
> environments. With its shock mounted hard disk drive and adapter hold down 
> bracket, the system can withstand the shock and vibration found in many harsh 
> work environments. 
> 
> Programming interfaces are supported for watchdog timer and thermal 
> monitoring functions on the SBC. The system can operate without disk, display 
> or keyboard. It is quick to service, with all internal components easily 
> accessible after removing the top cover. 
> 
> Sent from iPad Air
> 
> 
> Sent from iPad Air


IBM Server 7587

2016-12-12 Thread Gregory Beat
IBM has had a number of "industrial computer" models.

The IBM Server 7587 is a hardware platform designed for reliable 24 hour 
operation. It was often used in mid-1990s computer telephony interfaces 
(Pentium socket 7, up to 233 MHz).
Responding to the customer's need for a powerful, reliable ISA bus computer 
that is easy to panel/wall mount and easy to service, IBM developed the IBM 
7587. 

It is a 5 slot ISA/PCI passive backplane, PICMG compliant computer powered by 
an IBM Single Board Computer. The 7587 has a large filtered cooling fan that 
keeps the internal components well under their operating limits, even in hot 
environments. With its shock mounted hard disk drive and adapter hold down 
bracket, the system can withstand the shock and vibration found in many harsh 
work environments. 

Programming interfaces are supported for watchdog timer and thermal monitoring 
functions on the SBC. The system can operate without disk, display or keyboard. 
It is quick to service, with all internal components easily accessible after 
removing the top cover. 

Sent from iPad Air


Sent from iPad Air

TOPS-20 Telnet and Port Forwading issue

2016-12-12 Thread Seth Morabito
Hi folks,

I don't know if this is the best place to ask this question, but I don't
know of any better forums for PDP-10 discussion, so hopefully it's
on-topic enough.

I recently set up the KLH10 PDP-10 emulator on my network, running
TOPS-20 7.1. It's on a box in my 192.168.1.0/24 network. TCP/IP works
great, I can telnet to it from within my network without any issue.

I also set up my firewall (a box running CentOS 7.1) to port forward
from external TCP port 2320 to internal TCP port 23 on the KLH10 box.

Interestingly, when I telnet from _outside_ the network to my firewall's
port 2320, it works, but Telnet goes into line mode rather than
character mode! I can fix it with telnet escape (^]) by setting
character mode explicitly with "mode character", but that's kind of
annoying to do each time I connect.

It feels like Telnet is no longer doing line mode / character mode
negotiation when I'm port forwarding. It's most mysterious.

If you want to see for yourself, you can telnet to
gatekeeper.retronet.net 2320, which is the KLH10 instance.

Does this ring any bells for anyone?

-Seth
-- 
Seth Morabito
s...@loomcom.com


RE: looking for keytronics keyboard pad replacement kit

2016-12-12 Thread Sam O'nella
Did you ask on vcfed forums? I do recall a few years ago one or two folks 
offering to make sets although being years ago you may have been one of them :-)
 Original message From: william degnan  
Date: 12/11/16  4:17 PM  (GMT-06:00) To: cctech  
Subject: looking for keytronics keyboard pad replacement kit 
There was a seller on ebay who had a set of the pre-made keyboard key pads
for sale...anyone here selling these?  Yes I could make my own, I have gone
through the process, but I'd like to buy a set or two as I have a few
keyboards to repair.  it's a time consuming process.
Thanks in advance.
Bill


Re: HP1631D Logic Analyzer..Software???

2016-12-12 Thread Glen Slick
On Mon, Dec 12, 2016 at 2:26 AM, Rik Bos  wrote:
>
>> I used HPDir to dup the two floppies from a physical 9121D drive into .HPI 
>> image
>> files, then verified that the 1630D can access those .HPI image files loaded 
>> into
>> HPDrive to emulate a 9121D drive.
>>
>> I can send those two .HPI image files to anyone who wants them.
>
> Glen,
>
> Could you upload them to http://www.ko4bb.com/
> So the measurement community can access them also?
>
> -Rik
>

I'll do that later. I should add a readme with some notes about
exactly what the files are and how to use the images before I upload
them. Otherwise most people will have no idea what they are. You know
what to do with an .HPI image file, other people might not.


On another note, did HP ever provide tools and documentation for
writing Inverse Assemblers for the 1630 series? For the 1650 / 16500
series there is the 10391B Inverse Assembler Development Package which
includes documentation, a compiler, and sample code. As far as I can
tell the IA code space on the 1630 series must be limited to a total
of 8KB as that is the total amount of EEPROM storage for saving an IA
configuration on a 1630G. I wonder what sort of tools they used for
writing IA for the 1630.

-Glen


Re: looking for keytronics keyboard pad replacement kit

2016-12-12 Thread Kyle Owen
If it's not too much trouble, emergency blankets (aluminized mylar, I
believe) work well for these keyboards, so long as you get them in the
right direction, mylar side towards the keyboard. Seems like you could buy
those, then stick them on the mylar and quickly cut them out.

Kyle


Re: looking for keytronics keyboard pad replacement kit

2016-12-12 Thread william degnan
One other thingmy use of the term "pad"...There is the metallic disk
"pad" that goes on top of the foam pad.  I should have said metallic disk
when referring to the contact that sits on top of the foam pad.
b

On Mon, Dec 12, 2016 at 8:47 AM, william degnan 
wrote:

> Upon closer inspection, these are pads only.  I am looking for the pads
> with new metallic contacts attached, too.  The metallic pads also decay and
> need to be replaced.  I have been able to re-use some but they're never
> 100% good.  The surface gets coated with something that causes them to
> loose the desired properties and cleaning does not always help.  I have a
> punch to create my own pads, and I *could* make metallic pads from a space
> blanket or similar but I was hoping to find pre-made-ready-to-use
> replacement pads instead.  I could use 4 sets.
>
> Bill
>
> On Mon, Dec 12, 2016 at 6:51 AM, william degnan 
> wrote:
>
>> Thanks.  I was searching with the wrong terms.
>>
>> Bill Degnan
>> twitter: billdeg
>> vintagecomputer.net
>> On Dec 12, 2016 1:19 AM, "Peter Cetinski"  wrote:
>>
>>>
>>> > On Dec 11, 2016, at 5:17 PM, william degnan 
>>> wrote:
>>> >
>>> > There was a seller on ebay who had a set of the pre-made keyboard key
>>> pads
>>> > for sale...anyone here selling these?  Yes I could make my own, I have
>>> gone
>>> > through the process, but I'd like to buy a set or two as I have a few
>>> > keyboards to repair.  it's a time consuming process.
>>> > Thanks in advance.
>>> > Bill
>>>
>>> He’s still out there
>>>
>>> http://www.ebay.com/itm/Victor-9000-SIRIUS-1-Keyboard-repair
>>> -Foam-Pads-for-KeyTronic-Keyboards/121266887970
>>
>>
>


Re: looking for keytronics keyboard pad replacement kit

2016-12-12 Thread william degnan
Upon closer inspection, these are pads only.  I am looking for the pads
with new metallic contacts attached, too.  The metallic pads also decay and
need to be replaced.  I have been able to re-use some but they're never
100% good.  The surface gets coated with something that causes them to
loose the desired properties and cleaning does not always help.  I have a
punch to create my own pads, and I *could* make metallic pads from a space
blanket or similar but I was hoping to find pre-made-ready-to-use
replacement pads instead.  I could use 4 sets.

Bill

On Mon, Dec 12, 2016 at 6:51 AM, william degnan 
wrote:

> Thanks.  I was searching with the wrong terms.
>
> Bill Degnan
> twitter: billdeg
> vintagecomputer.net
> On Dec 12, 2016 1:19 AM, "Peter Cetinski"  wrote:
>
>>
>> > On Dec 11, 2016, at 5:17 PM, william degnan 
>> wrote:
>> >
>> > There was a seller on ebay who had a set of the pre-made keyboard key
>> pads
>> > for sale...anyone here selling these?  Yes I could make my own, I have
>> gone
>> > through the process, but I'd like to buy a set or two as I have a few
>> > keyboards to repair.  it's a time consuming process.
>> > Thanks in advance.
>> > Bill
>>
>> He’s still out there
>>
>> http://www.ebay.com/itm/Victor-9000-SIRIUS-1-Keyboard-repair
>> -Foam-Pads-for-KeyTronic-Keyboards/121266887970
>
>


RE: Megatek Series 7000 Graphics System?

2016-12-12 Thread Mark Green
It's a late model PS-300, I believe the model number is PS-340.  It's one of
the few that they made with a colour vector display.

-Original Message-
From: cctalk [mailto:cctalk-boun...@classiccmp.org] On Behalf Of Al Kossow
Sent: December 12, 2016 11:07 AM
To: cctalk@classiccmp.org
Subject: Re: Megatek Series 7000 Graphics System?



On 12/11/16 8:01 PM, Mark Green wrote:
> I have an E picture system
> that I would like to get fully functional again, but I have no 
> documentation for it.
>

PS-300 or earlier?






Re: Local Pickup of PDP-11 Qbus Hardware, Software and Manuals

2016-12-12 Thread Joe Piche

On 12/11/2016 8:01 PM, Jerome H. Fine wrote:

As I find that there is less and less need for my PDP-11 Qbus Hardware,
Software and Manuals, I wish to determine if there is any interest in my
local area to transfer everything using local pickup in Toronto.

As some of you know, my interest is in RT-11 on the PDP-11 and I have
been doing it since the 1970s.  If there is sufficient interest to 
come by and
do a local pickup, then please send me an e-mail with a local phone 
number

in area code 416 or 647 (or 905 which can be called locally from 416) so
we can arrange something.

The total volume of everything, including probably at least 30% junk, is
probably ten to twenty cubic meters (100 to 200 cubic feet), so there
will need to be some sorting done along the way.  As for hardware,
the collection is mostly BA23 and BA123 boxes with PDP-11/73
and one PDP-11/83 along with assorted Qbus boards.  There are
many VT100, VT220 and VT320 terminals as well.  There are many
PDP-11 manuals and DOC sets for RT-11.

I download my e-mails rarely these days, so it may take even a few weeks
before I reply.

Jerome Fine


If some one picks up some of this, I'd love to get my hands on a 
complete VT-102 for my PiDP8. I'd pay shipping and time.


I'm located in Alberta.


Re: Zenith Z160 Luggable PC aquired

2016-12-12 Thread Devin
Interesting, I was not aware of that feature. It appears to be a 
hardware feature. works with control+ alt+ enter on my machine.



--Devin


On 12/11/2016 11:58 PM, Sam O'nella wrote:

I'm not sure specifically on the z-160 but my z-150 had it (iirc and it's been 
a while ctrl+alt+ins or ctrl+alt+enter) I think put you in the diagnostic rom 
which had a debugger.
Curiously though i dont know if that is a hardware function or a feature of 
zdos?
 Original message From: Fred Cisin  Date: 
12/11/16  6:59 PM  (GMT-06:00)

Don't those machines have a debugging monitor in ROM?  (something that IBM
does NOT)  Otherwise DEBUG.COM should work.




Re: Megatek Series 7000 Graphics System?

2016-12-12 Thread Al Kossow


On 12/12/16 8:55 AM, Holm Tiffe wrote:
> Holm Tiffe wrote:
> [..]
> I made some pictures and currently uploading them to
> http://www.tiffe.de/Robotron/misc/Megatek/
> 

thanks! mine looks very similar. I guess I need to check the backs of
the boards to see if there are 40 pin DIPs hiding on the bottom board

I also need to dig out the chassis to see what model number mine is.
None of the boards have Unibus connectors out the top.

I also put up a couple of Megatek related documents and a product announcement
for the 7000 on bitsavers.




Re: SGI Indigo Update

2016-12-12 Thread Torfinn Ingolfsen
On Mon, Dec 12, 2016 at 4:59 PM,   wrote:
>> Damn, you're right, that's the pinout for the Indy. I have both an Indy
>> and
>> an Indigo with a modified ATX power supply.
>
>
> You're running an Indigo on ATX power supply guts? Interesting. My co-worker
> has a SGI Fuel on his desk with a bad PSU and has talked about converting
> it.

The Fuel also have a "convert an ATX psu" option, it is on this wiki
page : http://www.nekochan.net/wiki/Fuel_PSU_repair
(there is also a thread in the Nekochan forums about it)

-- 
Regards,
Torfinn Ingolfsen


Re: Megatek Series 7000 Graphics System?

2016-12-12 Thread Holm Tiffe
Holm Tiffe wrote:
[..]
I made some pictures and currently uploading them to
http://www.tiffe.de/Robotron/misc/Megatek/

Caution: the images are 3072x2048 pixels JPGs, approx 1,5 Mbyte in size.

The 2 PCBs on the table are the "MP Microcontroller MAW 35-0066-00"
Sandwich disassembled.

W/o documentation I think it is very unlikly that I can get this beast
working again... The cards in the cage are placed in random order
and currently I don't have the PSU, but the former Owner will look for
it. The faceplate says 230V, 3A..



Regards,

Holm
-- 
  Technik Service u. Handel Tiffe, www.tsht.de, Holm Tiffe, 
 Freiberger Straße 42, 09600 Oberschöna, USt-Id: DE253710583
i...@tsht.de Fax +49 3731 74200 Tel +49 3731 74222 Mobil: 0172 8790 741



Re: Megatek Series 7000 Graphics System?

2016-12-12 Thread Al Kossow


On 12/11/16 8:01 PM, Mark Green wrote:
> If it has vector output
> you really need the display unit.  They are less likely to survive than the
> other components unfortunately.  
> 

Mostly because they are BIG CRTs

Megatek documentation is extremely difficult to find, which is why I never did
anything with the one that I have.





Re: Megatek Series 7000 Graphics System?

2016-12-12 Thread Al Kossow


On 12/11/16 8:01 PM, Mark Green wrote:
> I have an E picture system
> that I would like to get fully functional again, but I have no documentation
> for it.
>

PS-300 or earlier?






Re: SGI Indigo Update

2016-12-12 Thread ethan

Damn, you're right, that's the pinout for the Indy. I have both an Indy and
an Indigo with a modified ATX power supply.


You're running an Indigo on ATX power supply guts? Interesting. My 
co-worker has a SGI Fuel on his desk with a bad PSU and has talked about 
converting it.



--
Ethan O'Toole



Re: SGI Indigo Update

2016-12-12 Thread Rico Pajarola
Damn, you're right, that's the pinout for the Indy. I have both an Indy and
an Indigo with a modified ATX power supply.

I can't for the life of me find the page again that had the pinout (the
service manual is not helpful:
http://www.megarat.com/indigo/docs/indigo_service.PDF).

I'll go and check ;)


On Mon, Dec 12, 2016 at 3:27 PM,  wrote:

> http://forums.nekochan.net/viewtopic.php?t=3731 has the pinouts. Works
>> like
>> a charm ;)
>>
>
> I found that in my hunt but I think those pinouts are for the
> Indy/Challenge S machines? The Indy had a soft power on button on the
> front, the Indigo has a reset button and speaker mounted to the power
> supply (but the wires from those are just passed directly to the power
> supply connector.)
>
> Might get a chance to poke at it tonight after work and I'll compare!
>
> Thanks!
>
> - Ethan
>
>
> --
> Ethan O'Toole
>
>


Re: SGI Indigo Update

2016-12-12 Thread ethan

http://forums.nekochan.net/viewtopic.php?t=3731 has the pinouts. Works like
a charm ;)


I found that in my hunt but I think those pinouts are for the 
Indy/Challenge S machines? The Indy had a soft power on button on the 
front, the Indigo has a reset button and speaker mounted to the power 
supply (but the wires from those are just passed directly to the power 
supply connector.)


Might get a chance to poke at it tonight after work and I'll compare!

Thanks!

- Ethan


--
Ethan O'Toole



Re: looking for keytronics keyboard pad replacement kit

2016-12-12 Thread william degnan
Thanks.  I was searching with the wrong terms.

Bill Degnan
twitter: billdeg
vintagecomputer.net
On Dec 12, 2016 1:19 AM, "Peter Cetinski"  wrote:

>
> > On Dec 11, 2016, at 5:17 PM, william degnan 
> wrote:
> >
> > There was a seller on ebay who had a set of the pre-made keyboard key
> pads
> > for sale...anyone here selling these?  Yes I could make my own, I have
> gone
> > through the process, but I'd like to buy a set or two as I have a few
> > keyboards to repair.  it's a time consuming process.
> > Thanks in advance.
> > Bill
>
> He’s still out there
>
> http://www.ebay.com/itm/Victor-9000-SIRIUS-1-Keyboard-
> repair-Foam-Pads-for-KeyTronic-Keyboards/121266887970


RE: HP1631D Logic Analyzer..Software???

2016-12-12 Thread Rik Bos
 
> I used HPDir to dup the two floppies from a physical 9121D drive into .HPI 
> image
> files, then verified that the 1630D can access those .HPI image files loaded 
> into
> HPDrive to emulate a 9121D drive.
> 
> I can send those two .HPI image files to anyone who wants them.

Glen,

Could you upload them to http://www.ko4bb.com/
So the measurement community can access them also?

-Rik



Re: SGI Indigo Update

2016-12-12 Thread Rico Pajarola
http://forums.nekochan.net/viewtopic.php?t=3731 has the pinouts. Works like
a charm ;)






On Mon, Dec 12, 2016 at 5:52 AM,  wrote:

>
> I started updating my blog with (hopefully useful) information.
>
> I did a write up on the SGI Indigo so far and will update it with future
> findings. It's at http://ethan.757.org/?p=32
>
> I made a list of all the tantulum SMD capacitors of the style of the one
> that fried. I think I figured out digikey part numbers for most (And
> published the sizes I measured of the caps.)
>
> If the cap that fried belongs to the audio section, I was thinking maybe
> those components use negative PSU voltages (op-amps, DACs) so maybe the PSU
> is doing something funky. Finding a pinout for the Indigo PSU might take a
> little bit of work -- but since I have mine apart I should be able to
> document some of it.
>
> So many projects!
>
>
> --
> Ethan O'Toole
>
>