From 5a4eab115e9592a961cf165d7983f539bb2d5346 Mon Sep 17 00:00:00 2001 From: Ethan Lafrenais Date: Fri, 29 Dec 2017 15:45:23 -0500 Subject: [PATCH] Document RCL and RCR instructions --- Instruction-Set.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Instruction-Set.md b/Instruction-Set.md index 75f963f..a68d3d1 100644 --- a/Instruction-Set.md +++ b/Instruction-Set.md @@ -27,6 +27,8 @@ | **OR** *destination*, *source* | *mem/reg*, *mem/reg/imm* | 0x05 |`0 X X 0 -` | | **POP** *destination* | *mem/reg* | 0x14 |`- - - - -` | | **PUSH** *source* | *mem/reg/imm* | 0x13 |`- - - - -` | +| **RCL** *destination*, *count* | *mem/reg*, *mem/reg/imm* | 0x27 |`X - - X -` | +| **RCR** *destination*, *count* | *mem/reg*, *mem/reg/imm* | 0x28 |`X - - X -` | | **RET** *optional-pop-value* | *imm/None* | 0x16 |`- - - - -` | | **ROL** *destination*, *count* | *mem/reg*, *mem/reg/imm* | 0x23 |`X - - X -` | | **ROR** *destination*, *count* | *mem/reg*, *mem/reg/imm* | 0x20 |`X - - X -` |