Closed fokoid closed 1 year ago
0x3XNN
if (Vx == NN)
0x4XNN
if (Vx != NN)
0x5XY0
if (Vx == Vy)
0x9XY0
if (Vx != Vy)
Pseudocode and descriptions were sourced from the CHIP-8 Wikipedia article and are licensed under the Creative Commons Attribution-ShareAlike License 3.0.
0x3XNN
Skips the next instruction if VX equals NN (usually the next instruction is a jump to skip a code block). (if (Vx == NN)
)0x4XNN
Skips the next instruction if VX does not equal NN (usually the next instruction is a jump to skip a code block). (if (Vx != NN)
)0x5XY0
Skips the next instruction if VX equals VY (usually the next instruction is a jump to skip a code block). (if (Vx == Vy)
)0x9XY0
Skips the next instruction if VX does not equal VY. (Usually the next instruction is a jump to skip a code block); (if (Vx != Vy)
)Pseudocode and descriptions were sourced from the CHIP-8 Wikipedia article and are licensed under the Creative Commons Attribution-ShareAlike License 3.0.