mirror of
https://github.com/jborza/emu6502.git
synced 2024-11-21 23:31:19 +00:00
197 lines
4.4 KiB
C
197 lines
4.4 KiB
C
#include "state.h"
|
|
#include "cpu.h"
|
|
#include "opcodes.h"
|
|
#include <stdio.h>
|
|
|
|
void* unimplemented_instruction(State6502* state) {
|
|
printf("Error: unimplemented instruction\n");
|
|
exit(1);
|
|
}
|
|
|
|
void set_NV_flags(State6502* state, byte value) {
|
|
//TODO implement V flag
|
|
if (value) {
|
|
state->flags.z = 0;
|
|
}
|
|
else {
|
|
state->flags.z = 1;
|
|
}
|
|
}
|
|
|
|
void clear_flags(State6502* state) {
|
|
memcpy(&state->flags, &state->a, 1);
|
|
}
|
|
|
|
void clear_state(State6502* state) {
|
|
state->a = 0;
|
|
state->x = 0;
|
|
state->y = 0;
|
|
state->pc = 0;
|
|
state->sp = 0;
|
|
//state -> flags = (Flags)0;
|
|
clear_flags(state);
|
|
state->running = 1;
|
|
}
|
|
|
|
byte pop_byte(State6502* state) {
|
|
return state->memory[state->pc++];
|
|
}
|
|
|
|
void print_state(State6502* state) {
|
|
printf("\tC=%d,Z=%d,I=%d,D=%d,B=%d,V=%d,N=%d\n", state->flags.c, state->flags.z, state->flags.i, state->flags.d, state->flags.b, state->flags.v, state->flags.n);
|
|
printf("\tA $%02x X $%02x Y $%02x SP $%02x PC $%04x\n", state->a, state->x, state->y, state->sp, state->pc);
|
|
}
|
|
|
|
void print_memory(State6502* state, word offset) {
|
|
printf("$%04x: ", offset);
|
|
for (byte i = 0; i < 32; i++) {
|
|
printf("%02x", state->memory[offset + i]);
|
|
if (i % 8 == 7)
|
|
printf("|");
|
|
else
|
|
printf(" ");
|
|
}
|
|
printf("\n");
|
|
}
|
|
|
|
//bitwise or with accumulator
|
|
void ORA(State6502 * state, byte operand) {
|
|
byte result = state->a | operand;
|
|
set_NV_flags(state, result);
|
|
state->a = result;
|
|
}
|
|
|
|
//load accumulator
|
|
void LDA(State6502 * state, byte operand) {
|
|
state->a = operand;
|
|
set_NV_flags(state, state->a);
|
|
}
|
|
|
|
word pop_word(State6502 * state) {
|
|
byte low = pop_byte(state);
|
|
byte high = pop_byte(state);
|
|
word result = (high << 8) | low;
|
|
return result;
|
|
}
|
|
|
|
word read_word(State6502 * state, word address) {
|
|
return state->memory[address] | state->memory[address + 1] << 8;
|
|
}
|
|
|
|
int emulate_6502_op(State6502 * state) {
|
|
byte* opcode = &state->memory[state->pc++];
|
|
switch (*opcode) {
|
|
case BRK: state->running = 0;
|
|
state->flags.b = 1;
|
|
break; //BRK
|
|
case NOP: break; //NOP
|
|
case ORA_INDX: //ORA, indirect, x
|
|
//The address to be accessed by an instruction using X register indexed absolute addressing is computed by taking the 16 bit address
|
|
//from the instruction and added the contents of the X register.
|
|
//For example if X contains $92 then an STA $2000,X instruction will store the accumulator at $2092 (e.g. $2000 + $92). (STA)
|
|
{
|
|
word address_indirect = pop_word(state) + state->x;
|
|
word address = read_word(state, address_indirect);
|
|
ORA(state, state->memory[address]);
|
|
break;
|
|
}
|
|
case ORA_ZP: //ORA, zero page
|
|
{
|
|
byte address = pop_byte(state);
|
|
ORA(state, state->memory[address]);
|
|
break;
|
|
}
|
|
case ORA_INDY: //ORA, indirect, y (post_indexed)
|
|
{
|
|
word address_indirect = pop_word(state);
|
|
word address = read_word(state, address_indirect) + state->y;
|
|
ORA(state, state->memory[address]);
|
|
unimplemented_instruction(state);
|
|
break;
|
|
}
|
|
case ORA_IMM:
|
|
ORA(state, pop_byte(state));
|
|
break;
|
|
case ORA_ZPX:
|
|
{
|
|
byte address = pop_byte(state) + state->x;
|
|
ORA(state, state->memory[address]);
|
|
break;
|
|
}
|
|
case ORA_ABS:
|
|
{
|
|
word address = pop_word(state);
|
|
ORA(state, state->memory[address]);
|
|
break;
|
|
}
|
|
case ORA_ABSX:
|
|
{
|
|
word address = pop_word(state) + state->x;
|
|
ORA(state, state->memory[address]);
|
|
break;
|
|
}
|
|
case ORA_ABSY:
|
|
{
|
|
word address = pop_word(state) + state->y;
|
|
ORA(state, state->memory[address]);
|
|
break;
|
|
}
|
|
case LDA_IMM:
|
|
{
|
|
LDA(state, pop_byte(state));
|
|
break;
|
|
}
|
|
case LDA_ZP:
|
|
{
|
|
byte address = pop_byte(state);
|
|
LDA(state, state->memory[address]);
|
|
break;
|
|
}
|
|
case LDA_ZPX:
|
|
{
|
|
byte address = pop_byte(state) + state->x;
|
|
LDA(state, state->memory[address]);
|
|
break;
|
|
}
|
|
case LDA_ABS:
|
|
{
|
|
word address = pop_word(state);
|
|
LDA(state, state->memory[address]);
|
|
break;
|
|
}
|
|
case LDA_ABSX:
|
|
{
|
|
word address = pop_word(state) + state->x;
|
|
LDA(state, state->memory[address]);
|
|
break;
|
|
}
|
|
case LDA_ABSY:
|
|
{
|
|
word address = pop_word(state) + state->y;
|
|
LDA(state, state->memory[address]);
|
|
break;
|
|
}
|
|
case LDA_INDX:
|
|
{
|
|
//pre-indexed indirect
|
|
//zero-page address is added to x register
|
|
byte indirect_address = pop_byte(state) + state->x;
|
|
//pointing to address of a word holding the address of the operand
|
|
word address = read_word(state, indirect_address);
|
|
LDA(state, state->memory[address]);
|
|
break;
|
|
}
|
|
case LDA_INDY:
|
|
{
|
|
//post-indexed indirect
|
|
byte indirect_address = pop_byte(state);
|
|
word address = read_word(state, indirect_address) + state->y;
|
|
LDA(state, state->memory[address]);
|
|
break;
|
|
}
|
|
default:
|
|
unimplemented_instruction(state); break;
|
|
}
|
|
return 0;
|
|
}
|