├── f32 ├── README.md ├── f32dis.py ├── resize_firmware.md └── resize_firmware.py └── rai ├── .gitignore ├── README.md ├── addresslist.py ├── defines.py ├── diffregs.py ├── dumpmap.py ├── dumpregs.py ├── examples ├── regs_fbsd.dump └── regs_linux.dump ├── rai.py ├── raiparse.py ├── showreg.py └── showregname.py /f32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/radeon-tools/HEAD/f32/README.md -------------------------------------------------------------------------------- /f32/f32dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/radeon-tools/HEAD/f32/f32dis.py -------------------------------------------------------------------------------- /f32/resize_firmware.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/radeon-tools/HEAD/f32/resize_firmware.md -------------------------------------------------------------------------------- /f32/resize_firmware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/radeon-tools/HEAD/f32/resize_firmware.py -------------------------------------------------------------------------------- /rai/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/radeon-tools/HEAD/rai/.gitignore -------------------------------------------------------------------------------- /rai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/radeon-tools/HEAD/rai/README.md -------------------------------------------------------------------------------- /rai/addresslist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/radeon-tools/HEAD/rai/addresslist.py -------------------------------------------------------------------------------- /rai/defines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/radeon-tools/HEAD/rai/defines.py -------------------------------------------------------------------------------- /rai/diffregs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/radeon-tools/HEAD/rai/diffregs.py -------------------------------------------------------------------------------- /rai/dumpmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/radeon-tools/HEAD/rai/dumpmap.py -------------------------------------------------------------------------------- /rai/dumpregs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/radeon-tools/HEAD/rai/dumpregs.py -------------------------------------------------------------------------------- /rai/examples/regs_fbsd.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/radeon-tools/HEAD/rai/examples/regs_fbsd.dump -------------------------------------------------------------------------------- /rai/examples/regs_linux.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/radeon-tools/HEAD/rai/examples/regs_linux.dump -------------------------------------------------------------------------------- /rai/rai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/radeon-tools/HEAD/rai/rai.py -------------------------------------------------------------------------------- /rai/raiparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/radeon-tools/HEAD/rai/raiparse.py -------------------------------------------------------------------------------- /rai/showreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/radeon-tools/HEAD/rai/showreg.py -------------------------------------------------------------------------------- /rai/showregname.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fail0verflow/radeon-tools/HEAD/rai/showregname.py --------------------------------------------------------------------------------