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.

15 lines
213 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. typedef void (*cpu_insn_handler)(cpu_t *, uint32_t);
  10. #endif