From da44e2dd28e3f7719ab02e655f6ecfcd65780062 Mon Sep 17 00:00:00 2001 From: Simon Fortier Date: Sun, 12 Nov 2017 11:38:12 -0500 Subject: [PATCH] Updated Hardware (markdown) --- Hardware.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Hardware.md b/Hardware.md index acdb7fc..3e98054 100644 --- a/Hardware.md +++ b/Hardware.md @@ -12,8 +12,7 @@ HWQ A The **HWI** (Hardware Interupt) instruction sends an interrupt to the hardware device at the specified address ```assembly -; Get the current held item id -INVENTORY_HW equ 0x0006 ; An inventory module is connected at address 0x006 +INVENTORY_HW equ 0x0006 ; An inventory module is connected at address 0x006. Define a constant MOV A, 1 ; The Inventory hardware expects 1 (POLL) or 2 (CLEAR) HWI INVENTORY_HW ; B = current held item id @@ -29,4 +28,6 @@ HWI INVENTORY_HW - [LiDAR](https://github.com/simon987/Much-Assembly-Required/wiki/Hardware:-LiDAR) - [Keyboard](https://github.com/simon987/Much-Assembly-Required/wiki/Hardware:-Keyboard) - [Hologram Projector](https://github.com/simon987/Much-Assembly-Required/wiki/Hardware:-Hologram) -- [Battery](https://github.com/simon987/Much-Assembly-Required/wiki/Hardware:-Battery) \ No newline at end of file +- [Battery](https://github.com/simon987/Much-Assembly-Required/wiki/Hardware:-Battery) +- [Random number generator](https://github.com/simon987/Much-Assembly-Required/wiki/Hardware-Random-Number-Generator) +- [Clock](https://github.com/simon987/Much-Assembly-Required/wiki/Hardware:-Clock) \ No newline at end of file