What is NOP?
No Operation
A do-nothing instruction. Does not affect the state of the program.
Loop
Creates a block of code to be repeated for specified count
What is jmp?
Unconditional Jump
Jumps to a different part of the code unconditionally
What is **jz/jbz/jnz **?
Jump if zero/below zero/ not zero
What is ror / rol?
Rotate Right / Left
Rotates operation, shifts bits of value/register to the right/left by specified number of positions
What is rcr / rcl?
Rotate through carry Right / Left