From b7aa2d7ce79d234c80aaff7c715d284238147092 Mon Sep 17 00:00:00 2001 From: Max Marrone Date: Sat, 25 Jan 2020 21:02:32 -0500 Subject: [PATCH] Rename Copy to MemCopy and also add RegCopy. --- vm.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vm.md b/vm.md index 550f69b..958f252 100644 --- a/vm.md +++ b/vm.md @@ -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`