mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-04-04 06:22:58 +00:00
Page:
(Hardware) Hologram Projector
Pages
(Hardware) Battery
(Hardware) Clock
(Hardware) Construction Arm
(Hardware) Core
(Hardware) Drill
(Hardware) Floppy Drive
(Hardware) Hologram Projector
(Hardware) Inventory
(Hardware) Keyboard
(Hardware) Laser
(Hardware) Legs
(Hardware) LiDAR
(Hardware) Radio Receiver
(Hardware) Random Number Generator
(Hardware) Universal Com Port
(Installation) Arch Linux
(Installation) Windows
(Snippet) Constants
(Snippet) Dump memory to disk
(Snippet) Keyboard controlled robot
(Snippet) Manhattan distance
(Snippet) Move in a random direction
Assembler directives
Assembly program examples
Basic Assembly tutorial
Biomass
Blueprint
CPU
Collaboration Guide
Day Night Cycle and solar Energy
Debugging
Game Universe
Hacked NPC
Hardware
Home (old)
Home
Instruction Encoding
Instruction Set
Items
Learn by Examples
NPC Factory
Non Player Character (NPC)
Project structure
Radio Tower
Random Access Memory
Road Map
The Cubot Manuals
The Game Universe
Useful Code Snippets
Users' Repositories
World
Clone
0
(Hardware) Hologram Projector
simon987 edited this page 2019-11-03 09:20:36 -05:00
Table of Contents
Bexsh Optics's basic Hologram projector device is able to display a 16-bit number in hexadecimal format. It is ideal for debugging or showing your friends how 1337
you are.
Specifications
Manufacturer: Bexsh Optics
Version: 1.1B
Default address: 0x0009
Hardware ID: 0x0009
Interrupt Behavior
Value of A | Action | Energy cost | Result |
---|---|---|---|
0 | HOLO_CLEAR |
0 kJ |
Don't display anything |
1 | HOLO_DISPLAY_HEX |
0 kJ |
Displays the value of the B register in hexadecimal format |
2 | HOLO_DISPLAY_STRING |
0 kJ |
Displays a zero-terminated Unicode string (max. 8 characters). Specify the address of the string with the X register |
3 | HOLO_DISPLAY_DEC |
0 kJ |
Displays the value of the B register in decimal format |
4 | HOLO_DISPLAY_COLOR |
4 kJ |
Changes the color of the hologram projections using the value of the B:C register (e.g. B: 0x00AA, and C: 0xBBCC, would be RGB 0xAABBCC) |
Note that the Hologram Projector will clear itself at the end of the tick, it is only necessary to use CLEAR when you want to cancel a DISPLAY command executed within the same tick.