robmcmullen-apple2/src/dis65c02.h
Shamus Hammons c0001155bc Fixed misc. bugs preventing certain games from working, added pause mode.
There was one bug that went undetected in the v65C02 core (in STX ZP,Y)
and another in the 80STORE handling (80STORE doesn't affect reading).
Also added a pause mode (bound to the Pause key), for those times when
you need to walk away from the emulation for a bit.
2013-09-23 11:05:10 -05:00

17 lines
220 B
C
Executable File

//
// DIS65C02.H
//
// by James L. Hammons
// (C) 2004 Underground Software
//
#ifndef __DIS65C02_H__
#define __DIS65C02_H__
#include <stdint.h>
int Decode65C02(char * outbuf, uint16_t pc);
#endif // __DIS65C02_H__