You can view a live demo here
It might not look like there's much going on, but there is.
If you check the demo you'll be presented with a simple looking display that looks similar to a terminal, there's a blinking cursor and you can input a string of text and hit return and whatever you input will be echo'd back to you, nothing special.
But, honestly it kinda is! What is really happening is the browser is fetching a binary executable (bytecode) and loading it into virtual RAM, then a virtual CPU is executing the bytecode in the browser...the bytecode/program being executed implements a simple REPL that reads a line of input and writes it to the terminal display.
The bytecode is the output of an assembler (s16a) and linker (s16l), these applications (written in Node) are used to assemble and link source files written in a simple assembly language I created - you can see the source for the echo shell here
The assembler can be found here
The linker can be found here
The binary (bytecode) executable can be found here
The assembly language is farily simple - there's a handful of instructions, enough to get something done, like build the simple shell you see running in the terminal.
We have a stack which we can push and pop to and from, we even have a call instruction that allows us to invoke other functions using the standard C calling convention, we have interrupts, registers, etc. You can, if you're that way inclined - implement a buffer overflow by overwriting the return pointer on the stack - it's a sandbox.
The front-end implements an interface that mimics a terminal, if you've programmed in ncurses before you'll be familiar with the concept, each character cell can be addressed individually using line/column values - the browser is just loading the pre-assembled bytecode/executable into virtual RAM then letting the virtual CPU do it's thing until the program terminates. In this case the echo shell never terminates, it implements an infinite loop of receiving input and echo'ing it back to the terminal.
The assembly language isn't that complex and the source files for the shell are well commented so you should be able to figure it out and write a simple application.
If you're stuck with how to operate the s16a and s16l applications take a look at the sysbuild script which you'll find here
I have an insatiable itch to scratch, I love the retro look and feel of old terminals, maybe it's nostalgia and my love for movies like Wargames.
System16 is just a proof of concept - I wanted to know how feasible it was, the requirements aren't so demanding - I want something simple, speed isn't a requirement, I wanted it to look and feel like an old-skool terminal.
It's safe to say it's entirely feasible, not only did it work well it surpassed my expectations - I had to increase the CPU cycle/timeslice to get the staggered output effect, it was lightning quick! I wanted that slow, scrolling effect...I even went as far as to add a subtle flickering effect with a simple CSS animation to give it that CRT sort of feel.
So yeah, concept proven - this is going to be part of a much larger project, for now this demo will remain here for anyone to mess about with, if you want to play with it do as you please!
Michael.