debugger work

This commit is contained in:
CocoSimone
2022-08-27 18:52:04 +02:00
parent d5743f4dc2
commit b4812cd442
14 changed files with 140 additions and 172 deletions

View File

@@ -36,4 +36,10 @@ using m128 = __m128i;
#define FD(x) (((x) >> 6) & 0x1F)
#define FT(x) RT(x)
#define FS(x) RD(x)
#define BASE(x) RS(x)
#define BASE(x) RS(x)
#define VT(x) (((x) >> 16) & 0x1F)
#define VS(x) (((x) >> 11) & 0x1F)
#define VD(x) (((x) >> 6) & 0x1F)
#define E(x) BASE(x)
#define ELEMENT_INDEX(i) (7 - (i))
#define BYTE_INDEX(i) (15 - (i))