hdbgRegR           66 src/dps8/hdbg.h void hdbgRegR (enum hregs_t type, word36 data, const char * ctx);
hdbgRegR           80 src/dps8/hdbg.h #  define HDBGRegAR(c) hdbgRegR (hreg_A, cpu.rA, c)
hdbgRegR           82 src/dps8/hdbg.h #  define HDBGRegQR(c) hdbgRegR (hreg_Q, cpu.rQ, c)
hdbgRegR           84 src/dps8/hdbg.h #  define HDBGRegXR(i, c) hdbgRegR (hreg_X0+(i), (word36) cpu.rX[i], c)
hdbgRegR           86 src/dps8/hdbg.h #  define HDBGRegYR(c) hdbgRegR (hreg_Y, (word36) cpu.rY, c)
hdbgRegR           88 src/dps8/hdbg.h #  define HDBGRegZR(r, c) hdbgRegR (hreg_Z, (word36) r, c)