1
0
mirror of https://github.com/jborza/emu6502.git synced 2024-06-01 19:41:29 +00:00
emu6502/cpu.h

8 lines
195 B
C
Raw Normal View History

2019-04-13 20:00:37 +00:00
#pragma once
#include "types.h"
void* unimplemented_instruction(State6502* state);
int emulate_6502_op(State6502* state);
2019-04-14 10:39:56 +00:00
2019-04-13 21:59:48 +00:00
void clear_flags(State6502* state);
void clear_state(State6502* state);