1
0
mirror of https://github.com/jborza/emu6502.git synced 2025-02-16 17:30:27 +00:00
emu6502/cpu.h

10 lines
221 B
C
Raw Normal View History

2019-04-13 22:00:37 +02:00
#pragma once
#include "types.h"
2019-04-16 22:46:28 +02:00
#define STACK_HOME 0x100
2019-04-13 22:00:37 +02:00
void* unimplemented_instruction(State6502* state);
int emulate_6502_op(State6502* state);
2019-04-14 12:39:56 +02:00
2019-04-13 23:59:48 +02:00
void clear_flags(State6502* state);
void clear_state(State6502* state);