mirror of
https://github.com/jborza/emu6502.git
synced 2024-11-22 14:32:27 +00:00
13 lines
247 B
C
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);
|
|
} |