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.
 
 

20 lines
279 B

#include "boot.h"
#include "insn.h"
#include "log.h"
#include "util.h"
#include <stdio.h>
int main()
{
info("Loading program");
byte_arr_t *prgm = read_file("boot.rom");
if (prgm == NULL)
{
fatal("Couldn't load program");
}
boot_psx_prgm(prgm);
return 0;
}