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