1
0
mirror of https://github.com/jborza/emu6502.git synced 2024-07-22 21:28:54 +00:00
emu6502/emu6502.c
2019-04-13 22:00:37 +02:00

13 lines
247 B
C

// emu6502.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <stdio.h>
#include "state.h"
#include "cpu.h"
int main()
{
printf("Hello World!\n");
State6502 state;
emulate_6502_op(&state);
}