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

#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;
#endif