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.
 
 

12 lines
152 B

#ifndef PSXC_PSX_H_
#define PSXC_PSX_H_
#include "boot.h"
#include "cpu.h"
typedef struct {
psx_header_t header;
cpu_t *cpu;
} psx_t;
#endif