MCPcopy Create free account
hub / github.com/BlitterStudio/amiberry / put

Function put

src/ppc/ppcd.cpp:126–131  ·  view source on GitHub ↗

Simple instruction form + reserved bitmask.

Source from the content-addressed store, hash-verified

124
125// Simple instruction form + reserved bitmask.
126static void put(const char * mnem, u32 mask, u32 chkval=0, int iclass=PPC_DISA_OTHER)
127{
128 if( (Instr & mask) != chkval ) { ill(); return; }
129 o->iclass |= iclass;
130 strncpy(o->mnemonic, mnem, sizeof(o->mnemonic));
131}
132
133// Simplified mnemonic trap conditions
134static const char * t_cond[32] = {

Callers 4

launchQuickStartMethod · 0.85
launchWithConfigMethod · 0.85
launchWhdloadMethod · 0.85
PPCDisasmFunction · 0.85

Calls 1

illFunction · 0.85

Tested by

no test coverage detected