emu6502/cpu.h

11 lines
259 B
C
Raw Permalink Normal View History

2019-04-13 20:00:37 +00:00
#pragma once
#include "types.h"
2019-04-16 20:46:28 +00:00
#define STACK_HOME 0x100
2019-04-13 20:00:37 +00:00
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);
2019-04-29 04:37:56 +00:00
void clear_state(State6502* state);
byte flags_as_byte(State6502* state);