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.

18 lines
293 B

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