> Paul Koning <paulkoning(a)comcast.net> wrote:
> On the other hand, the even more obscure DECnet/8 was found a couple
> of years ago. Its main limitation ....
Besides being Phase-I, DECnet/8 is not a "complete" implementation. The
only application provided is a console to console talk program that can only
talk to other PDP-8 nodes. There's no FAL, CTERM/RTERM, NFT, NCP, or any of
the other things you might expect. I think DEC expected customers to write
their own RTS/8 and DECnet-8 applications.
Bob
Nice, Jay! Thank you
> On Feb 22, 2026, at 18:44, Jay Jaeger <cube1(a)charter.net> wrote:
>
> On 2/21/2026 9:27 AM, Jacob Ritorto via cctalk wrote:
>> Hiya.
>> Is DECnet for RT-11 still lost? If not, anyone got a link to it?
>> thx
>> jake
>
> I may have *SOME* of it. I have three RX50's and one RX02 that have some DECNet RT V2.1 files. They are NOT distribution disks, and the disks have hand-written labels, so they might not even contain what the handwritten label indicates - I have not checked them out under SimH.
>
> Anyway, I just put them in my "bitsavers contribution" area of my Google Drive, and they can be found on my Google Drive at:
>
> https://drive.google.com/drive/folders/1fiOScGSpvLiVQ0yyOg2yC5EpqRKiKWQ5?us…
>
> JRJ
Hello,
I'm an employee with the National radio astronomy observatory here in Socorro New Mexico.
As part of our NGVLA upgrades, we are seeking to get rid of old data tapes from the tape reel days of Computing. These contain things such as the boot loaders, OS, specific collection programs and antenna movement programs.
I personally would hate to see these just wind up in the literal dumpster and would like to see them sent out to a museum or an archiving body that can preserve them and keep them safe as a dynamic part of history.
If anyone is interested or knows someone who would be interested in the VLAs data tape library please let me know.
V/R
Danielle Werts
Front end engineer
VLA Socorro New Mexico
I've started working on a disassembly of the Digital VT320 video
terminal, so I'm diving into 8051 assembler.
At the moment, I'm using the D52 disassembler and am getting decent
results, although I wished I hadn't used the analyse option to produce
a starting control file; it doesn't cope at all well with code
involving lots of jump tables because the control flow appears to
break, and it decides that much of the code is just data. Ho hum.
Nevertheless, the code looks pretty understandable at the moment, so
the next stage is to annotate by hand, instead of updating the control
file, and to assemble whenever I make a change so that I can be sure
that I can produce the original ROM.
There isn't an "A52" to match D52, so I was wondering if anyone has
recommendations for a FOSS macro assembler that will take D52's output.
I ask for a macro assembler because there are some modifications I'd
like to make to the source file to clear things up. One of these would
be to cope with the fact that DEC decided that all of their jump tables
would have addresses in little-endian format, despite the 8051 being a
big-endian device. So, the normal "dw" directive is not going to work
for me, and I'll need to do something like:
dwl macro %1
db low(%1), high(%1)
endm
(Totally pulling that syntax out of my bum, btw.)
A quick search finds as31 and naken_asm - anyone use these?
I'd also love to hear recommendations for emulator code for the 8051,
preferably simple C because I'm going to need to hook up a 2681
DUART, 5911 EEPROM and DC7081 video chip (all presumably new code) to
get this working.
Paul.
On 2/21/26 07:48, emanuel stiebler wrote:
> Everex had their own Unix version (5.4?), "ESIX" which ran on intel.
> Probably they ran that?
No, it ran SCO Unix, which was the business version popular at the time.
I found the ad and edition of computerworld in the Internet Archive: The
issue is the June 22nd 1992 one and it has all sorts of interesting
articles and predictions from people like Gates, Jobs, Wang, Bell, and
others. Going to be worth a read here.
Anyway, on the PDF download it starts at page 186-189.
They benchmarked it against a Dec 433MP (could also do 6 processors) and
a SystemPro (2) with 60 user loads. Wow.
So back in the 1990's the dream server for me was an Everex system
called the Step/MP. Cube shaped, EISA bus, could take multiple 386/33
CPU blades and ran SCO. But all I had was memories as there was very
little info on the Net.
Today I was going through a closet I haven't been able to access for 20
years and in the Computerworld 1992 25'th anniversary issue I found it:
A 2 page monster ad about the Step/MP. $13k, could have six 486/33 CPUs,
EISA/ISA bus, 64mb of memory stock with support for 4mb SIMMs. So it did
exist....
Question is did any of them make it out there? SCO was the obvious OS,
but given that it was a SMP system I wonder if there was an NT 4.0 HAL
out there like there was for the NCR 3550/4300 series of multiprocessor
systems. Anyone have one? Seen one in the wild?
I am curious. Everex/STEP was always the best quality system for a
server, right alongside Compaq. Sad they went out of business.
Chris
A buddy of mine showed off his Wyse 520 and was wondering if anyone on here
has one and if you use it. It's a nice looking keyboard but I'm not that
fond of the small screen.
Daniel
sysop | Air & Wave BBS
finger | calcmandan(a)bbs.erb.pw
Hi,
did anyone ever create an image of the Sun 386i firmware (EP)ROM?
There was a discussion on cctalk two years ago, but it seems the ROM was not dumped back then.
https://marc.info/?l=classiccmp&m=171014099801502
The firmware dump would obviously be very useful to write an emulator for the 386i.
Our department here at Bamberg Uni bought four 386i machines back in 1989 as their first
workstations for a whooping 230k German Marks. It would be nice to be able to show a running
machine or an emulation at our upcoming anniversary (the department itself was only founded
25 years ago, but the 386i machines were purchased more than a decade before that date by
the people who later founded the department), but none of the 386i machines here have survived..
So if someone has a 386i for sale (ideally in Europe, I'm in Germany) I'm also interested...
Best,
Michael
What timing! I’ve been down the 8051 rabbit hole for a few months now.
I cut my professional teeth on Intel assembler back in the mid 80’s so. Never worked with the 8051 (8048/8085/8086/8088 were the processors I used).
What I’ve found so far that may be of use are:
SDCC (Small Device C Compiler). It has an assembler, sdas. I haven’t used it.
I also found the original Intel Macs-51 tools (macro assembler, linker, librarian). I probably prefer the Intel tools because they remind me of the tools I used way back when.
The Intel DOS tools will run on msdos emulators, dosbox-x is one I found useful. It is possible to run dosbox-x without the gui (set up the DOS commands in the autoexec.bat)
dosbox-x -silent -nomenu
The Intel DOS tools are located here:
https://www.retrocomputing.nl/wp-content/uploads/PLM-51/PLM51_V1_2.ziphttps://www.retrocomputing.nl/wp-content/uploads/PLM-51/PLM51_V1_4.zip
Intel documentation can be found with an internet search at a number of sites. The relevant titles are:
MCS-51 MACRO ASSEMBLER USER'S GUIDE
MCS-51 UTILITIES USER’S GUIDE FOR DOS SYSTEMS
EXTERNAL PRODUCT SPECIFICATION FOR THE MCS-51 OBJECT MODULE FORMAT
The msdos emulator is here:
https://github.com/joncampbell123/dosbox-x/releases/tag/dosbox-x-v2026.01.02
I ran into problems building SDCC from the “official” repo. I used the following repo sucessfully:
https://github.com/swegener/sdcc.git