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

#ifndef PSXC_H_
#define PSXC_H_
#include <stdint.h>
#define SP(cpu) ((cpu)->regs[29])
typedef struct {
uint32_t regs[32];
uint32_t pc;
} cpu_t;
typedef void (*cpu_insn_handler)(cpu_t *, uint32_t);
#endif