On Tue, Jan 23, 2024 at 3:05 PM Wayne S <wayne.sudol(a)hotmail.com> wrote:
> Can’t the pack be read and copied on the system it’s currently on?
>
It's not been near a computer since 1979. It's currently in Fred van
Kempen's storage.
Graham
In 1979, the Dutch team of Harry Whitfield's students writing the
Groningen University Time Sharing O/S called GUTS sent an RK05 to Edinburgh
for us to try out on a PDP11/60 we had access to in Steven Salter's
Wavepower project lab. Ian Young spun it up and learned how to use it.
After some years of being out on loan, we hope to have the disk pack
returned to us this year, so I'm now looking for someone reliable who can
recover very old disk packs, preferably in the USA where we can ship the
pack to them, without having to go through customs and risk damage in an
inspection (I remember those scary 1970's diagrams showing the
comparative size of a smoke particle next to the gap between the heads and
the disk surface!). To minimize the risk of damage during shipping, I'm
hoping that the person who currently has it can ship it directly to
whomever we can find who can read it for us, rather than to me and then to
that person.
I'll be happy with a raw disk read, but the GUTS file format should be
backwards compatible with RT11 files so if the disk is readable I don't
think we'll have trouble getting the data off, especially if the person
with a pdp11 runs RT11 on it. If we can get a disk image however I think we
could get it running again under emulation.
Please contact me at gtoal(a)gtoal.com if you know of anyone in the US who
might be able to read this disk pack, or contact them and ask them to
contact me if they're interested.
Thanks,
Graham <gtoal(a)gtoal.com>
PS We have the 3 GUTS manuals in pdf format, but that's the only GUTS
documentation that we know of which survived:
https://gtoal.com/history.dcs.ed.ac.uk/archive/scans/guts/red.pdfhttps://gtoal.com/history.dcs.ed.ac.uk/archive/scans/guts/orange.pdfhttps://gtoal.com/history.dcs.ed.ac.uk/archive/scans/guts/yellow.pdf
FASTBACK bak up ptogrsm...Help how to recover files stored in this backup format,?
Back when the museum was next to computer exchange Inc. Pre '94. We put out a journal once a year Over 100 pages tightly leaded would like to access files and reprint. Would need Pagemaker 3 orveoukd data files be upward compatible with indesign by adob?
Thanks Ed Sharpe archivist for SMECC MUSEUM PROJECT Glendale AZ
Sent from AOL on Android
> On Jan 19, 2024, at 10:34 PM, Rodney Brown <rdbrown0au(a)gmail.com> wrote:
> ...
>
> I'm not a polymath who keeps lots of Assembly mnemonics in my head, so I hoped the "IEEE Standard for Microprocessor Assembly Language" IEEE Std 694-1985 1985 doi:10.1109/IEEESTD.1985.81632 would have taken off. I think only the Motorola 88000 used it and C probably was far more prevalent. I think the HPPA 1.1 then started the trend of SIMD instructions, so the portability would have reduced.
I had never heard of that IEEE standard, and it doesn't seem to have gone anywhere. Which makes sense; assemblers represent the architectural choices of the hardware, so standardizing them is a strange notion. You could standardize a style of construction (making it sort of a "meta-standard") but that isn't very interesting. The general style of opcode and operands had been the predominant style by then, and for a long time before. Other styles, like CDC 6000 Compass (CPU side) or stranger examples seen on Electrologica, haven't been used in ages.
About the only style issue that would be nice to have consistent is ordering: does destination come first, as with ARM and IBM 360, or source first as with PDP-11 and VAX? Then again, I suppose that's just about as hard a problem as byte order.
paul
Forth was ported to an HP-2100 in 1972, by Elizabeth Rather, so had early
history on HP hardware, though from what I can it it was never a product
available from HP.
I don't know if Forth Inc ever supported Forth on HP machines.
Anthony Pepin provided a Forth to the HP3000 Contributed Library in
September 1982, though I think his looks like a virtual machine, I don't
remember trying it in the day.
Thanks to Gavin Scott's "system" and J. David Bryan's SIMH HP-3000 emulator,
I can look at it now.
As Anthony Pepin observed, Forth implementations at the time assumed a
von Neumann architecture. The HP 3000 with a Harvard architecture implying
read-only code with a different address space, needs more thought.
Why Forth?
I've never been a Forth programmer, but as I understand it,
compilers/interpreters weren't standard with HP 3000 Systems, nor were
there
scripting languages like awk, sed & perhaps the Bourne shell on Unix.
A Forth interpreter supporting the HP 3000's supported types & the
mathematical
functions in SL.PUB.SYS (the system shared library), even without
compilation,
would have been bettered by the Unix dc (RPN calculator) only for it's
multi-precision maths.
HP 3000 types (using kludged C <stdint.h> style
int16_t => INTEGER, uint16_t => LOGICAL, int32_t => DOUBLE
f32_hp3k_t = REAL, f48_hp3k_t => LONG REAL
COMPLEX & Packed Decimal?
A Forth supporting code compiled to Data space would have been a useful tool
for learning & testing & perhaps as a scripting language.
With Date & Actuarial procedures added, I suspect our Actuarial students
would
have found it useful. Don't know if it would have been seen as useful at
educational institutions like RMIT here in Melbourne, Australia that had
3000s.
Assemblers in Forth seem to be a common thing, it would be possible to
assemble the Data space code with minor peephole optimization, and the
necessary
translation from modifying the Next Data instruction variable to
branches in the
code. That and the Dictionary entry could then be written out as an
input file
for PATCH.PUB.SYS, allowing the interpreter to be extended without
understanding
the USL format.
I've finally read some of Koopman, Philip (1989) "Stack Computers: The
New Wave" looked a little at his Harris RTX-2000 MS-DOS Emulator source,
and at
James Bowman "J1: a small Forth CPU Core for FPGAs".
Like the HP 3000, the Harris RTX-20[01]0 & the J1 are 16-bit machines with a
16-bit instruction width (soley for the Harris & J1).
Other than the HP 3000, the architecture use the sign bit to use the
instruction
value as a call-target address or decode an ALU operation with some Forth
special sauce.
I've wondered for a while whether the HP 3000 XEQ instruction which
executes a
stack adressable 16-bit word (0..15 deep on the Stack-Up stack (S register))
has been used for anything other than exiting to clean up the stack on a
Ctl-Y
trap.
A virtual Forth machine where negative int16_t values give a negated call
address, with the least-significant bit selecting Code or Data.
Almost all 16-bit HP 3000 instructions are positive.
Below is an SPL sketch of the virtual machine interpreter
Nonsense @ characters are *Fix Me*s
equate Deepest = 15, Dict'Sz = 1024, Padded'Dict'Sz = Dict'Sz + 16;
integer X = X;
logical PB'Address; << Poor Name>>
logical bu'S'15;
pointer restore'S'15;
logical S'15 = S - 15;
logical D'Dict'Used := 0;
logical Code'Offset;
label Next'Word, Execute'TOS, ...
integer array D'Dict(Padded'Dict'Sz);
<< Code must immediately follow, need to access padding perhaps >>
Next'Word:
TOS := D'Dict(Code'Offset);
if < then begin << Call (int16_t < 0) >>
Return'Stack'X := Return'Stack'X + 1;
Return'Stack(Return'Stack'X) := -((Code'Offset + 1) & LSL(1)));
assemble(NEG, DUP);
if TOS then begin << Odd => PB (Code) address >>
PB'Address := TOS & LSR(1);
Assemble (@); << Indirect Jump through PB'Address Variable >>
else begin << Even Data Address >>
TOS := TOS & LSR(1);
assemble(DUP);
if TOS >= D'Dict'Used then begin
Error(@);
end
else begin
Code'Offset := TOS; << Weak bounds check >>
goto Next'Word;
end;
end
else begin << (int16_t >= 0), HP-3000 16-bit instruction >>
Execute'TOS:
bu'S'15 := S'15; << Needs testing, backup the value >>
@restore'S'15 := @S'15; << Save Data address of stack element >>
S'15 := TOS; << Save the instruction as deep as possible >>
assemble(XEQ 14); << Needs testing probably wrong depth number >>
<< Execute the instruction just deposited >>
restore'S'15 := bu'S'15;
Code'Offset := Code'Offset + 1;
goto Next'Word;
end;
<< Not sure how to handle end of the Forth code in Data
Could call to a PB (Code) address or do an indirect branch through
a procedure local to the handle code. So in data, a sentinal of
sorts>>
<< Have Execute'TOS as a label for flexibily >>
<< Basically, Search the DB (Data) Forth dictionary, if found interpret
the data
code, otherwise search the PB (Code) Forth dictionary, if found jump to and
execute the the code directly. >>
<<Restoring & Saving the Status register around each XEQ instruction use,
would be better as a teaching tool & allow using Condition Code effects
when the
Forth word is compiled to Code space. >>
--
The output from BUILDINT.PUB.SYS over a copy of SPLINTR.PUB.SYS gives
the type
signatures of the System Intrinsics and compiler library routines.
This could be curated & processed to generate shims for calling from the
Forth
interpreter, though the Option Variable Procedures would take some thought.
There seem to be ~600 declarations, some of which are duplicate entry points
for the Fortran compiler library for REAL & LONG REAL functions. (ie
RAND & RAND' etc), so you'd need 3 or
more code segments to get around ~256 STT (Segment Transfer Table) limit to
call everything.
Virtual Stack machines executing directly on the HP 3000 stack was what
our COCAM
language did.
Comments? Were HP doing anything like this in the labs?
Philip Koopman's Stack page at CMU
http://users.ece.cmu.edu/~koopman/stack.html
>Message: 17
>Date: Mon, 15 Jan 2024 12:52:15 -0500
>From: Bill Gunshannon <bill.gunshannon(a)hotmail.com>
>Subject: [cctalk] Re: WWVB
>To: cctalk(a)classiccmp.org
>Message-ID: <SA1PR17MB5737C194F181927517114C55ED6C2(a)SA1PR17MB5737.nam
prd17.prod.outlook.com>
>Content-Type: text/plain; charset=UTF-8; format=flowed
>
>On 1/15/2024 10:47 AM, Chris Elmquist via cctalk wrote:
>> On Sunday (01/14/2024 at 09:55PM -0600), Chris Elmquist via cctalk wrote:
>>> There are a number of WWVB simulator projects out there that will transmit a weak but usable signal to your clock after getting sync’d from ntp or GPS NMEA time messages. They were developed to help people develop receivers :-) One in particular uses an AVR and it should be pretty simple to make it do the “old protocol”. You’d then hide this behind your clock and it will sync to it instead of the actual WWVB signal. Solves the protocol problem and the weak signal problem from real WWVB with one little circuit.
>>>
>>> If Google does not provide, I can dig up some links tomorrow.
>>
>> Hmm. Strange. I did follow-up shortly after the above post with this
>> link,
>>
>> https://www.instructables.com/WWVB-Simulator/
>>
>> but I don't see that that made it to the list.
>>
>> Chris
>>
>
>It did. I got it.
>
>bill
Your original email with the link did not make it into the digest, which is what I receive.
Chirs, Did you also send it directly to Bill. Perhaps that is what he got.
Bob
This is kind computer related but maybe more ham radio related
but I figure if anywhere, here is the place to find an answer.
I have a SkyScan ATOMIC CLOCK.
It is supposed to get its time from WWVB.
The antenna icon that is supposed to mean it is receiving
WWVB is on.
Your probably wondering why I keep saying "supposed to".
The clock is always wrong. Slow by about 2 minutes.
Is there a known problem with WWVB?
bill
Hi folks -- long time no post.
I'm wondering if there's anyone who would be interested in trying to fix my
Shugart 850/851 8-inch floppy drive. It was new old stock when I bought it,
and hasn't been used much, but last time I tried it, it would no longer
read any data from the back of a floppy, only from the front. I use it with
a Catweasel and my cw2dmk software, so I was able to try a few experiments
from the software side. What I see is just plain noise coming out on the
data line when reading the back.
It's possible of course that some unobtainium chip has gone bad, so I don't
expect much. But it would be nice if someone with more electronics skill
than me, and more knowledge about these drives in particular, would be
willing to take a look at it.
The drive is of course big and tough to ship, so it probably only makes
sense for someone within driving distance (I can drive it over or you can
come by), which means being in the SF Bay area. I live in Palo Alto right
near downtown.
FWIW, the drive and a power supply are mounted in a case that I made by
ripping the guts out of a surplus desktop PC case. The power supply seems
fine and the drive can read the front of disks fine.
Thanks for any help,
Tim
Hi!
Due to a broken water line, I ended up with a blown BM200-3601 power
supply in a HP workstation. These seem to be notoriously failing due
to bad caps, but mine was fine until flooded.
Found few offers in the USA (~ 1400 US-$), but adding taxes and
shipping to Germany, that would probably end at around 2000 €. That's
well beyond what I'd be willing to spend on it. :(
Thanks,
Jan-Benedict
--
For those needing a decent price on hotels, check out the hotel blocks
page: https://vcfed.org/vcf-east-hotel-blocks/
Thanks!
Jeff Brace
VCF National Board Member Chairman & Vice President
Vintage Computer Festival East Showrunner
VCF Mid-Atlantic Event Manager
Vintage Computer Federation is a 501c3 charity
https://vcfed.org/ <http://www.vcfed.org/>
jeffrey(a)vcfed.org
Hi all
Oops that went off before I was finished with it.
>I suspect that I can figure out from the pattern of I/O accesses
>which devices are at which address in the memory map, at least if I
>bring up an emulation in MAME. That should at least allow writing
>new code for it, and _maybe_ even figuring out which CRT controller
>the video hardware uses and where in the memory map it is. (I
>suspect the 6845 and/or 6847 just from the time period, but who
>knows? Gotta see what it actually do when trying to show the âIPL
>IN PROGRESSâ string contained in the ROM, or one of the couple
>error strings )
As far as I can tell this is where a character gets displayed.
; character in +1(A6)
00FFCE0C : 48E7 C000 MOVEM.L D0,D1,-(A7)
00FFCE10 : 302B 06AC MOVE.W +1708(A3),D0 ; get something
00FFCE14 : 6122 BSR $00FFCE38 ; do something
00FFCE16 : 0040 8000 ORI.W #$8000,D0
00FFCE1A : 11C0 8001 MOVE.B D0,$00FF8001 ; Low byte
00FFCE1E : E048 LSR.W #8,D0
00FFCE20 : 11C0 8003 MOVE.B D0,$00FF8003 ; High byte
00FFCE24 : 11EE 0001 8005 MOVE.B +1(A6),$00FF8005 ; Character
00FFCE2A : 0838 0006 801B BTST #6,$00FF801B ; Wait
for a flag
00FFCE30 : 66F8 BNE $00FFCE2A
00FFCE32 : 4CDF 0003 MOVEM.L (A7)+,D0,D1
00FFCE36 : 4E75 RTS
; Here with something (from $06AC(A3)) in D0
; current guess, it's the cursor position, which then gets translated
; to an X and a Y byte in D0.w
00FFCE38 : 0C2B 0050 06B7 CMPI.B #$50,+1719(A3)
00FFCE3E : 6628 BNE $00FFCE68 ; Return
00FFCE40 : 48C0 EXT.L D0
00FFCE42 : 81FC 0050 DIVS #$0050,D0
00FFCE46 : 4840 SWAP D0
00FFCE48 : 3200 MOVE.W D0,D1
00FFCE4A : 4840 SWAP D0
00FFCE4C : ED48 LSL.W #6,D0
00FFCE4E : 0C01 0040 CMPI.B #$40,D1
00FFCE52 : 6C08 BGE $00FFCE5C
00FFCE54 : 11FC 0000 8013 MOVE.B #$00,$00FF8013
00FFCE5A : 600A BRA $00FFCE66
00FFCE5C : 0441 0040 SUBI.W #$0040,D1
00FFCE60 : 11FC 0001 8013 MOVE.B #$01,$00FF8013
00FFCE66 : 8041 OR.W D1,D0
00FFCE68 : 4E75 RTS
Or maybe it's talking to a chip (not 6845 which is memory mapped or
7220 which has two registers only) and someone recognises it?
W
Hi all
Chris gave me a copy of the boot ROM and I played around with it a bit.
>I threw the 4KB of boot ROM in Ghidra and confirmed a couple things:
>
>- At boot, ROM is mapped to 0, and then remapped either by a write
>to the location or by a cycle counter: The initial stack pointer at
>0x0 is 0x0001fffe and the initial program counter at 0x4 is
>0x00ffc026, indicating the ROM is normally located at 0x00ffc000.
>- The ROM freely interchanges addresses in the
>0x00ffc000..0x00ffffff range and addresses in the
>0xffffc000..0xffffffff range, which is annoying to deal with in Ghidra.
The code takes advantage of the 68000 sign-extend on absolute short
addressing mode, like move.b #$00, $8011. IDA correctly disassembles
this to "move.b #0,($FF8011).w". I assume Ghidra if sign-extending
it all the way to FFFF8011?
>- I/O devices appear to be in the 0x00ff8000..0x00ffbfff range, all
>of the devices accessed via the bootstrap seem to be barely above 0x00ff8000.
>- Only NMI, bus error, interrupt 2, and interrupt 5 are set up by
>the bootstrap.
Yup.
>- The bootstrap is very bare-bones but still has a bunch of
>indirection in it; itâs obviously written in assembly, but it does
>seem to have parameterization so it may support both console and serial I/O.
I suspect either some low-level high-level language, or massive use
of macros (which is in effect a low-level high-level language :-) Code like:
; Called with A6 pointing to a length and a string address
00FFCA4C : 48E7 8080 MOVEM.L D0,A0,-(A7)
00FFCA50 : 3016 MOVE.W (A6),D0 ; length
00FFCA52 : 48C0 EXT.L D0
00FFCA54 : 206E 0002 MOVEA.L +2(A6),A0 ;
pointer to string
00FFCA58 : 508E ADDQ.L #8,A6 ; clear stack
00FFCA5A : 5380 SUBQ.L #1,D0
00FFCA5C : 6B0E BMI $00FFCA6C ; done
00FFCA5E : 518E SUBQ.L #8,A6 ;
make space on stack again
00FFCA60 : 1D58 0001 MOVE.B (A0)+,+1(A6) ;
one character on stack
00FFCA64 : 4EB8 C566 JSR $00FFC566
00FFCA68 : 51C8 FFF4 DBF D0,$00FFCA5E ; loop
00FFCA6C : 4CDF 0101 MOVEM.L (A7)+,D0,A0
00FFCA70 : 4E75 RTS
>I suspect that I can figure out from the pattern of I/O accesses
>which devices are at which address in the memory map, at least if I
>bring up an emulation in MAME. That should at least allow writing
>new code for it, and _maybe_ even figuring out which CRT controller
>the video hardware uses and where in the memory map it is. (I
>suspect the 6845 and/or 6847 just from the time period, but who
>knows? Gotta see what it actually do when trying to show the âIPL
>IN PROGRESSâ string contained in the ROM, or one of the couple
>error strings )
> Chris
I remember circa 1977 CMU had a PDP-11 compiler for '68 with an extensive
runtime component.
I presume the sources are lost.
Peter Hibbard was the guy responsible if I recall.
Evangelist of lean software and devisor of 9 programming languages and
an OS was 89
https://www.theregister.com/2024/01/04/niklaus_wirth_obituary/
The great man has left us. I wrote an obituary.
--
Liam Proven ~ Profile: https://about.me/liamproven
Email: lproven(a)cix.co.uk ~ gMail/gTalk/FB: lproven(a)gmail.com
Twitter/LinkedIn: lproven ~ Skype: liamproven
IoM: (+44) 7624 277612: UK: (+44) 7939-087884
Czech [+ WhatsApp/Telegram/Signal]: (+420) 702-829-053
Does anyone here has an actual IMF file (Internal Machine Fix) for the IBM
5110? Not the file called "IMF" on the Customer Support Functions
disk/tape, but a real fix. File type should be 23.
I am trying to figure out how the patch mechanism works. The IMF is
supposed to be loaded with the LOADER utility.
Christian
Hi Chris and all
>- No video board, whether text or graphics
>
>Since thereâs no video board in the system, and a couple of cables
>internally that arenât attached to anything, I expect it was
>removed by a previous caretaker. This is sad because without one
>itâs unlikely to come up, not that anyone has found any software
>for it. On the other hand, there are zero PALs, so both full reverse
>engineering and maintenance should be straightforward.
I've scanned the press releases and adverts that come up on Google
and I'm going to wager it was meant
to be used with one or two terminals. Nowhere do they mention a
display, and the adverts show a box
sitting next to a terminal.
Send me a copy of the ROM binary please?
W
I have a couple of VAX 4000-200 boxen running OpenVMS. I want to try out NetBSD on them but NetBSD does not support the SHAC DSSI controller on the KA660 CPU card. However NetBSD *DOES* support the KFQSA DSSI controller which I have a few of in my VAX 3800s.
Can I install the KFQSA card in my 4000-200, disconnect the internal disks from the SHAC and connect the disks to the KFQSA thereby allowing NetBSD to run?
Has anyone done anything like that?
Happy 2024 everyone!
Thomas Dzubin
Calgary, Vancouver, or Saskatoon CANADA
Happy New Year everyone!
I was wondering if anyone happens to have any documentation or information
about the 8219HP adapter by IO Corporation? It is a protocol converter from
Twinax to RS232 emulating an IBM 5219 printer. I am mostly looking for
information about the option/rate switches on the back.
I acquired one of these for cheap recently but haven't been able to find
any information about it.
Thanks!
Does anyone here have a running Axil 220 or 245 (Sun SPARCstation LX clone)? My 220 has a dead PSU and I am trying to get it working with a modern PC PSU. But I don’t know the pinout for the power connector.
While the power connector is the same as used by Sun, the pinout and, aside from +5V and GND, the wire color scheme are different. I have identified 3 of the 6 wire colors and 7 of the 10 pins. The wire color scheme seemed to be a match for early sun4c but I just found something that suggests a couple wire colors are used differently.
I have found that black is ground, red is +5V, and yellow is +12V. White, orange, and blue are TBD. A marking on the PSU board suggests white is -12V. Blue and orange seem to only used by a daughter board centered on a LM339 chip. But, as a software guy, I can’t tell what it does.
Anyone here have any insight here that might help me?
alan
I picked up this system from its previous caretaker yesterday, to hold onto for a friend. I’ve also inventoried the major functional ICs and archived the “IPL-M” ROMs.
Here’s what’s in the Eagle-32:
- Main Logic Board
- 8MHz 68000 CPU
- 2x D8255 programmable peripheral interface
- left 8255 is clearly for parallel and user port
- right 8255 I strongly suspect is for hard disk, possibly ANSI or SASI
- D8253C programmable interval timer
- 2x 2651N programmable communications interface for serial ports
- 2x 2716 for IPL-M 0/1 ROMs
- Disk Controller Board
- FD1701B-02 floppy disk controller
- No video board, whether text or graphics
Since there’s no video board in the system, and a couple of cables internally that aren’t attached to anything, I expect it was removed by a previous caretaker. This is sad because without one it’s unlikely to come up, not that anyone has found any software for it. On the other hand, there are zero PALs, so both full reverse engineering and maintenance should be straightforward.
I threw the 4KB of boot ROM in Ghidra and confirmed a couple things:
- At boot, ROM is mapped to 0, and then remapped either by a write to the location or by a cycle counter: The initial stack pointer at 0x0 is 0x0001fffe and the initial program counter at 0x4 is 0x00ffc026, indicating the ROM is normally located at 0x00ffc000.
- The ROM freely interchanges addresses in the 0x00ffc000..0x00ffffff range and addresses in the 0xffffc000..0xffffffff range, which is annoying to deal with in Ghidra.
- I/O devices appear to be in the 0x00ff8000..0x00ffbfff range, all of the devices accessed via the bootstrap seem to be barely above 0x00ff8000.
- Only NMI, bus error, interrupt 2, and interrupt 5 are set up by the bootstrap.
- The bootstrap is very bare-bones but still has a bunch of indirection in it; it’s obviously written in assembly, but it does seem to have parameterization so it may support both console and serial I/O.
I suspect that I can figure out from the pattern of I/O accesses which devices are at which address in the memory map, at least if I bring up an emulation in MAME. That should at least allow writing new code for it, and _maybe_ even figuring out which CRT controller the video hardware uses and where in the memory map it is. (I suspect the 6845 and/or 6847 just from the time period, but who knows? Gotta see what it actually do when trying to show the “IPL IN PROGRESS” string contained in the ROM, or one of the couple error strings…)
— Chris
Perhaps slightly off topic, but perhaps someone here has a contact or idea
on how to get started on this:
Someone has done a Q-Bert port in 2023 to a new system. The title is
different, but the "look and feel" (and audio) is pretty "authentic" to the
original (not sure if using exactly the same original tiles and such, I
believe it was all original work - but still, it's very much an
arcade-style clone). We see now that Sony "owns" it these days (I seem
to remember decades ago there a Q-bert cartoon? But perhaps remembering it
wrong).
The question is, how would one start on obtaining a license? I assume it
wouldn't be cost effective (for a free casual port), but still just
curious. I've tried to contact Sony in the past (on a different software
title), but it's just a huge enterprise it's a bit challenging to
approach. Just wondering on the off chance if maybe someone around here
has gone down this road already?
-Steve
I am back to playing with RSTS/E 10.1 again and have a couple questions
if there is still anyone around with experience.
First: Is there a way to change the allowed length for passwords?
Second: Is there a way to make login take the assigned name rather than
the x,x format for logins? I seem to remember using a system once that
did but I have no idea if it was legit or a local hack. Although I have
no problem using local hacks. :-)
Need to get a system going and maybe even join HECNET.
I really wish there was TCP/IP for RSTS.
bill
I have been scanning in a lot of manuals that I have that relate to
computers that are not in my collectiion, but which may be unique, or
nearly so.
Today I scanned in the Sorbus Micro Handbook 1990 Update, which has
information provided to Sorbus FEs who might service various microcomputers.
There is info in there on all sorts of stuff, including motherboard
jumper/switch info up through a PS/2 model 80, for example, and lots of
other manufacturer's computers and expansion cards, stuff like IOMEGA,
AST, Zenith Tandon, etc. etc.
It can be found in my Google drive under my directory of things I have
provided for bitsavers to snag:
https://drive.google.com/open?id=0B2v4WRwISEQRWWFFdVpCZWFTZEU&resourcekey=0…
in subdirectory pdf/sorbus
JRJ
Did IBM ever publish programming information for their PC SDLC or BiSync communications boards? I’m wondering about the possibility of programming one to drive the synchronous protocol needed for “booting” a Northstar Advantage over its serial port.
Or, for that matter, wondering what Northstar had in mind when they made that protocol synchronous - what would they have had driving it?
ok
bear.
Hey all!
I'm looking for a couple "file manager" type pieces of software. I can't
find them on WinWorld.
First one is from about 1984-1985, possibly called DRBOSS.COM, I just
remember it used IBM extended graphics for "window" borders (which were
colored red) and the filenames were either in gray or green. The main
feature was you could select a few files at a time, then do some operation
on those selected ones. And as a .COM it was well under 64K.
The other is from around 1996, and called MWIZ or Menu Wizard. Apparently
there were a few variations with possibly the same/similar name. All I
recall about this one is it came with both a .EXE and a .COM, and was
written by a person named Tony. I believe it was available on the '96 or
'97 BYTE magazine CD, and possibly also on CompuServe (I'm not current on
what the state of any CompuServe archives are these days).
Not urgent - just curious if they could be found.
And if anyone is in an MS-DOS mood throughout the holiday break: I still
find my ancient CDIR.EXE useful even in DOSBOX or on my physical IBM 5150.
It is available in my utility collection archived here:
https://github.com/voidstar78/VUC4DOS
For other early IBM PC notes (like floppy drive emulators and NIC setup), I
have some notes here: https://voidstar.blog/ibm-pc-5150-notes/
(including all about using the tape deck!)
-Steve / v*
I think I have got my VT100 basically working now except for the actual
video display. I think there is a problem with the transistor that drives
the flyback transformer. This is Q414 on page 58 of the Feb82 schematic on
BitSavers
(https://bitsavers.org/pdf/dec/terminal/vt100/MP00633_VT100_Schematic_Feb82.
pdf). I have removed it from the circuit and tested it with the diode tester
of my multimeter. It does not test as two diodes, indeed across
Collector-Base the multimeter beeps for a short circuit, and so I am fairly
sure it is bad,
The part is the one with the heatsink as shown in this picture:
https://rjarratt.files.wordpress.com/2023/12/img_20231221_112305.jpg. I have
found some information on it here:
https://www.web-bcs.com/transistor/tc/b0/B411.php but the Feb82 schematic
shows it is a BU407D. My video board is not exactly the same as the one in
the schematic despite having the same DEC part number, but the circuit that
drives the flyback is the same on the secondary side of T403, and includes
the optional diode CR406 in the form of another B411 transistor that is not
connected at the emitter.
I am trying to identify a replacement and could do with some help
identifying one. I can't find a full datasheet for the B411, all I can find
is this https://www.web-bcs.com/transistor/tc/b0/B411.php, which seems to
match the part I need to replace, and I have also found one for a BU407 (not
BU407D) here https://www.mouser.co.uk/datasheet/2/308/1/BU407_D-2310257.pdf.
I have tried to find something that meets or exceeds the voltage, current
and switching time specs. I have found a couple of possible replacements and
would welcome opinions on their suitability:
https://www.farnell.com/datasheets/2861437.pdf
and
https://www.farnell.com/datasheets/3033460.pdf (assuming that the switching
times are a typo and they are in microseconds rather than seconds)
Do these seem like suitable replacements?
Thanks
Rob
Happy DEC-20 Day!
My late friend Mark always noted that TOPS-20 (and the DECSYSTEM-20 on which it
runs) was a great improvement on its successors.
I wish you all a joyous Winter Solstice Festival, however you may choose to
celebrate it.
Rich
The PDP 11/34 and 11/04 front panels (both operator and programmer) use a
somewhat stiff plastic sheet of 1.0 mm thickness with DEC logo, model
designation, labels for the keys printed on it, cut-outs for the keypad and
knob and red transparent sections for LEDs and 6 digit 7-segment display.
I don't know what the industry calls this type of plastic sheet? Is it a
"decal"???
This plastic sheet is (was) fixed to an anodized aluminium plate (1.6 mm
thickness) using some type of glue which has deteriorated so that the
plastic sheet has separated from the aluminium plate.
The glue looks like it has been sprayed on and has a light yellowish-brown
appearance. The glue readily dissolves in ethyl-alcohol and acetone, but is
unaffected by water, petrol (gasoline) and dry cleaning fluid (white
spirits).
I would like to glue the plastic sheet back onto the aluminium plate, but
worry about damaging the plastic sheet and/or paint by the solvents in
typical glues.
Also some glues don't allow any adjustment once you combine the two halves
of whatever you glue together.
What type of plastic is this plastic sheet likely made of (polycarbonate?)
and what paint was used? I am asking to determine what solvent based glues
may attack either the plastic sheet or the painted surfaces.
The dark grey and transparent red paints are applied to the back side of
the plastic sheet, so they are vulnerable to solvent attack when glueing. I
tried ethyl-alcohol in one corner which is obscured by the cast metal
surround and some of the dark gray colour came off with the alcohol and
gentle rubbing.
Has anyone successfully glued back the plastic sheet to the aluminium
plate? If yes, what type of glue did you use and how exactly did you do the
operation?
Any suggestions, advice or tips?
Thanks and best regards
Tom Hunter
>
> The one I haven't found yet is:
f29bdg00.boo
The Google suggests:
http://www.edm2.com/index.php/Common_User_Access
which has working links to f29al000.boo and f29bdg00.boo on IBM servers
I've done a lot of work converting technical documentation archives from
DCF and Bookmaster to Word and XML, but always worked from source, never
.BOO.
On 12/11/23 1:00 PM, Liam Proven <lproven(a)gmail.com> wrote:
> Does anyone have any experience with the IBM BookManager format and the
> tools to read it?
>
> I've not found any way to open them on a Mac. No joy on Linux yet
> either; there's an old unmaintained tool that uses a 32-bit Java app.
>
> I found 2 Windows tools.
>
> One, IBM Library Reader, won't install on Win11.
I have it running in a Windows NT VM, and it prints to PDF using BullZip
just fine. Do you want to point to the library you want to convert, and
I can run this over them?
Hi Stephen,
Sorry to use your Fig Forth thread - I too have a Corsham 6809 system, with
a SD card - I can not for the life of me figure out what files / how to put
stuff onto the SD card to boot - either Basic or Flex/09.
If you had success down the Fig route that would also be great - but do you
remember how to use the SD system?
Kindest regards,
Doug Jackson
em: doug(a)doughq.com
ph: 0414 986878
Follow my amateur radio adventures at vk1zdj.net
On Sun, 24 Jun 2018 at 05:16, Stephen Pereira via cctech <
cctech(a)classiccmp.org> wrote:
> Hi folks,
>
> I know there's not much 6800 activity here, but I figure this would be
> worth a try.
>
> Has anyone here ever seen or ever had fig-FORTH for the 6800 working?
>
> I have a SWTPC replica system from Bob Applegate / Corsham Technologies,
> and I love it. It came with a complete 64K RAM, as well as the SWIBUG
> monitor, and the monitor code has been extended by Bob/Corsham to interface
> with an SD Card sub-system for floppy disk emulation. This provides the
> original terminal access to the machine with the simple system monitor, and
> also the FLEX OS for running programs. It is a blast to use.
>
> Recently, I took a look around and found the fig-FORTH listing as
> originally published back in 1979, and also a Source Forge site that holds
> an electronic copy:
>
> https://sourceforge.net/projects/asm...th_6800-stuff/ <
> https://sourceforge.net/projects/asm68c/files/fig-forth_6800-stuff/>
>
> I've managed to get the source code to assemble with a cross-assembler
> supplied by Bob/Corsham. It does not produce an exact copy of the original
> code, because the code uses the JMP instruction pretty much exclusively,
> and the assembler substitutes a relative BRA instruction sometimes. So my
> code ends up being several bytes shorter because of saving one byte each
> time a JMP is replaced by a BRA. That said, it appears to me that the code
> matches up with the original listing otherwise.
>
> So my problem is this: When I run the code on my system, fig-FORTH seems
> to sign on, and will accept input from the keyboard (double echos of each
> key typed) but it then does not proceed to interpret the command entered.
> The interesting thing I see by winding my way around in the code is that it
> has already properly performed a bunch of setup and produces the initial
> "Forth-68" sign on, and that has required it to already be using many of
> the Forth commands that were defined by machine language. This indicates to
> me that some of the command interpretation is working. The I/O from/to the
> terminal is by calls to the system monitor I/O routines, and that seems to
> be also working, despite the double echos of the typed characters. It just
> does not proceed to interpret what is typed in at all.
>
> Of course, I have no idea if this code ever worked properly, or if I am
> encountering early buggy code. So I'm looking to see if anyone else has
> ever seen the fig-FORTH working on a 6800 system? Any pointers to good
> working code?
>
> Thanks for listening!
>
> smp
> - - -
> Stephen Pereira
> Bedford, NH 03110
> KB1SXE
>
>
>
It's been 20 years now since VCF 6.
VCF 6 took place October 11-12th, 2003 at the Computer History Museum
The web page for that event is:
https://vcfed.org/events/archives-show-summaries/vcf-west-archives/vcf-west…
Due to the extraordinary efforts of Kay Savetz, Clay Cowgill, and Josh
Malone over the past two years, some of the talks from Vintage Computer
Festival 6 have been recovered!
The recordings were in very poor condition and took extreme measures to
recover. The audio is often not good. Sometimes it is very bad. But this is
the best that they could do from very bad recordings.
C. H. Ting, Jef Raskin, John Ellenby, and Gary Starkweather are dead now,
so these are voices from those who passed.
They have the audio of the five recoverable sessions from VCF 2003 up at
Internet Archive.
Len Shustek – Computer History Museum
https://archive.org/details/len-shustek-computer-history-museum
Bruce Damer – The Joys and Trials of Computer Collecting
https://archive.org/details/bruce-damer-computer-collecting
David Jaffe / C. H. Ting / Kevin Appert / Dwight Elvey – Forth
https://archive.org/details/vcf2003_forth
Jef Raskin – Apple and the Humane Environment
https://archive.org/details/vcf2003_jef-raskin
John Ellenby / Gary Starkweather / Dave Robson / Peter Deutsch / Charles
Simonyi – Xerox Alto panel
https://archive.org/details/xerox-alto-panel
========
Jeff Brace
VCF National Board Member Chairman & Vice President
Vintage Computer Festival East Showrunner
VCF Mid-Atlantic Event Manager
Vintage Computer Federation is a 501c3 charity
https://vcfed.org/ <http://www.vcfed.org/>
Does anyone have any experience with the IBM BookManager format and the
tools to read it?
I've not found any way to open them on a Mac. No joy on Linux yet
either; there's an old unmaintained tool that uses a 32-bit Java app.
I found 2 Windows tools.
One, IBM Library Reader, won't install on Win11.
https://www.ibm.com/support/pages/ibm-library-reader-windows
The other a Java app, IBM Softcopy Reader.
https://www.ibm.com/support/pages/ibm-softcopy-reader
It installs and runs on Win11 and I can print to PDF -- but only 1 page
at a time. Selecting multiple pages give me an empty PDF.
I found the original IBM CUA documentation and want to convert it to
some more modern, open format, but I am not having much luck...
--
Liam Proven - Profile: https://about.me/liamproven
Email: lproven(a)cix.co.uk - Google Mail/Hangouts/Plus: lproven(a)gmail.com
Twitter/Facebook/Flickr: lproven - Skype/LinkedIn: liamproven
IoM: +44 7624 227612 ~ UK: +44 7939-087884
ČR (+ WhatsApp/Telegram/Signal): +420 702 829 053
We have decided to move VCF East to April 12, 13 & 14. There was a
significant number of people that were traveling to see the solar eclipse,
which takes place on April 8 in the United States. If we didn't move the
date, then attendance would have been impacted significantly. Those dates
are available at InfoAge and are now reserved.
More details will be coming soon:
* Consignment moving to a new more spacious location
* Possible on-site food cooking
* Discount hotel blocks
* More great speakers
* Plus more!
The themes this year:
1) The Rise of the GUI
2) Computer Art
Thanks!
Jeff Brace
VCF National Board Member Chairman & Vice President
Vintage Computer Festival East Showrunner
VCF Mid-Atlantic Event Manager
Vintage Computer Federation is a 501c3 charity
https://vcfed.org/ <http://www.vcfed.org/>
Hello!
I have an ongoing project to restore a Datapoint 2200 version II and in the
process of doing so I created a small simulator for it to understand it
better. The simulator is now in the condition that it runs the cassettes
that I try on it quite well.
The simulator compiles on Macos and Linux.
https://github.com/MattisLind/DP2200
A short movie clip when it is running:
https://youtu.be/XfsMBhP13ww?si=CHpFKe8eecWjdxDC
Having a simulator for a 2200 if there is no software around is no point.
There are some tapes on bitsavers.org and a couple of other collectors do
have cassettes that can be read.
But is there anyone else out there that is sitting on tapes for a Datapoint
2200 (or 5500, 6000, 6600)?
Tapes can be read on a normal mono audio cassette tape recorder and fed
into a PC which samples the signal, preferably at 44100 kHz with 16 bit
resolution. It is important to not overdrive the input of the computer so
that the signal becomes a square wave.
/Mattis
Although I knew that Ampex was a supplier of Multibus non-volatile RAM
boards (MC-8080 and MCM-8086) - Memory Products Division - I didn't realize
that they had competed for a while in the DG-compatible market alongside
companies like Digidyne, Fairchild, Bytronix, and SCI Systems (according to
court documents and the trade press).
Can anyone shed light on what they offered and when? And perhaps why?
Thank you,
paul
Hello all,
This is a reminder that the Vintage Computer Federation's warehouse will be
sealed for renovation, reorganization, and inventorying starting on *January
1st, 2024*. As such, no items will be permitted into or out of the
warehouse unless absolutely necessary. As many VCF members have used the
warehouse for storage of their personal belongings, it is imperative that
they either come to retrieve their belongings or notify me off-list (
thomas.gilinsky(a)vcfed.org) what of theirs is currently stowed in the
warehouse so that I may tag it and relocate it outside of the warehouse.
Please provide *verifiable proof* that the item in question is your
personal property, AND that it was not given to VCF as a donation.
*All items within the warehouse that have not been verified and tagged by
January 1st will be treated as the property of VCF.*
If your item has been verified and tagged before January 1st, but you are
not able to collect it, then you will still be able to pick it up after the
cut-off date, but *ONLY* if it has been verified and tagged. And, of
course, we will periodically nag you to come collect as well.
Thanks,
-Thomas Gilinsky
Vintage Computer Federation Warehouse Manager
SMS was based in Mountain View starting in the 70's. They sold DEC-compatible Q-bus storage systems in the early 80's and transitioned into IBM PC disk storage ASICs and boards under the OMTI brand in the late 80s.
What happened to them after that? Some CC'er in Silicon Valley must know :-)
Tim N3QE
Get Outlook for iOS<https://aka.ms/o0ukef>
I have a formerly-gorgeous 27-inch Samsung monitor:
Model LF27T350FHNXZA
Serial 0AS1HCNR904588L
S/W M-T3527FGGA-1006.1
that now has a minor defect. The "wallpaper" has a dim stripe about
1/6th of the screen width, top-to-bottom, about 1/6th from the right
edge, where the blue band appears when I run its self test. Windows
display almost normally, with a little bit of dimness in that band for
some colors. White is fine, black is gray, .... Changing the wallpaper
doesn't change it. Fiddling with its internal settings doesn't change
it. Photo at http://vandykle.mynetgear.com/Samsung-27.jpg.
Is this the sort of thing that can be repaired at reasonable cost, or
should I just live with it until the monitor fails altogether?
That is my question.
I have used a couple of versions of the SCSI2SD boards in the past with
Viking, Emulex QC07, DEC RQXZ1 controllers in the past, and also direct
connections to MicroVax SCSI buss's.
There are other manufacturers of these SD to SCSI emulators now. What is
the current SOA? What works, what doesn't work with DEC hardware?
Doug
Viewsonic 22 inch VX2262wm widescreen LCD
VGA up to 1680 x 1050 resolution, VIDEO Response as fast as 2ms.
Viewsonic LCD VX2262wm (brochure)
https://www.viewsonic.com/eu/products/sheet/VX2262wm
===
It was apparently indeed in a self-test mode.
When I fed it, it actually worked well.
When I looked at it using my video configuration in KDE on Debian 12,
it claims to be a Viewsonic VX2262wm.
Van Snyder
I was given a 22-inch Viewsonic monitor. The label had been scratched
off. It has four switchesd below the screen, labeled 1, 2, an up arrow,
and a down arrow.
When I plug it in, it flashes Red, Blue, Green, White at about one-
second intervals. Pushing the buttons doesn't affect it.
I haven't attached a VGA or DMI to it.
Is it irreparably broken?
Van Snyder
Hello,
As some may recall I have been working on getting a VT100 going again. I
have made good progress and I think the main board is probably OK now (see
here if you are interested:
https://robs-old-computers.com/2023/11/19/vt100-keyboard-constant-clicking-f
ault/). Possibly I still need to replace the NVRAM, but I am leaving that
until I fix the problem I want to describe next.
The problem is that there is no image on the screen. This is because the
monitor board is not doing anything, there is no glow from the neck of the
tube etc. I have found that this is because the fuse on the 12V input to the
monitor board is open circuit.
Of course the worry is, why? There could be a fault on the board. I have
tested the transistors in circuit with a multimeter and they appear to be
OK. I used a bench PSU to give the board 12V and it drew no current (with
all connectors disconnected). I tried again with the round connector
attached to the end of the tube and it drew about 100mA and there was a
faint glow from the neck of the tube.
I am hesitant just to replace the fuse and try it. I am hoping for some
suggestions on how to test this safely (in particular without involving the
flyback transformer) to find if there is a fault.
For information, the monitor is an Elston and I pre-emptively replaced all
the electrolytics on the monitor board apart from the non-polar one. Some
details of what I did are here
https://robs-old-computers.com/2023/10/01/vt100-ram-fault/. Although I have
since realised that I didn't replace two of them because they looked like
diodes. I don't think the board I have is the one in the available
printsets.
Thanks
Rob
On Nov. 15, 1971 Intel commercially released the 4004 microprocessor which
some consider to be the first. Nonetheless, even if not in agreement, it
made possible the instrument which drives the classic-computing industry or
at the very least our hobby!
Happy computing.
Murray 🙂
Steve Lewis wrote:
> then like the 4004, we're struggling to find evidence of actual products that
> made use of them. Wasn't the 4004 used in some cash registers, street lights, or > some weighing machines? (I don't have any specific references, just recollections > from past reading)
The major (and primary reason for the 4004 and the MCS-4 family existing in the first place) was Nippon Calculating Machine Co and their Busicom 141-PF electronic printing desktop calculator. NCM went to the US looking for a chipmaker (the capability for the level of integration required to make such a chipset did not exist in production form anywhere else in the world at the time), and two companies were engaged to develop a chipset for NCM, one being Intel, and the other being Computer Design Corporation.
As history clearly points out, Intel won the competition, developing a chipset based on the 4004 CPU, and some peripheral chips (RAM, ROM, I/O) that ended up being the operating element of the NCM/Busicom 141-PF
Calculator.
The 141-PF is a very famous calculator for this reason, but is otherwise (by appearance and function) a very ordinary calculator for the time. The fact that it had "Intel Inside" (though the term didn't exist at the time), using the world's first commercially available microprocessor chipset made with MOS Large Scale Integration technology, makes the 141-PF (and the OEM copies; the NCR 18-36 and the Unicom 141). Two versions of the machine were made, one that was a four-function machine, and another that added an extra ROM that added a square root function.
Other devices were subsequently developed that used the 4004 as their computing core, such as digital scales, electronic cash registers, and various other electronic devices.
This was only possible because initially, Nippon Calculating Machine Co. had exclusive rights to the use of the chipset. Due to some financial difficulties, NCM renegotiated the contract with Intel, removing the exclusivity clause in return for Intel forgiving some money owed on the development of the chips. This allowed Intel to sell the chipset to the open market. Once this occurred, Intel aggressively marketed the chipset as the MCS-4 microprocessor system, providing extensive documentation, development tools, both hardware and software, and lots of support for anyone wishing to develop an electronic system based on the 4004.
The Busicom 141-PF calculator and its OEM versions were the first commercially-available electronic devices that had a general-purpose microprocessor with firmware implementing the machine’s logic, and thus represent the historical benchmark.
These were actual products that were sold under the Busicom brand as well as NCR and Unicom. It isn’t known how many of these machines were actually made, but enough were made that they can still (rarely, though) be found today. Nippon Calculating Machine Co. in Japan manufactured and distributed them under their Busicom brand name, as well as providing the machines with subtly changed color schemes for cabinet/keyboard to OEM customers, which would market, sell, and service them under their own brand names.
Rick
--
The Old Calculator Museum
https://oldcalculatormuseum.com
P.S. If anyone out there has one of these calculators lying around gathering dust, working or not, and would like to have it see new life as part of a museum exhibit, please get in touch with me.
>>[anyone know if there's a usable web interface to CCTALK? I browse it
>>through the ARCHIVE on CCTALK.COM
>KenUnix - 27 Nov 7:13 p.m.
>When I try and connect to it I see in the tab chinese verbiage
>CCtalk ???????????-?????????????? and it tries to send me to
public.hujia.104.cdn20.com
Sorry, my mistake - I meant the CCTALK archives at: classiccmp.org
Dave
--
----------------------------------------------------------------------------------
Search "Dave's Old Computers" see "my personal" at bottom!
>26 Nov 8:14 p.m.
>I was trying to format an HP LIF disk from IMD (77 tracks, 30 sectors,
>5 interleave, 512 MFM encoding, 256 bytes per sector). Which I can
configure
>IMD for using the interactive user interface. EXCEPT it won't
>accept entering sector numbering starting from 0 to 29. It always wants to
>start at 1.
>So it looks like it's just a trivial bug in the interactive user interface.
Hi Marc,
I'll look into it - it will take me a while as I have to dig out and set up
a real DOS IMD system...
[anyone know it there's a usable web interface to CCTALK? I browse it
through
the ARCHIVE on CCTALK.COM - it's a web interface which presents "reply"
button
- but it doesn't work - so I have to cut/paste/edit the existing post and
send
it back by email - and HOPE that it finds its way to the proper thread!]
Dave
--
----------------------------------------------------------------------------------
Search "Dave's Old Computers" see "my personal" at bottom!
Please fill out this pre-event survey for VCF East 2024:
https://bit.ly/vcfe2024pre
Thanks!
Jeff Brace
VCF National Board Member Chairman & Vice President
Vintage Computer Festival East Showrunner
VCF Mid-Atlantic Event Manager
Vintage Computer Federation is a 501c3 charity
Hi, this is "Dave Dunfield" - best known here for being the site owner of
"Daves Old Computers" and the author of "ImageDisk"
No longer have the email I used to use to access cctalk... (hence the
change)
Just in case anyone is interested:
I've been working on a "retirement" project:
I am publishing some 40+ years worth of source code to "stuff I've written".
This includes my DDS products, lots of "internal tools and utilities" and
other misc. "stuff". Of special interest to cctalk members, this include my
Altair, Horizon, H8, D6809, MOD8, ImageDisk and some other related
material.
Most of it is C (mainly for my own compiler - one of the items), some in
assembly, and a few "custom languages".
Available from my personal site:
https://dunfield.themindfactory.com
or go to: "Daves Old Computers" -> "Personal"
Please note that I no longer monitor these forums on a regular basis.
Anyone wishing to reach me, please see the "contact" link on my site.
Dave
--
----------------------------------------------------------------------------------
Search "Dave's Old Computers" see "my personal" at bottom!
Sorry if not linked correctly - looking through the list via the archives..
"reply" option doesn't seem to work (at least for me - older Chrome)
>but my understanding was that the 4004 and 8008 were effectively developed
>at the same time? And were announced or available about within one month
>of each other?
I believe they were, although I never had much experience with the 4004...
I did play a bit with the 8008 - and wrote a simulator/emulator for the
8008 system I had, a Canadian:
MIL (Microsystems International Limited) MOD8 (Modular-8)
it was also available as:
GNC8 (Great Northern Computers) 8008
You can get MOD8 simulator from "Daves Old Computers" and actually
experience
using an 8008 based system including the built in "MONITOR-8" ROM software
as
well as "Scelbi 8008 BASIC" (one of the earliest) - source to both
provided.
If you care to, I included ASM88 (my 8008 cross assembler) so you can try
writing and running 8008 code!
-Be aware that MOD8.COM itself is pretty old and is 16-bit DOS software.
This means it WON'T run under modern Windows, but it does work well in
DosBox (I recommend the one I have on my site)
Dave Dunfield - https://dunfield.themindfactory.com
--
----------------------------------------------------------------------------------
Search "Dave's Old Computers" see "my personal" at bottom!
Folks,
While looking for something else I found few iPaqs. There are two later
models, mud coloured with plastic screen covers both work fine. Sadly the
silver one with the battery has a broken clip, so you need to secure it some
how works if you do this. The one with the missing door does nothing. There
are two power bricks, one USB lead, one docking station. No stylus. Can't
remember when I last looked at these. Free collection from Manchester.
Dave
> Rob Jarratt 25 Nov 2023 8:47 a.m.
> Of course the worry is, why? There could be a fault on the board.
> I am hesitant just to replace the fuse and try it...
An older CRT terminal is probably a bit too much current draw for this, but
you can prob use it in a setup to test parts...
A very handy gadget you can make very easily, which I use all the time when
testing small devices in "unknown operational state" is a simple current
limiter. (following discussion based on North America power, numbers may be
different if you are in a different part of the world).
The "smallest" typical line circuit is 15A which is more than enough to
cause
damage to small devices experiencing excessive power draw through a fault
(often indicated by a blown fuse).
The "limiter" relies on the fact that an incandescent light bulb will
draw/pass
a fair bit of current when it is cold, and much less when it's warm. (this
is
because they are designed to "turn on" fast)
In my case, I have three light sockets wired in parallel, all in series with
the hot side of a receptacle. This lets me change from a single 25w bulb
(very
little current possible) up to 3 100w bulbs (a good part of amp before it
seriously limits). For example, 100w bulbs draw .833ish (100/120) when
operating fully lit - x3 = 2.5A max current - this would only happen if the
device under test was "shorted", presenting 0 series resistance and would
therefore effectively have 0 volts across it.
In practice, you could prob. draw 1/2 amp (160ish ma per bulb) without
warming
them "too much" to seriously drop a lot of voltage. Much more than that and
the
bulbs will light up rather than hearing "popping" sounds from the device
under
test :-)
-- Btw, I've given most of my CRT terminals away - For VT100's I use my
"PC100"
program - It provides very good VT100 emulation using an old DOS (or DosBox)
PC - it remains "text" mode, so it turns "smooth scroll" into "slow scroll"
and
large fonts into "double spaced" fonts - but in all other respects nothing
I've
used it on has been able to tell it's not an actual VT100!
(I'm sure there are better/graphical VT100 emulations "out there")
Dave
--
----------------------------------------------------------------------------------
Search "Dave's Old Computers" see "my personal" at bottom!
Hello list,
there is a PDP 11/23 Plus with two RL02 drives available near Stuttgart, Germany.
The configuration corresponds to the one shown here:
http://www.cosam.org/computers/dec/pdp11-23/cabinet.html
Contact me off-list if you are interested.
Cheers,
Pierre
-----------------------------------------------------------------------------
http://www.digitalheritage.de
Not a COMPUTER but I have a Pro-log M900 EPROM burner that has a second source INS4004 on the board. This isn't my M900 (my INS4004 is white/gold), but here is a view of the board/chip: http://www.wolfgangrobel.de/programmer/img_m900/m900_06.jpg
-W
Date: Wed, 22 Nov 2023 09:36:19 -0500
From: Paul Koning <paulkoning(a)comcast.net>
Subject: [cctalk] Re: Intel 4004(sp?)
To: ED SHARPE <couryhouse(a)aol.com>, "cctalk(a)classiccmp.org"
<cctalk(a)classiccmp.org>
Message-ID: <7ECB8A1C-DB41-45E7-9416-F71AD3289C94(a)comcast.net>
Content-Type: text/plain; charset=us-ascii
> On Nov 22, 2023, at 3:51 AM, ED SHARPE via cctalk <cctalk(a)classiccmp.org> wrote:
>
> Was there ever a COMPUTER using a 4004 that you cud really do something or did tat finally arrive with the 8008 as in the skelby shelby sp? 8008 i now there was an Intel INTELIC 4 (?sp) could n that use 4004 or one of the later 4000 numbered proc. We have an intelec 8 and 8 inch floppy drives here at smecc musem .... always wanted a 4!Ed
Don't know about commercial products. But a classmate of mine got Honors in Independent Study for a project where he built a useable general purpose computer out of a 4004, plus a boatload of other stuff. It filled a wire-wrap panel board about 8 x 10 inches. He wrote some software for it as well, and took it to a summer internship at one of the National Labs (in the Midwest -- Argonne?) where as I understand it they liked it enough to ask him for a copy of the system. He graduated in 1975, so the work was done in the year or so leading up to that.
One complication was the terminal I/O (Teletype 33); originally he had a bit-banging interface for that, which isn't easy on a 4004. At some point he finagled a UART chip out of one of the DEC field service engineers, I think that was one of the first single chip UARTs, used in the earlier DEC PDP-11 terminal adapters.
paul
what about that intel 3000 bit slice thing is it almost a microprocessor yes no and why? Ed#
In a message dated 11/21/2023 3:34:03 PM US Mountain Standard Time, c.murray.mccullough(a)gmail.com writes:
There are 5 other possibilities for the honour:e or noe and why?
No. 2:
Texas Instruments applied for a “computing systems CPU” in 1971 and awarded a patent in 1973. The question though is: did TI have a functioning processor based on the TMS1000. Not sure if they did!
No. 3:
“In 1969 Four-Phase Systems built the 24-bit AL1, which used multiple chips segmented into 8-bit hunks, not unlike a bit-slice processor. In a patent dispute a quarter century later proof was presented that one could implement a complete 8-bit microprocessor using just one of these chips. The battle was settled out of court, which did not settle the issue of the first micro.”
No. 4:
Is this the first microprocessor?
Here is a source:
https://historydraft.com/story/microprocessor/pico-electronics-and-general-…
No. 5:
"In 1969 Four-Phase Systems built the 24-bit AL1, which used multiple chips segmented into 8-bit hunks, not unlike a bit-slice processor. In a patent dispute a quarter century later proof was presented that one could implement a complete 8-bit microprocessor using just one of these chips. The battle was settled out of court, which did not settle the issue of the first micro."
It seems the answer depends on what is a microprocessor...I suppose when it comes down to capitalism patents count more than anything else!
Happy computing,
Murray 🙂
On Tue, Nov 21, 2023 at 5:00 PM ED SHARPE via cctalk <cctalk(a)classiccmp.org> wrote:
I had heard something about a f14 chip pehS being first but not avail. To general public???Ed#
Sent from AOL on Android
On Tue, Nov 21, 2023 at 2:41 PM, Joshua Rice via cctalk<cctalk(a)classiccmp.org> wrote:
On 21/11/2023 09:03, ED SHARPE via cctalk wrote:
> So what are the other contenders and what do they bring to table
The 4004 was definitely the first commercially available single-chip CPU
on the market, but if you include multi-chip LSI designs, the lines get
blurry.
I just pushed two additions to https://github.com/pkoning2/decstuff :
In "patches" a new patch for the DEUNA driver. This fixes a problem seen when doing user (as opposed to DECnet) I/O, as well as two errors that show up when using units beyond the first.
Directory "ntp" is new. This is a simple NTP protocol client for RSTS, which will synchronize the system clock with an NTP server on the LAN. It includes handling of timezone rules, so the right thing will happen at daylight savings time (summer time) boundaries. The clock is maintained to the full RSTS resolution -- typically 1/50th or 1/60th second, but can be as low as 10 ms if the KW-11/P clock is used.
paul
I'm working on some code where it would be handy to map the top of the I/O page along with the bottom of physical memory. An obvious hack is to point the APR to the I/O page address needed, then set the length so that the address modulo 2^22 also covers the low memory range.
It seems from the architecture manual that this would work, and SIMH seems to do this (since it adds VA and PAR then masks with a 22 bit mask). Would this work on real hardware?
paul
Folks,
Trying to reduce the weight in my loft and I would like to donate my HP
Photoplotter to a good home.
. Photos of the plotter and some sample plots are on my OneDrive here:-
https://1drv.ms/f/s!Ag4BJfE5B3ongspXY7zySSZsDj-WMg
It has both serial and IEEE interfaces and uses HPGL like the GP and Roland
pen plotters.
The plots on there are the samples built into the plotter taken on a Fuji
XE-1 digital camera and are cropped because the Fuji does not have a full
frame sensor.
The tube is actually a white tube and the colours are generated by rotating
colour filters.
Its powered by a 68000 and you can see the various boards in the pictures.
Dave
> -----Original Message-----
> From: Guy Dunphy <guykd(a)optusnet.com.au>
> Sent: Thursday, November 16, 2023 9:54 PM
> To: General Discussion: On-Topic and Off-Topic Posts
<cctalk(a)classiccmp.org>
> Subject: Re: [cctalk] Free to good home HP 7510a Photo Plotter - UK
>
> Hi Dave,
>
> I'm very interested, and happy to pay for packing and airfreight to
Australia.
Also had one other query. I will now keep things private...
> Also something for the unit. Do you happen to have originals of the
manuals, or
> just the digital ones you've posted?
I don't think I have any paper manuals.
>
> Do you have a 'pack and ship' company nearby, who could do a safe packing
> using foam-in-place, or soft foam block padding, then send by airfreight
to
> Sydney Australia?
>
I should have said the plotter came to me from France packed in expanded
foam. I think I may still have the packing.. I will check and report back...
> I'm fully aware of the costs, having recently had a HP 7586B pedestal
plotter
> sent from San Francisco in a big wooden crate (vial PCL sea freight) and a
20'
> shipping container full of thousands of service manuals arriving by sea
form the
> USA in a few days.
OK I have shipped an IBM 3174 screen controller to Europe, and a E-Prom
programmer to the USA so I may also be reasonably experienced...
>
> If you'll pass the photo plotter on to me, please reply via private email.
Ok let me talk privately...
>
> Kind regards,
> Guy
>
Dave
> At 10:24 AM 16/11/2023 -0000, you wrote:
> >Folks,
> >
> >
> >
> >Trying to reduce the weight in my loft and I would like to donate my HP
> >Photoplotter to a good home.
> >
> >. Photos of the plotter and some sample plots are on my OneDrive here:-
> >
> >
> >
> >https://1drv.ms/f/s!Ag4BJfE5B3ongspXY7zySSZsDj-WMg
> >
> >
> >
> >It has both serial and IEEE interfaces and uses HPGL like the GP and
> >Roland pen plotters.
> >
> >The plots on there are the samples built into the plotter taken on a
> >Fuji
> >XE-1 digital camera and are cropped because the Fuji does not have a
> >full frame sensor.
> >
> >The tube is actually a white tube and the colours are generated by
> >rotating colour filters.
> >
> >Its powered by a 68000 and you can see the various boards in the
pictures.
> >
> >
> >
> >Dave
> >
> >
> >
> >
> >
> >
Greetings all.. I'm looking for a Qualstar 1260S 1/2" tape system to
review/recover data from a stack of early Landsat tapes that I came into
a while back. I'd prefer the Qualstar SCSI system for familiarity but
basically I'm looking for a SCSI unit that can read 6250 GCR tapes. I'd
prefer west coast area to avoid shipping but given their (lack of)
availability I'm open to talking with anyone who might be willing deal
with it.
Steve
Hi everyone,
I've been restoring a couple of Tektronix 4404 here in the UK. (68010, 2M RAM / 8MB virtual, 1024x1024 display, C & Smalltalk-80, runs on Uniflex)
Having got past the physical restoration and using David Gesswein MFM board in place of the Micropolis HD, I've been diving into writing software.
Its been a fun - if sometimes frustrating - project. There are no docs beyond some vanilla CRT + (incorrect) graphics calls.
In particular nothing on the network stack..
(Figured out executable file format) and wrote a Uniflex to ELF file format converter so I can load stuff into Ghidra to analyze.
Code here: https://github.com/Elektraglide/tek4404
I've managed to write a DHCP client and telnetd and port uemacs and have a (kinda) working window system written from scratch in C.
Pic here:
https://miro.medium.com/v2/resize:fit:1280/format:webp/1*a8PNwQ9g_3S27AxlWS…
All the networking seems to revolve around calls to ldiddle() and wdiddle() (no kidding!) These read and write kernel values in the absence of ioctl()
Anyone here recall Network Research Consultant's network stack?
There appears to be no way of making a broadcast socket.
And of course I would love to hear from anyone who also has a Tektronix 4404
Hi... I'm seriously rusty on official RSTS installation procedures. I'm trying to install DEC C using the C_V1_2.tap file from the bitsavers bits/DEC/pdp11/rsts directory. It's actually a TPC file, in spite of what the extension suggests. Once I supply the correct format, SIMH recognizes it and RSTS can see the tape contents.
Then I try @[0,1]install c81. Point to the tape, answer the destination, and then it asks me for the "library" tape and complains when I give it the C tape again (labels don't match).
So what is it looking for? Does anyone have the C installation procedure handy?
paul
Hello,
After 18 years of acquiring artifacts, our warehouse is in need of
reorganization, as well as major renovation work - climate control, roof
repairs, etc. A total restructuring, inventorying, and refurbishment of the
warehouse is planned to commence soon - some steps such as the installation
of climate control have already been taken - however, planning this process
is made difficult by the fact that a number of our members have their own
personal belongings stored within, many without proper tagging or
documentation as such.
On January 1st, 2024, the VCF warehouse at Infoage will be closed for
renovation and organization. During this time, no items will be permitted
in or out of the warehouse bar those permitted *directly* by the VCF
Warehouse manager - Thomas Gilinsky - during monthly repair workshops.
As such, if you have any personal belongings stored within the warehouse,
and would like to retrieve it, or have it tagged and set aside for you to
collect later, please contact either me at thomas.gilinsky(a)vcfed.org, or
Doug at douglas.crawford(a)vcfed.org. Please provide *verifiable* *proof*
that the item you are describing is your possession.
*ITEMS WHICH ARE NOT CLAIMED BY JANUARY 1ST, 2024 WILL BE ASSUMED TO BE THE
POSSESSIONS OF VCF.*
Donations to VCF will still be accepted during this time - we have other
areas to store them while the warehouse is reorganized.
Thanks,
Thomas Gilinsky
Vintage Computer Federation Warehouse Manager
Jim Hall will be doing a livestream on VCF's YouTube channel:
https://youtube.com/live/FpBnRk8oWLc
We don’t give much thought these days to what “Unix” means. In 2023, most
Unix systems are actually running some version of Linux, which includes
modern tools and commands that were unthinkable when Unix hit the scene in
the early 1970s. But some 50 years later, “Unix” still lives on.
Jim will look back on Unix history and experience first-hand what it was
like to use the original Unix. Unix 3rd Edition debuted in 1973, and he
chose that version as my target. That’s transporting back in time by 50
years.
He will talk about:
* Terminal setup
* FORTRAN66 program
* nroff document
* linenum program
* For another example of using Linux like original Unix, read hist article
on Sysadmin Signal:
https://sysadminsignal.com/2023/06/19/run-linux-like-original-unix/
For more FreeDOS content, visit his website
https://www.freedos.org/
Join hist project on Facebook
https://www.facebook.com/groups/freedosproject/
Follow his project on Mastodon
https://fosstodon.org/@freedosproject
Thanks!
Jeff Brace
VCF National Board Member Chairman & Vice President
Vintage Computer Festival East Showrunner
VCF Mid-Atlantic Event Manager
Vintage Computer Federation is a 501c3 charity
https://vcfed.org/ <http://www.vcfed.org/>
jeffrey(a)vcfed.org
Well, I've got the Greaseweazle software to run, but I don't know why,
which is hardly encouraging.
Installing various Windows updates, downloading .dlls, and puting the
latter in various directories changed the error messages but it never
actually worked. But downloading the latest Greaseweazle software did,
it ran first time. So no idea what I was doing wrong (maybe 32 bit
.vs. 64 bit Windows applications?)
I can now get the list of commands when I run gw.exe. And can get help
on them using the -h option. I've not tried connecting a drive yet,
but the software can find and talk to the board (the green 'activity'
LED turns on). For example 'gw rpm' which is used to check the drive
speed by timing the index pulses times out and gives a 'no index'
error which seems entrely reasonable.
However I am not sure if I'll be able to use it. There is one very
important thing missing : DOCUMENTATION. The 'wikii' on github is
ridiculously incomplete. There is no user manual or man pages. The
software source in python (a language I've never used) has very few
comments and is not clear at all.
It's not clear to me exactly what all the options are for, and when to use them.
-tony
Hi all,
I tried several ways to get a working SCSI image to be successfully boote
on a ZULU 2024 SCSI Emulator.
1. I do have an Image of an RZ25-E drive containing RSX11M Plus, which is
booting properly. This is a raw dd based disc image of a SCSI drive.
2. I got a disc mage by Jacob, which is booting using simh, but not using
the ZULU on a physical 11/73
3. I created a fresh installation of Ultrix 11 using simh 3.9.x creating a
RD54 image which won't boot on the ZULU an the physical 11/73
4.. I created a fresh installation of Ultrix 11 using simh 3.9.x directly
into a physical SCSI drive partition, created an image via dd which doesn't
want to boot on the ZULU. Simh is booting properly from a dd image of this
partition.
5. Simh is telling me in general using a (virtual) RQDX3 controller. Maybe
the images created won't boot because of being created by the virtual RQDX
3 controller?
How to create a raw disc w/o any controller specific format - simply a
plain Ultrix 11 image as a target for a SCSI drive to be booted either from
the physical, or from a virtual (ZULU).
Best
Andreas
Hi there,
in the last weeks my last two working UltraBooks died. Today I investigated the problem
and obviously in these RDI made notebooks, the NVRAMs not only contain the boot information,
the host ID and the MAC address but also the hardware configuration.
Hence: Once the NVRAM is completeley dead, absent or replaced, the unit will not
start up any more - it gets stuck in the power on test BEFORE the screen shows any
information.
Do anyone out there have got UltraBooks or UltraBooks IIi up and running? Would
highly be interested in a dump of the NVRAM/Timekeeper!!!
The failed first generation UltraBook are (DS1643 NVRAM):
(*) U20-14-9-512P with three (!!) hard drives, no battery port
(*) U20-14-3-128B two hard drives, battery port
And my beloved UltraBook IIi (TimeKeeper DS1553-070)
(*) U40-14-1X-1024C one harddrive, battery port and creator graphics.
Reply here or PM erik(a)baigar.de,
Thanks
''~``
( o o )
+--------------------------.oooO--(_)--Oooo.-------------------------+
| Dr. Erik Baigar Inertial Navigation & |
| Salzstrasse 1 .oooO Vintage Computer |
| D87616 Marktoberdorf ( ) Oooo. Hobbyist / Physicist |
| erik(a)baigar.de +------\ (----( )---------------------------+
| www.baigar.de | \_) ) /
+----------------------+ (_/
So advice to all owners: Backup your NVRAM contents and I'd be more than happy
to get in touch with you!
Not affected seem to be the PrecisionBooks (e.g. H16-12-8-512L2, two hard-
drives and battery port) as they do not contain an NVRAM/TimeKeeper.
Hey Steve I know this is a year later but I have the Nortronic Read Write heads you were looking for. They are currently on eBay. The listing is below. Just do a search and they will come up.
Nortronics Magnetic Head Assembly. NOS Part 9164-0068. Radio Cart Machines.
Hope this helps.
Mark
Sent from my iPhone
Hi,
I have a PDP-11/40 that I've wanted to restore for many years now. I got
it in the standard 21" cabinet but the power supplies were in a cardboard
box. I'm not certain how the power supply bundle mounts in the cab. Also
I'm missing the power supply cables. Do they use currently available Molex
connectors?
Could someone on the list perhaps take a picture or two to show me how the
supplies are supposed to mount in the rack? Also, a shot of the power
cable routing would help.
Thanks,
Marc Howard
I have a 11/35 buried in my garage. Contact me off list if you’re unable to find what you need and I’ll get you some pictures.
Kirk
Sent from my iPad
> On Oct 21, 2023, at 12:55 AM, Marc Howard via cctalk <cctalk(a)classiccmp.org> wrote:
>
> Hi,
>
> I have a PDP-11/40 that I've wanted to restore for many years now. I got
> it in the standard 21" cabinet but the power supplies were in a cardboard
> box. I'm not certain how the power supply bundle mounts in the cab. Also
> I'm missing the power supply cables. Do they use currently available Molex
> connectors?
>
> Could someone on the list perhaps take a picture or two to show me how the
> supplies are supposed to mount in the rack? Also, a shot of the power
> cable routing would help.
>
> Thanks,
>
> Marc Howard
Sent from AOL on Android
----- Forwarded Message ----- From: "ED SHARPE" <couryhouse(a)aol.com> To: "linimon(a)portsmon.org" <linimon(a)portsmon.org>, "Ed Sharpe" <couryhouse(a)aol.com> Cc: "Mark Linimon" <linimon(a)portsmon.org> Sent: Thu, Oct 19, 2023 at 8:29 PM Subject: Re: [cctalk] Re: 11/15, 11/20 systems and parts, more I have one pdp 11/20 aith procesdor abd ore untested in the garage have not taken for display at our museum. If you had something we likedre it could be yours
Want hp 3000 series 2 or 3
Hp 2883 or 2884 disc or 2888 disc (plus some other stuff)
A nice large early stash of historic semiconductors
Early wireless( as in radio no routers!)
Anything related to mccarty wireless telephone of San Francisco
Related things to Francis or Ignatius mccarty
ERly DeForest radio equipment.
Exotic hp computers
There us a few areas
Nike missile Related hardware etc
Thanks ed sharpe archivist f or smecc museum
Sent from AOL on Android
On Thu, Oct 19, 2023 at 5:02 PM, Mark Linimon via cctalk<cctalk(a)classiccmp.org> wrote: I sincerely doubt I could afford a PDP-11/20 but I still have nostalgia for the first machine I used at university. So I have to ask.
mcl
Is there anywhere I could go where people who are playing with
this system hang out? I used to have a couple of very early
Model 16's and ran Xenix on them. I also worked with a couple
of 6000's in a real production environment. Lately I got interested
again and found an emulator that does a real good job and a
bunch of rather interesting software for it. Some that wasn't
around when I was doing this for a job. In one case, the package
has a note that while it installs they couldn't get into it because
the first thing it did was ask for username and password. Well, I
figured out how to get into it and maybe there are others interested.
It's nice to be able to see how real work was done back in the day.
I have always wished some of the production software for the PDP-11
had survived, but at least this is a start.
bill
This Saturday, Oct. 21, 2023 at 6:30PM EDT, we will livestream to VCF's
YouTube channel (https://www.youtube.com/@vcfederation) a talk with Liza
Loop, Byron Stout, Wil Lindsay and Jim Hall.
We will be talking about Educating today's children with vintage computers.
We will take questions from the chat part of YouTube.
Future livestreams:
11/4 - Jim Hall - Linux like Unix
11/11 - Liza Loop, Cynthia Solomon, Brian Silverman & Margaret Morabito -
Educating students with vintage computers over the decades.
I hope to see you there!
Hello all,
are there some experiences to install as well as to configure a Dilog
SQ706a QBus SCSI controller in a PDP11/73 successfully?
The controller in question is working properly, that's executing the self
as well as the host DMA connection tests successfully.
The format procedure of a physical and of an emulated SCSI drive will be
executed with success also.
But how to configure the Dilog SQ706a as well as the 11/73 properly, so
that the SCSI drive can be accessed as DU0.
I'm using an SCSI RSX image on a ZULU SCSI emulator inherited from an 11/73
running successfully using a native DEC SCSI controller.
I don't find any successful procedure on the web beside the manuals on
bitsavers, which only can be seen as examples.
A.
I was unable to locate schematics and/or a maintenance manual for the
Unibus M7846 RX11 floppy controller board.
If anyone has these could you please scan them and make them available.
Thank you.
Tom
I have been pointed to the following discussion
https://forum.vcfed.org/index.php?threads/ibm-5110-initial-info.1224000/pag…
There, voidstar78 was apparently trying to contact me. Since my mail
addresses are all functional (noone else had any problem with them, be it
my personal or our museum's address), I wonder what he did, and I don't
have a gmail address.
I'm not on this forum, and I don't want to register to "yet another
forum", so I can't even look at the pictures. But it seems to have been an
interesting discussion. Pity it wasn't on this list.
Christian
At Mon, 18 Sep 2023 10:55:13 +0200 (CEST) Christian Corti
<cc(a)informatik.uni-stuttgart.de> wrote:
>as it will be soon of importance to us, I am seeking for the systems
>engineering manual and drawings, well, everything about the IBM 727 tape
>drive (not the 729!). I especially need the module locations charts and
>the module schematics.
Just a few weeks ago I donated to the Computer History Museum a set
of 14 original IBM black binders of "Type 7xx" manuals from the
1950s, including the 727. That one is likely to be the same as what's
on bitsavers, but since it's no longer in hand I can't check. They
probably haven't made it through the CHM cataloging process yet.
I recently had a need for BC308 transistors. Of course those have been
unobtanium for quite some time.
My search beyond a distributor then went to eBay where I found Unicorn
Electronics.
More to the point I see from their website Apple 1, Apple ][ and Apple 1a
Kits along with Apple 1 and Apple II parts are available.
I thought some here might find this useful.
https://unicornelectronics.com/
Don Resor