1
0
mirror of https://github.com/jborza/emu6502.git synced 2024-06-07 16:16:37 +00:00
emu6502/emu6502.c

13 lines
247 B
C
Raw Normal View History

2019-04-13 20:00:37 +00:00
// 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);
}