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.

13 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. {
  7. psx_header_t header;
  8. cpu_t *cpu;
  9. } psx_t;
  10. #endif