D | maverick.c | 183 #define CDP2(insname, var, cpnum, opcode1, opcode2, reg1name, reg2name) \ argument 185 (14 << 24) | ((opcode1) << 20) | ((cpnum) << 8) | ((opcode2) << 5), \ 189 #define CDP2fx(insname, opcode1, opcode2) \ argument 190 CDP2 (insname, 32, 5, opcode1, opcode2, "fx", "fx") 193 #define CDP2dx(insname, opcode1, opcode2) \ argument 194 CDP2 (insname, 64, 5, opcode1, opcode2, "dx", "dx") 197 #define CDP2f(insname, opcode1, opcode2) \ argument 198 CDP2 (insname, s, 4, opcode1, opcode2, "f", "f") 201 #define CDP2d(insname, opcode1, opcode2) \ argument 202 CDP2 (insname, d, 4, opcode1, opcode2, "d", "d") [all …]
|