This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
LaiNES/src/main.cpp

17 lines
216 B
C++
Raw Normal View History

2013-12-03 09:27:43 +00:00
#include "cartridge.hpp"
#include "cpu.hpp"
2013-12-05 14:15:19 +00:00
#include "io.hpp"
2013-12-03 09:27:43 +00:00
#include "ppu.hpp"
2014-01-25 11:26:01 +00:00
2013-12-03 09:27:43 +00:00
int main(int argc, char *argv[])
{
2013-12-05 14:15:19 +00:00
IO::init();
2013-12-03 09:27:43 +00:00
Cartridge::load(argv[1]);
CPU::power();
CPU::run();
return 0;
}