psx emulator
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
152 B

  1. #ifndef PSXC_PSX_H_
  2. #define PSXC_PSX_H_
  3. #include "boot.h"
  4. #include "cpu.h"
  5. typedef struct {
  6. psx_header_t header;
  7. cpu_t *cpu;
  8. } psx_t;
  9. #endif