(m opCode)
| 220 | |
| 221 | func opMode(m opCode) int { return int(opModes[m] & 3) } |
| 222 | func bMode(m opCode) byte { return (opModes[m] >> 4) & 3 } |
| 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 } |