Document RCL and RCR instructions

Ethan Lafrenais 2017-12-29 15:45:23 -05:00
parent bdd5f39ad0
commit 5a4eab115e

@ -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 -` |