Updated Hardware: Radio Receiver (markdown)

Simon Fortier 2018-12-23 12:21:48 -05:00
parent 28d96932d6
commit 188e5e5771

@ -1,4 +1,4 @@
NOTE: This is based off of a quick reading of the source code. YMMV - mlaga97 The radio receiver hardware allows an unit to read messages from [Radio Towers](https://github.com/simon987/Much-Assembly-Required/wiki/Radio-Tower).
### Specifications ### Specifications
Manufacturer: Apachicorp Manufacturer: Apachicorp
@ -9,6 +9,6 @@ Hardware ID: `0x000C`
### Interrupt Behavior ### Interrupt Behavior
| Value of A | Action | Energy cost | Result | | Value of A | Action | Energy cost | Result |
| --- | --- | --- | --- | | --- | --- | --- | --- |
| `1` | `RADIO_LISTEN` | `? kJ` | Writes the number of messages to B, and copies the messages to RAM starting at address X | | `1` | `RADIO_LISTEN` | `0 kJ` | Writes the number of messages to B, and copies the messages to RAM starting at address X |
The maximum number of messages per tick appears to be 16. Each message is `8` words long, meaning that the total number of words written is `B * 8`. The maximum number of messages per tick per tower is 16, however the receiver can read an unlimited number of messages at a time.