├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── amdctl.c └── makefile /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlekiller/amdctl/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlekiller/amdctl/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlekiller/amdctl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlekiller/amdctl/HEAD/README.md -------------------------------------------------------------------------------- /amdctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlekiller/amdctl/HEAD/amdctl.c -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlekiller/amdctl/HEAD/makefile --------------------------------------------------------------------------------