nesemu/include/cpu.h

30 lines
606 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:
*
* =====================================================================================
*/
2024-01-06 14:27:09 -05:00
#include "types.h"
#include "system.h"
2023-11-26 12:11:49 -05:00
#ifndef NESEMULATOR_CPU_H
#define NESEMULATOR_CPU_H
2024-01-06 14:27:09 -05:00
void cpu_init(CPU *cpu);
2023-11-26 12:11:49 -05:00
2024-01-06 14:27:09 -05:00
void cpu_cycle(System *system);
2023-11-26 12:11:49 -05:00
#endif