Skip to content

Commit 1b51c89

Browse files
Richard GellmanRichard Gellman
Richard Gellman
authored and
Richard Gellman
committed
Version 1.4
1 parent d6ceffc commit 1b51c89

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+4597
-4279
lines changed

6502core.cpp

+364-188
Large diffs are not rendered by default.

6502core.h

+8
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
#define CORE6502_HEADER
2424

2525
#include "port.h"
26+
#include "stdio.h"
2627

2728
void DumpRegs(void);
2829

@@ -46,6 +47,8 @@ extern unsigned char NMIStatus;
4647
extern unsigned int Cycles;
4748
extern int ProgramCounter;
4849
extern CycleCountT TotalCycles;
50+
extern unsigned int NMILock;
51+
extern int DisplayCycles;
4952

5053
#define SetTrigger(after,var) var=TotalCycles+after;
5154
#define IncTrigger(after,var) var+=(after);
@@ -67,4 +70,9 @@ void Restore6502State(unsigned char *CPUState);
6770
void DoNMI(void);
6871
void core_dumpstate(void);
6972
void DoInterrupt(void);
73+
void Save6502UEF(FILE *SUEF);
74+
void Load6502UEF(FILE *SUEF);
75+
extern int SwitchOnCycles; // Reset delay
76+
extern int OpCodes;
77+
extern int BHardware;
7078
#endif

0 commit comments

Comments
 (0)