MCPcopy Create free account
hub / github.com/AppleWin/AppleWin / _6502_IsOpcodeValid

Function _6502_IsOpcodeValid

source/Debugger/Debugger_Assembler.cpp:938–947  ·  view source on GitHub ↗

===========================================================================

Source from the content-addressed store, hash-verified

936
937//===========================================================================
938bool _6502_IsOpcodeValid ( int iOpcode )
939{
940 if ((iOpcode & 0x3) == 0x3)
941 return false;
942
943 if (islower( g_aOpcodes6502[ iOpcode ].sMnemonic[ 0 ] ))
944 return false;
945
946 return true;
947}
948
949// Assembler ________________________________________________________________
950

Callers 1

CmdCursorLineUpFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected