1
0
mirror of https://github.com/jborza/emu6502.git synced 2024-06-07 16:16:37 +00:00
emu6502/cpu.h
2019-04-16 22:46:28 +02:00

10 lines
221 B
C

#pragma once
#include "types.h"
#define STACK_HOME 0x100
void* unimplemented_instruction(State6502* state);
int emulate_6502_op(State6502* state);
void clear_flags(State6502* state);
void clear_state(State6502* state);