nesemu/main.c

42 lines
887 B
C
Raw Normal View History

2023-09-21 23:53:14 -04:00
/*
* =====================================================================================
*
* Filename: main.c
*
* Description: Emulator main loop
*
* Version: 1.0
* Created: 2023-09-21 09:50:34 PM
* Revision: none
* Compiler: gcc
*
* Author: William Nolin,
* Organization:
*
* =====================================================================================
*/
#include <stdlib.h>
2024-01-06 14:27:09 -05:00
#include <log.h>
2023-09-21 23:53:14 -04:00
2023-12-03 00:27:07 -05:00
#include "include/rom.h"
2024-01-06 14:27:09 -05:00
#include "include/system.h"
2023-09-21 23:53:14 -04:00
int main() {
2024-01-06 14:27:09 -05:00
log_set_level(LOG_INFO);
2023-12-23 16:35:23 -05:00
2024-01-06 14:27:09 -05:00
char *rom_path = "../test_roms/nestest.nes";
System system;
2023-12-23 16:35:23 -05:00
2024-01-06 14:27:09 -05:00
system_init(&system);
2023-12-23 16:35:23 -05:00
2024-01-06 14:27:09 -05:00
if (!rom_load(rom_path, &system)) {
system_uninit(&system);
return EXIT_FAILURE;
}
2023-09-21 23:53:14 -04:00
2024-01-06 14:27:09 -05:00
system_start(&system);
system_loop(&system);
system_uninit(&system);
2023-09-21 23:53:14 -04:00
2024-01-06 14:27:09 -05:00
return EXIT_SUCCESS;
}