From c56f742b2f4b0e73e71e50b73e0a9bc041fa9839 Mon Sep 17 00:00:00 2001 From: zongor Date: Sat, 20 Jul 2024 14:28:52 -0400 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a3f1c1..1f5b692 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ The world machine is a Virtual Machine that is intended to create 3D environment It is inspired by uxn, var'aq, TIS-100, Inferno, and Plan9. -The world machine works as a series of stack based virtual cpu's (vcpu) that each have a single stack which are able to communicate with each other using message passing. +The world machine works as a series of stack based virtual cpu's (vcpu) and ram as a simple hashmap (wram) that each have a single stack which are able to communicate with each other using message passing. The machine code of this vcpu is a series of stack operations which act on the individal vcpu. each vcpu has the ability to ask the kernel to spawn an additional vcpu or to spawn a child vcpu off of itself which sets up a couple of communication channels automatically.