1
0
Fork 0
2019-nes-emulator/Source/Main.cpp

19 lines
266 B
C++
Raw Normal View History

2019-09-02 01:41:02 +00:00
#include <iostream>
2019-09-06 23:58:57 +00:00
#include "NES.hpp"
2019-09-02 01:41:02 +00:00
int main(int argc, char** argv)
{
if (argc != 2)
{
2019-09-12 16:06:18 +00:00
std::cerr << "Usage: " << argv[0] << " <ROM>\n";
2019-09-02 01:41:02 +00:00
std::exit(EXIT_FAILURE);
}
2019-09-06 23:58:57 +00:00
char const* filename = argv[1];
2019-09-02 01:41:02 +00:00
2019-09-06 23:58:57 +00:00
NES nes;
nes.InsertCartridge(filename);
nes.Run();
2019-09-02 01:41:02 +00:00
}