Rename Copy to MemCopy and also add RegCopy.

This commit is contained in:
Max Marrone
2020-01-25 21:02:32 -05:00
committed by GitHub
parent ddfcec0427
commit b7aa2d7ce7

5
vm.md
View File

@@ -124,6 +124,9 @@ Arithmetic instructions store their result in the last register specified.
* (hw = half word)
* **Params**: REG1, IMM_HW
* `REG1 = IMM_HW`
* Copy
* MemCopy
* **Params**: REG1, REG2
* `MEM[REG1] = MEM[REG2]`
* RegCopy
* **Params**: REG1, REG2
* `REG1 = REG2`