From 6823f1e95e11738f0614776814350e0d954143c5 Mon Sep 17 00:00:00 2001 From: trivernis Date: Sun, 3 May 2020 11:31:56 +0200 Subject: [PATCH] Fix missing escape in the readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 89b776d..57199ce 100644 --- a/README.md +++ b/README.md @@ -14,10 +14,10 @@ A virtual machine for controlling a wifi led strip. | load (rgp, rgd) | loads the value the pointer register points to into the data register | 0x04 | | clear \ | clears a register (sets it to 0x00) | 0x05 | | write (rgd, rgp) | writes the value in the data register to the address of the pointer register | 0x06 | -| label | creates a label at the current position. | 0x07 | +| label \ | creates a label at the current position. | 0x07 | | goto (rgl) | goes to the label with name rgl | 0x08 | | debug (*) | prints out the state for debug information | 0x09 | -| print | prints the value of a register | 0x0A | +| print \ | prints the value of a register | 0x0A | | add (rgd, rgi, rgo) | adds the value of rgi to the value of rgd and writes the result into rgo | 0x10 | | sub (rgd, rgi, rgo) | substracts rgi from rgd and writes the result into rgo | 0x11 | | mul (rgd, rgi, rgo) | multiplies rgd by rgi and writes the result to rgo | 0x12 |