From 6b7ddbf8653643d539aa1176b7968dd035a34fdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Kujawa?= Date: Thu, 19 Jan 2017 11:49:05 +0100 Subject: [PATCH] LDA zero page emulation and test for it. --- src/65c02isa.csv | 2 +- src/instruction.c | 1 - test/Makefile | 2 +- test/test_emulation.c | 33 +++++++++++++++++++++++---------- 4 files changed, 25 insertions(+), 13 deletions(-) diff --git a/src/65c02isa.csv b/src/65c02isa.csv index 623ea5a..dbac180 100644 --- a/src/65c02isa.csv +++ b/src/65c02isa.csv @@ -163,7 +163,7 @@ OP_LDA_IZPX,"lda",IZPX,2,NULL OP_LDX_IMM,"ldx",IMMEDIATE,2,NULL OP_NOPI_A4,"nop",IMPLIED,1,NULL OP_LDY_ZP,"ldy",ZP,2,NULL -OP_LDA_ZP,"lda",ZP,2,NULL +OP_LDA_ZP,"lda",ZP,2,emul_lda OP_LDX_ZP,"ldx",ZP,2,NULL OP_SMB2_ZP,"smb2",ZP,2,NULL OP_TAY,"tay",IMPLIED,1,NULL diff --git a/src/instruction.c b/src/instruction.c index d583de1..a54320e 100644 --- a/src/instruction.c +++ b/src/instruction.c @@ -186,7 +186,6 @@ instruction_data_read_1(rk65c02emu_t *e, instrdef_t *id, instruction_t *i) case ABSOLUTEY: case IABSOLUTE: case IABSOLUTEX: - default: printf("unhandled addressing mode for opcode %x\n", i->opcode); diff --git a/test/Makefile b/test/Makefile index 9041994..8e0d3ef 100644 --- a/test/Makefile +++ b/test/Makefile @@ -5,7 +5,7 @@ VASM=vasm6502_std VASMFLAGS=-Fbin -c02 TESTS=test_bus test_emulation -TESTROMS=test_emulation_nop.rom +TESTROMS=test_emulation_nop.rom test_emulation_lda_imm.rom test_emulation_lda_zp.rom all : $(TESTS) $(TESTROMS) diff --git a/test/test_emulation.c b/test/test_emulation.c index a737d3b..d8f78c1 100644 --- a/test/test_emulation.c +++ b/test/test_emulation.c @@ -1,6 +1,7 @@ #include #include +#include #include #include "bus.h" @@ -8,6 +9,18 @@ #define ROM_LOAD_ADDR 0xC000 +bool rom_start(rk65c02emu_t *, const char *); + +bool +rom_start(rk65c02emu_t *e, const char *name) +{ + e->regs.PC = ROM_LOAD_ADDR; + bus_load_file(e->bus, ROM_LOAD_ADDR, name); + rk65c02_start(e); + + return true; +} + ATF_TC_WITHOUT_HEAD(emul_lda); ATF_TC_BODY(emul_lda, tc) { @@ -17,17 +30,17 @@ ATF_TC_BODY(emul_lda, tc) b = bus_init(); e = rk65c02_init(&b); - e.regs.PC = ROM_LOAD_ADDR; - - bus_write_1(&b, ROM_LOAD_ADDR, 0xA9); - bus_write_1(&b, ROM_LOAD_ADDR+1, 0xAF); - bus_write_1(&b, ROM_LOAD_ADDR+2, 0xDB); - - rk65c02_start(&e); - - ATF_CHECK(e.regs.PC == ROM_LOAD_ADDR+3); + /* LDA immediate */ + ATF_REQUIRE(rom_start(&e, "test_emulation_lda_imm.rom")); +/* ATF_CHECK(e.state == STOPPED); // separate test case for states? */ + ATF_CHECK(e.regs.PC == ROM_LOAD_ADDR+3); // separate test case for PC? */ ATF_CHECK(e.regs.A == 0xAF); + /* LDA zero page */ + bus_write_1(&b, 0x10, 0xAE); + ATF_REQUIRE(rom_start(&e, "test_emulation_lda_zp.rom")); + ATF_CHECK(e.regs.A == 0xAE); + bus_finish(&b); } @@ -42,7 +55,7 @@ ATF_TC_BODY(emul_nop, tc) e.regs.PC = ROM_LOAD_ADDR; - bus_load_file(&b, 0xC000, "test_emulation_nop.rom"); + bus_load_file(&b, ROM_LOAD_ADDR, "test_emulation_nop.rom"); rk65c02_start(&e);