From 9518199a68583baefdf79931b536f99cfeadc34a Mon Sep 17 00:00:00 2001 From: Kevin Ramharak Date: Fri, 29 Dec 2017 02:52:54 +0100 Subject: [PATCH] Added another memory entry --- CPU.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CPU.md b/CPU.md index dbc6810..00af6b4 100644 --- a/CPU.md +++ b/CPU.md @@ -22,6 +22,7 @@ The memory represented in a table would look like this: | `0x0000 - 0x004F` | Memory used by the [LiDAR](https://github.com/simon987/Much-Assembly-Required/wiki/Hardware:-LiDAR#interrupt-behavior) `GET_PATH` hardware interrupt behavior | | `0x0050` | The execution cost. Is set at the end of the tick. [source](https://github.com/simon987/Much-Assembly-Required/blob/master/Server/src/main/java/net/simon987/server/assembly/CPU.java) | | `0x0051:0x0052` | The number of instructions executed. Is set at the end of the tick. [source](https://github.com/simon987/Much-Assembly-Required/blob/master/Server/src/main/java/net/simon987/server/assembly/CPU.java) | +| `0x0053 - 0x00FF` | Not used, but probably not smart to use since it might be reserved for future use cases | | `0x0100 - 0x01FF` | Memory used by the [LiDAR](https://github.com/simon987/Much-Assembly-Required/wiki/Hardware:-LiDAR#interrupt-behavior) `GET_MAP` hardware interrupt behavior | | `0x0200 - 0x0200 + PROGRAM_SIZE` | The instructions that make up your program | | `...`| Not assigned to anything |