├── .clang-format ├── .github └── workflows │ └── compilation.yml ├── .gitignore ├── Makefile ├── README ├── ee ├── Makefile ├── gdb-low.S ├── gdb-stub.h ├── inst.h ├── ps2gdbStub.c └── r5900_regs.h ├── ps2.sh └── sample ├── Makefile └── testgdb.c /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2dev/ps2gdb/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/workflows/compilation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2dev/ps2gdb/HEAD/.github/workflows/compilation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2dev/ps2gdb/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2dev/ps2gdb/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2dev/ps2gdb/HEAD/README -------------------------------------------------------------------------------- /ee/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2dev/ps2gdb/HEAD/ee/Makefile -------------------------------------------------------------------------------- /ee/gdb-low.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2dev/ps2gdb/HEAD/ee/gdb-low.S -------------------------------------------------------------------------------- /ee/gdb-stub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2dev/ps2gdb/HEAD/ee/gdb-stub.h -------------------------------------------------------------------------------- /ee/inst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2dev/ps2gdb/HEAD/ee/inst.h -------------------------------------------------------------------------------- /ee/ps2gdbStub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2dev/ps2gdb/HEAD/ee/ps2gdbStub.c -------------------------------------------------------------------------------- /ee/r5900_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2dev/ps2gdb/HEAD/ee/r5900_regs.h -------------------------------------------------------------------------------- /ps2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2dev/ps2gdb/HEAD/ps2.sh -------------------------------------------------------------------------------- /sample/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2dev/ps2gdb/HEAD/sample/Makefile -------------------------------------------------------------------------------- /sample/testgdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ps2dev/ps2gdb/HEAD/sample/testgdb.c --------------------------------------------------------------------------------