chip-8/src/vcpu.h

95 lines
1.7 KiB
C
Raw Normal View History

2023-12-25 07:24:17 +01:00
#pragma once
2023-12-26 09:06:40 +01:00
#define VCPU_FREQ 600
#define DTST_FREQ 60
#define SCREEN_FREQ 60
2023-12-25 09:25:14 +01:00
#define REG_FLAG 0xF
2023-12-26 17:51:39 +01:00
/**
* @brief Store the entire VCPU state
*
*/
2023-12-25 07:24:17 +01:00
typedef struct VCPU_State {
2023-12-26 17:51:39 +01:00
/// @brief Program Counter (16 bits but only 12 bits used (4096 memory addresses))
2023-12-25 07:32:11 +01:00
unsigned short PC;
2023-12-26 17:51:39 +01:00
/// @brief Index register (16 bits but only 12 bits used (4096 memory addresses))
2023-12-25 07:32:11 +01:00
unsigned short I;
2023-12-26 17:51:39 +01:00
/// @brief Stack register (16 bits)
2023-12-25 07:32:11 +01:00
unsigned short S;
2023-12-25 10:07:12 +01:00
unsigned short stack[100]; // Emulated stack
2023-12-25 07:32:11 +01:00
2023-12-26 17:51:39 +01:00
/// @brief General purpose registers (8 bits each)
unsigned char V[16]; // Note last one often used as a flag register
2023-12-25 07:32:11 +01:00
2023-12-26 17:51:39 +01:00
/// @brief Delay timer (8 bits)
2023-12-25 07:32:11 +01:00
unsigned char DT;
2023-12-26 17:51:39 +01:00
/// @brief Sound timer (8 bits)
2023-12-25 07:32:11 +01:00
unsigned char ST;
2023-12-26 17:51:39 +01:00
/// @brief Intruction (opcode + decoded fields)
2023-12-25 09:11:45 +01:00
unsigned short opcode;
2023-12-25 15:03:22 +01:00
unsigned char X;
unsigned char Y;
unsigned char N;
unsigned char NN;
2023-12-25 09:11:45 +01:00
unsigned short NNN;
2023-12-26 09:06:40 +01:00
2023-12-26 17:51:39 +01:00
/// @brief Keypressed
2023-12-26 13:17:52 +01:00
int keypressed; // Not 0 if a key was pressed
unsigned char key;
2023-12-26 09:06:40 +01:00
2023-12-26 17:51:39 +01:00
/// @brief Count VCPU ticks
2023-12-26 13:17:52 +01:00
int dt_ticks;
int st_ticks;
2023-12-26 09:06:40 +01:00
int screen_ticks;
2023-12-25 07:24:17 +01:00
} VCPU_State;
2023-12-26 17:51:39 +01:00
/**
* @brief Must be called first!
*
*/
2023-12-25 07:24:17 +01:00
void VCPUInit();
2023-12-26 17:51:39 +01:00
/**
* @brief Fetch instruction from memory
*
*/
2023-12-25 07:24:17 +01:00
void VCPUFetch();
2023-12-26 17:51:39 +01:00
/**
* @brief Decode instruction from the last fetch
*
*/
2023-12-25 07:24:17 +01:00
void VCPUDecode();
2023-12-26 17:51:39 +01:00
/**
* @brief Execute decode instruction
*
*/
2023-12-25 07:24:17 +01:00
void VCPUExecute();
2023-12-26 17:51:39 +01:00
/**
* @brief Fetch, decode and execute an instruction
*
*/
2023-12-26 09:06:40 +01:00
void VCPUTick();
2023-12-26 17:51:39 +01:00
/**
* @brief Simple (a bit) binary to BCD convertion
*
* @param x
* @param u
* @param t
* @param h
*/
2023-12-25 15:03:22 +01:00
void VCPUDoubleDabble(unsigned char x, unsigned char *u, unsigned char *t, unsigned char *h);
2023-12-26 17:51:39 +01:00
/**
* @brief Dump VCPU state
*
*/
2023-12-25 09:11:45 +01:00
void VCPUDump();