From 67495764c82c60c458e571a9391d3569227b72f2 Mon Sep 17 00:00:00 2001 From: Anachronaut <75824887+RealBusinessAccount@users.noreply.github.com> Date: Thu, 17 Oct 2024 00:00:48 -0400 Subject: [PATCH] Update SplitBit Programming Manual.md --- SplitBit Programming Manual.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SplitBit Programming Manual.md b/SplitBit Programming Manual.md index da6a67d..e8958ba 100644 --- a/SplitBit Programming Manual.md +++ b/SplitBit Programming Manual.md @@ -82,9 +82,9 @@ D2 | OUTB | Writes the value of B to an Output specified by the next byte of Pro ### Input Operations: 3 Instructions Hex Code | Mnemonic | Description -- | -- | -- -E1 | RDA | Writes the value of an Input to A. The input port is specified the next byte of Program Memory. -E2 | RDB | Writes the value of an Input to B. The input port is specified the next byte of Program Memory. -E3 | RDD | Writes the value of an Input to Data Memory at the location referenced by the Data Pointer. The input port is specified by the next byte of Program Memory. +E1 | INA | Writes the value of an Input to A. The input port is specified the next byte of Program Memory. +E2 | INB | Writes the value of an Input to B. The input port is specified the next byte of Program Memory. +E3 | IND | Writes the value of an Input to Data Memory at the location referenced by the Data Pointer. The input port is specified by the next byte of Program Memory. ### Special Operations: 2 Instructions Hex Code | Mnemonic | Description @@ -139,4 +139,4 @@ Here's an example hex dump of the hello world program stored in the proper forma ``` 50 52 47 00 0A 42 12 00 0A D1 00 40 10 00 00 FF 44 41 54 00 0E 48 65 6C 6C 6F 2C 20 57 6F 72 6C 64 21 0A 00 -``` \ No newline at end of file +```