(m opCode)
| 223 | func cMode(m opCode) byte { return (opModes[m] >> 2) & 3 } |
| 224 | func testAMode(m opCode) bool { return opModes[m]&(1<<6) != 0 } |
| 225 | func testTMode(m opCode) bool { return opModes[m]&(1<<7) != 0 } |
| 226 | |
| 227 | var opModes []byte = []byte{ |
| 228 | // T A B C mode opcode |
no outgoing calls
no test coverage detected