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
159 B

2 years ago
  1. #ifndef PSXC_H_
  2. #define PSXC_H_
  3. #include <stdint.h>
  4. #define SP(cpu) ((cpu)->regs[29])
  5. typedef struct {
  6. uint32_t regs[32];
  7. uint32_t pc;
  8. } cpu_t;
  9. #endif