From f792c90ab2ca02d757ab18d83fd2fd4255d55b24 Mon Sep 17 00:00:00 2001 From: Ethan Lafrenais Date: Fri, 29 Dec 2017 11:01:52 -0500 Subject: [PATCH] Document ROL and ROR instructions --- Instruction-Set.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Instruction-Set.md b/Instruction-Set.md index 4c8b6ad..75f963f 100644 --- a/Instruction-Set.md +++ b/Instruction-Set.md @@ -28,6 +28,8 @@ | **POP** *destination* | *mem/reg* | 0x14 |`- - - - -` | | **PUSH** *source* | *mem/reg/imm* | 0x13 |`- - - - -` | | **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 -` | | **SHL** *destination*, *count* | *mem/reg*, *mem/reg/imm* | 0x06 |`X - - X -` | | **SHR** *destination*, *count* | *mem/reg*, *mem/reg/imm* | 0x07 |`X - - X -` | | **SUB** *destination*, *source* | *mem/reg*, *mem/reg/imm* | 0x03 |`X X X X -` |