mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 17:58:22 +00:00
11 lines
242 B
C
11 lines
242 B
C
enum {
|
|
#define DEFO32(name, offset) QREG_##name,
|
|
#define DEFR(name, reg, mode) QREG_##name,
|
|
#define DEFF64(name, offset) QREG_##name,
|
|
QREG_NULL,
|
|
#include "qregs.def"
|
|
TARGET_NUM_QREGS = 0x100
|
|
#undef DEFO32
|
|
#undef DEFR
|
|
#undef DEFF64
|
|
};
|