Palladium

This Week in Iridium - #5

Summary of what happened in the fifth week

Week 5 Hello! Below is a list of changes made this week in Iridium. The tutorials this week start here: https://blog.subnetzero.io/project/iridium-vm/building-language-vm-part-18/ You can find the repo for Palladium here: https://gitlab.com/subnetzero/palladium VM Changes (all with tutorials) Added simple PID tracking to the VM. Using random UUIDs for now Refactored command processing in the REPL. Commands now start with a ! There is proper tokenization now

So You Want to Build a Language VM - Part 19 - Starting on Palladium

Begins building the higher level language and compiler

Introduction

If you’ve been following the development of Iridium, you know how heavily it uses Nom to parse the assembly language. I hope you liked it, because we’re going to be using Nom for this as well. =)

In this tutorial, we’re going to start creating a language called Palladium that will compile down to the assembly code we’ve been using. Before we get started, please remember…​