From e1d4aabbcc109ed672c7a483f38f4be15fdd557f Mon Sep 17 00:00:00 2001 From: JanNeuendorf <75676159+JanNeuendorf@users.noreply.github.com> Date: Thu, 12 Dec 2024 22:15:19 +0100 Subject: [PATCH] Added more to the introduction --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 11da326..61b45ce 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,13 @@ 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. +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. +It is also not intended to be as simple and elegant as it could possibly be. + +This repo contains an emulator to run games or programs. It can be installed with cargo: + +I do not want to provide an assembler, any kind of compiler or even any ideas about things like call conventions. +The idea is that you have to build that yourself. You can play a ROM from the example folder to get an idea of what can be build. ## Quick Overview