Updated Hardware: Hologram Projector (markdown)

Arthur Paulino 2017-12-29 18:59:46 -03:00
parent 04296c489c
commit 9e3960c668

@ -17,12 +17,12 @@ Note that the Hologram Projector will clear itself at the end of the tick, it is
### Usage examples ### Usage examples
```assembly ```assembly
; Display the number 10, which will be shown as `0x000A` ; Display 0x000A
HWID_HOLO EQU 0x9 HWID_HOLO EQU 0x9
HOLO_DISPLAY_HEX EQU 1 HOLO_DISPLAY_HEX EQU 1
.text .text
MOV A, HOLO_DISPLAY_HEX MOV A, HOLO_DISPLAY_HEX
MOV B, 10 MOV B, 0x000A
HWI HWID_HOLO HWI HWID_HOLO
BRK BRK
``` ```