diff --git a/avivotool.c b/avivotool.c index c08c388..01f33a2 100644 --- a/avivotool.c +++ b/avivotool.c @@ -1042,15 +1042,7 @@ void radeon_cmd_regs(const char *type) /* Dump all registers that we can read. */ if (strcmp(type, "all") == 0) { - /* Attempting to read 40c8 will bring your machine down hard. */ - for (i = 0x0000; i < 0x40c8; i += 4) - SHOW_UNKNOWN_REG(i); - /* Ditto 4ff8 and 4ffc. They may be indexing registers, or they - * may just kill your system. */ - for (i = 0x40cc; i < 0x4ff8; i += 4) - SHOW_UNKNOWN_REG(i); - /* Reading to the end of the range is also harmful. */ - for (i = 0x5000; i < 0x7ff8; i += 4) + for (i = 0x5dfc; i < 0x7170; i += 4) SHOW_UNKNOWN_REG(i); return;