OpenTTD Windows NT RISC

(This is a guest post by Antoni Sawicki aka Tenox)

A couple of years ago 1984 aka Nitton Åttiofyra ported OpenTTD to Alpha AXP Windows NT. This was a monumental work and we’re extremely grateful for this!

However I was not fully satisfied with this, as I could not run it on MIPS or PowerPC. This port required Visual Studio 6.0, which is not available for either of these platforms. Downgrading the code to compile with older visual C was quite a lot of work for which I did not have time.

Fortunately now we have a tireless army of robots to perform code rewrites. With help of LLM I got it to build on Visual C 4.0. Now available for all NT RISC platforms!

OpenTTD running on Windows NT MIPS on QEMU

Download from here.

Have fun with virtualization!

WinTown – Micropolis (SimCity) for NT RISC

(This is a guest post by Antoni Sawicki aka Tenox)

If you ever wanted to play SimCity on a NT RISC machine, your dreams finally came true!

WinTown aka Micropolis aka SimCity running on NT MIPS

The initial port happened some time last year but it was quite buggy and not fully playable. This release fixes all major bugs. Most importantly however it wraps around the original Unix SimCity C code from DUX instead of re-implementing it. Only the Win32 / GDI, dialogs, etc is custom Windows code.

Rlease 0.6 binaries: https://github.com/tenox7/wintown/releases/tag/0.6

Supports Alpha AXP, MIPS, PowerPC, Itanium (IA64) and ARM. Currently targets NT 4.0 and above, but work is being made to make it run on NT 3.1.

Github Repo: https://github.com/tenox7/wintown

Please report bugs and contribute, PRs welcome!

OpenVMS 7.3 VAX on SIMH via Docker – With VNC to DEC Windows

(This is a guest post by Antoni Sawicki aka Tenox)

I wanted to recompile the new smg$routines version of aclock for vax/vms and started messing with SIMH VAX emulator. Thought it would be cool to be able to run it as a Docker container. Here it is:

https://hub.docker.com/r/tenox7/openvms73

https://github.com/tenox7/docksimhvaxvms

To run, simply:

docker run -it --rm tenox7/openvms73:latest

If you want to telnet to it add -p 23:23.

For X11 XDMCP Query add -p 177:177

If you want to persist state of the OpenVMS image add -v .....:/data.

Login as system / systempassword

Have fun with virtualization!

UPDATE: Now it also includes a built-in VNC server that does XDMCP Query to the DEC Windows X-Server. Just VNC in to the container!

UPDATE: Because it’s fun with virtualization…

Insignia SoftPC running on OpenVMS on SIMH VAX in Docker

OpenVMS 9.2-3 x64 now has local console on OPA0

(This is a guest post by Antoni Sawicki aka Tenox)

I perviously covered x64 OpenVMS release on VMware. This was insanely cool achievement for the operating system. While it had no practical ramification there was one small annoyance. The OS console was on a serial port. In VMware it meant another VM connected via named pipe.

Now OpenVMS x64 supports (limited?) local console on OPA0. To enable it you have to type opa0 before boot in the bootmgr prompt:

Once the system boots your will be greeted with a login prompt on the local VGA console!

Does it support clear screen, cursor movement, etc? Yes! You can even run a text editor locally!

The default terminal size is 80×24. You can make it bigger by typing

$ set term /width=140 /page=70

This means we can have aclock on x64 OpenVMS local console!

Prior aclock binaries for VMS were compiled using Unix Curses library. To celebrate all this, I have created a new version using the native SMG$ screen management routines. So this is now a truly native VMS app. The binary is here. The source code here.

Have fun with virtualization!

Atari System V UNIX (ASV) virtualized under Hatari

(This is a guest post by Antoni Sawicki aka Tenox)

Some 12 years ago I ran a short series of articles about my efforts to run Atari Unix on an actual Atari TT 030 machine. Which by itself is not an easy task, as it requires specific late models of TT (or hardware fixes by Atari), copious amounts of TT RAM and a high resolution mono framebuffer graphics (which requires a very special monochrome monitor or an adapter which I had to build instead). I have later exhibited my ASV setup on VCF West:

Atari System V Unix (ASV) running on Atari TT on VCF West

Behold! This time I present ASV virtualized under Hatari!

Atari System V Unix (ASV) Running under Hatari by Plamen

This work is not mine, all credit goes to Plamen! This is absolutely amazing as now more people can experience this legendary OS. The works is still in progress. Will post updates and more screenshots regularly!

Update: X11, screenshot courtesy of Andrew W:

Atari System V Unix (ASV) Running under Hatari by Andrew W

Update: Complete setup available here!

Whitesmiths IDRIS OS for Atari ST Virtualized!

(This is a guest post from Antoni Sawicki aka Tenox)

This is now an old news, happened a few months ago, but since it hasn’t been mentioned here I think it would be nice addition to the collection!

Whitesmiths IDRIS for Atari ST has been dumped on bitsavers for a few years now, however we only had the root disk and C compiler. The boot “disk” was a ST ROM cartridge which has not been previously found.

Apparently someone posted a complete set of Idris Atari ST floppy disks on github. Thank you!

Not only that but it has been virtualized now works on Hatari. This post reads that patches have been merged to Hatari so it should work out of the box!

Atari ST IDRIS on Hatari

Atari ST IDRIS on Steem SSE

Some time I also acquired and scanned programmers manual. Happy Whitesmlthlng! Since we have working system, compiler and utilities we should be able to port some cool apps to this platform!

MacOS RAR via Finder Quick Actions Extension

(This is a guest post from Antoni Sawicki)

I have been using the MacOS CLI version of RAR for a very long time. I have a bunch of aliases and shell wrappers but every so often I just want to right right click on a file or folder in the Finder and create a RAR archive from there without dealing with the terminal.

There are a bunch of apps like Keka, BetterZip, Unarchiver that can extract .rar files. The app store is littered with a bunch of shady “rar extractors”. But nothing can create a rar archive. I think Keka did have support but it was removed.

As a stop gap I have been using an Automator Quick Action RAR script. This sort of works for basic stuff but falls apart pretty quick. Firstly you can’t specify any options, secondly there is no progress bar or any output from rar binary so you dont know if this thing worked, failed or even still running. I experimented with various options but nothing worked to my satisfaction.

Claude Code to the rescue I vibe coded a more complete extension in Swift UI:

It allows to specify options and parameters, but most importantly the rar command output is printed in a window so you can see it running.

I admit this overall is pretty lame but it works better than any alternative I tried so far.

You can download from https://github.com/tenox7/rarext

Feedback, issues and PRs welcome!

OmniOS / Illumos / Solaris / SunOS / ARM64 / AARCH64 on QEMU

(This is a guest post from Antoni Sawicki aka Tenox)

Ever since inception of Illumos I always wanted to get it working on ARM / AARCH64. But being under development it was somewhat difficult task. I previously tried building arm64-gate but there always was something not quite right. Turns out OmniOS has a ready to run image that one can boot under QEMU!

Download file from here: https://downloads.omnios.org/media/braich/

They also have a run shell command: https://downloads.omnios.org/media/braich/run

This is mine:

qemu-system-aarch64 \
-nographic \
-machine virt \
-accel tcg \
-m 3G \
-smp 2 \
-cpu cortex-a53 \
-bios u-boot.bin \
-netdev vmnet-shared,id=net0 \
-device virtio-net-device,netdev=net0 \
-device virtio-blk-device,drive=hd0 \
-drive file=braich-151055.raw,format=raw,id=hd0,if=none \
-device qemu-xhci \
-device usb-kbd \
-device usb-tablet \
-semihosting-config enable=on,target=native

I hope they continue development and at some point I will be able to run this on my home server / NAS !

MIPS RISC/os on MAME

(This is a guest post by Antoni Sawicki aka Tenox)

This is a very lazy post. I didn’t do anything here… I don’t exactly remember where it came from but I had this HDD dump of a pre-installed RISC/os 4.52 for MIPS Systems RC2030 lying around. It might have came from bitsavers and/or here? I was recently contacted by Enrique Tejeda Canobbio who managed to convert the image into a chd format and boot it up on MAME which has MIPS support!

MIPS Systems RC2030 on MAME

It turns out the disk image had some non trivial password set for the root account, but with help of hashcat and a decent GPU we got it cracked in 20 minutes or so. Here for your viewing pleasure is the fully working OS:

MIPS RISC/os 4.52 running on RS2030 on MAME

The system comes with a working C compiler and there are known some ports of various applications, also X11R5. I will post an update once I add some more stuff to the base image. For now just wanted to get this out in to the wild!

Download from here! Login root/root. The root password for the original image is Wivvle1!

Please post comments or ping me on Discord if you get networking or X11 working!