We've just updated MediaWiki and its underlying software. If anything doesn't look or work quite right, please mention it to us. --RanAS

NOP: Difference between revisions

From SnesLab
Jump to: navigation, search
(→‎External Links: Labiak page number)
(→‎External Links: Leventhal page number)
Line 46: Line 46:
* [[Labiak]] page 155 on NOP: https://archive.org/details/Programming_the_65816/page/n165
* [[Labiak]] page 155 on NOP: https://archive.org/details/Programming_the_65816/page/n165
* [[Carr]] page 265 on NOP: https://archive.org/details/6502UsersManual/page/n278
* [[Carr]] page 265 on NOP: https://archive.org/details/6502UsersManual/page/n278
* [[Leventhal]] page on NOP: https://archive.org/details/6502-assembly-language-programming/page/n127
* [[Leventhal]] page 3-78 on NOP: https://archive.org/details/6502-assembly-language-programming/page/n127
* snes9x implementation of NOP: https://github.com/snes9xgit/snes9x/blob/master/cpuops.cpp#L1606
* snes9x implementation of NOP: https://github.com/snes9xgit/snes9x/blob/master/cpuops.cpp#L1606
* undisbeliever on NOP: https://undisbeliever.net/snesdev/65816-opcodes.html#nop-no-operation
* undisbeliever on NOP: https://undisbeliever.net/snesdev/65816-opcodes.html#nop-no-operation

Revision as of 10:25, 5 December 2023

Basic Info
Addressing Mode Opcode Length Speed
Implied (type 3) EA 1 byte 2 cycles
Flags Affected
N V M X D I Z C
. . . . . . . .

NOP (No OPeration) is an instruction that does nothing.

See Also

External Links