1
0
mirror of https://github.com/rzzzwilson/pymlac.git synced 2025-06-10 09:32:41 +00:00
2015-10-15 19:45:29 +07:00

30 lines
880 B
C
Executable File

/******************************************************************************\
* cpu.h *
* ------- *
* *
* Implements all main CPU instructions. *
* *
\******************************************************************************/
#ifndef CPU_H
#define CPU_H
#include "imlac.h"
/******
* Exported functions.
******/
void cpu_start(void);
void cpu_stop(void);
int cpu_execute_one(void);
WORD cpu_get_AC(void);
WORD cpu_get_L(void);
WORD cpu_get_PC(void);
WORD cpu_get_prev_PC(void);
void cpu_set_PC(WORD pc);
void cpu_set_DS(WORD ds);
#endif