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

  1. #include "boot.h"
  2. #include "insn.h"
  3. #include "log.h"
  4. #include "util.h"
  5. #include <stdio.h>
  6. int main()
  7. {
  8. info("Loading program");
  9. byte_arr_t *prgm = read_file("boot.rom");
  10. if (prgm == NULL)
  11. {
  12. fatal("Couldn't load program");
  13. }
  14. boot_psx_prgm(prgm);
  15. return 0;
  16. }