-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib6502.h
28 lines (24 loc) · 1.38 KB
/
lib6502.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/********************************************************************
* 6502 CPU Emulator Library
* ------------------------------------------------------------------
* This project is put together to offer dynamic link library
* for various computer emulators utilizing a 6502 CPU emu layer.
*
* This library is based on the real hardware, it offers functions
* for cycles computation, for op codes resolvent, and contains
* static definitions for the registers, flags and declarations
* for memory assignment. For development purposes, a separate
* download for header files is available for download, including
* op codes definitions in "opcodes.h" file. Choose whichever
* version you're going to go with (Windows or Unix: Linux/MacOS)
* ------------------------------------------------------------------
* File: lib6502.h
********************************************************************/
#ifndef __LIB6502_H__ // If called multiple times, doesn't produce
#define __LIB6502_H__ // warnings about duplicate definitions
// =========================================================================
// Global functions declarations to use for the CPU declaration.
// All declarations use memory pointer which is defined by your application.
// =========================================================================
// TODO
#endif