2023-11-26 12:11:49 -05:00
|
|
|
/*
|
|
|
|
* =====================================================================================
|
|
|
|
*
|
2024-05-06 20:23:44 -04:00
|
|
|
* Filename: cpu_state.h
|
2023-11-26 12:11:49 -05:00
|
|
|
*
|
|
|
|
* 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-05-06 20:23:44 -04:00
|
|
|
void cpu_init();
|
2023-11-26 12:11:49 -05:00
|
|
|
|
2024-05-06 20:23:44 -04:00
|
|
|
void cpu_cycle();
|
2023-11-26 12:11:49 -05:00
|
|
|
|
|
|
|
#endif
|