===========================================================================
| 2805 | |
| 2806 | //=========================================================================== |
| 2807 | Update_t CmdNOP (int nArgs) |
| 2808 | { |
| 2809 | int iOpcode; |
| 2810 | int iOpmode; |
| 2811 | int nOpbytes; |
| 2812 | |
| 2813 | _6502_GetOpcodeOpmodeOpbyte( iOpcode, iOpmode, nOpbytes ); |
| 2814 | |
| 2815 | while (nOpbytes--) |
| 2816 | { |
| 2817 | WriteByteToMemory(regs.pc + nOpbytes, 0xEA); |
| 2818 | } |
| 2819 | |
| 2820 | return UPDATE_ALL; |
| 2821 | } |
| 2822 | |
| 2823 | //=========================================================================== |
| 2824 | Update_t CmdOut (int nArgs) |
nothing calls this directly
no test coverage detected