13 lines
No EOL
220 B
C++
13 lines
No EOL
220 B
C++
#include "cpu.hpp"
|
|
|
|
using namespace plutoisa;
|
|
|
|
int main()
|
|
{
|
|
uint8_t *rom = (uint8_t *)malloc(16 * sizeof(uint8_t));
|
|
rom[0] = 0x00;
|
|
rom[1] = 0x00;
|
|
rom[2] = 0x00;
|
|
rom[3] = 0xFF;
|
|
cpuEmulation(rom);
|
|
} |