nesemu/include/cpu.h

30 lines
632 B
C
Raw Normal View History

2023-11-26 12:11:49 -05:00
/*
* =====================================================================================
*
* Filename: cpu.h
*
* Description: 6502 CPU emulator headers
*
* Version: 1.0
* Created: 2023-09-21 10:12:33 PM
* Revision: none
* Compiler: gcc
*
* Author: William Nolin,
* Organization:
*
* =====================================================================================
*/
#ifndef NESEMULATOR_CPU_H
#define NESEMULATOR_CPU_H
typedef unsigned char byte;
typedef unsigned short address;
typedef unsigned short word;
2023-12-23 16:35:23 -05:00
void cpu_init();
void cpu_step();
2023-11-26 12:11:49 -05:00
#endif