mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 20:08:17 +00:00
12 lines
242 B
C
12 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
|
||
|
};
|