├── .gitignore ├── Makefile ├── Readme.md ├── binary ├── README.md └── instruction_tests_console.txt └── source ├── ConditionRegister.cpp ├── FloatingPoint.cpp ├── Integer.cpp ├── Tests.h ├── Utils.h └── main.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioncash/DolphinPPCTests/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioncash/DolphinPPCTests/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioncash/DolphinPPCTests/HEAD/Readme.md -------------------------------------------------------------------------------- /binary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioncash/DolphinPPCTests/HEAD/binary/README.md -------------------------------------------------------------------------------- /binary/instruction_tests_console.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioncash/DolphinPPCTests/HEAD/binary/instruction_tests_console.txt -------------------------------------------------------------------------------- /source/ConditionRegister.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioncash/DolphinPPCTests/HEAD/source/ConditionRegister.cpp -------------------------------------------------------------------------------- /source/FloatingPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioncash/DolphinPPCTests/HEAD/source/FloatingPoint.cpp -------------------------------------------------------------------------------- /source/Integer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioncash/DolphinPPCTests/HEAD/source/Integer.cpp -------------------------------------------------------------------------------- /source/Tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioncash/DolphinPPCTests/HEAD/source/Tests.h -------------------------------------------------------------------------------- /source/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioncash/DolphinPPCTests/HEAD/source/Utils.h -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lioncash/DolphinPPCTests/HEAD/source/main.cpp --------------------------------------------------------------------------------