From c6de396d8a56feb1e45bd1208c58a4e74178a062 Mon Sep 17 00:00:00 2001 From: JanNeuendorf <75676159+JanNeuendorf@users.noreply.github.com> Date: Thu, 12 Dec 2024 21:35:08 +0100 Subject: [PATCH] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f6072fd..11da326 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,13 @@
Logo
-This is the spec for an extremely simple "virtual computer" that can be emulated on a modern computer. +This is the spec for an extremely simple "virtual computer" that can be emulated. The goal in one word is **simplicity**. It should be simple to understand every instruction, to write machine code that runs on it, and to write a compiler for it. +The instruction set and the design in general are in no way meant to be "realistic depictions" of something that would make sense in real hardware. + + ## Quick Overview ### No Registers There are no CPU registers, just one chunk of memory. Values can be loaded from every memory address and written to every memory address.