X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=src%2Fregwin.c;h=e5708f2466a24a36ee4b95d46df614f135e0a96f;hb=5905b40585298defb8e4230adfe90dfbccb465b9;hp=f94b8f9c7cc629a73e3b7db895495b13630ec937;hpb=7657e4d7db609460aa6d7bc993ee1ec2aa94670f;p=emu8051.git diff --git a/src/regwin.c b/src/regwin.c index f94b8f9..e5708f2 100644 --- a/src/regwin.c +++ b/src/regwin.c @@ -28,6 +28,7 @@ #include "common.h" #include "reg8051.h" #include "cpu8051.h" +#include "memory.h" #include "regwin.h" #include "memwin.h" #include "pgmwin.h" @@ -37,7 +38,7 @@ static GtkWidget *reglist; -#define DATA_ROWS 24 +#define DATA_ROWS 26 enum { @@ -62,11 +63,11 @@ static unsigned int regwin_read(int addr, int width) { if (width == 2) - return cpu8051_ReadD(addr); + return memory_sfr_read8(addr); else if (width == 4) { /* Address is low address. */ - return (cpu8051_ReadD(addr + 1) << 8) + - cpu8051_ReadD(addr); + return (memory_sfr_read8(addr + 1) << 8) | + memory_sfr_read8(addr); } else return 0xFFFFFFFF; } @@ -75,11 +76,11 @@ static void regwin_write(int addr, int val, int width) { if (width == 2) - cpu8051_WriteD(addr, (u_int8_t) val); + memory_sfr_write8(addr, (u_int8_t) val); else if (width == 4) { /* Address is low address. */ - cpu8051_WriteD(addr + 1, (u_int8_t) ((val & 0x0000FFFF) >> 8)); - cpu8051_WriteD(addr, (u_int8_t) val); + memory_sfr_write8(addr + 1, (u_int8_t) ((val & 0x0000FFFF) >> 8)); + memory_sfr_write8(addr, (u_int8_t) val); } }; @@ -97,36 +98,57 @@ regwin_write_pc(int param, int val) cpu8051.pc = (u_int16_t) val; } +static unsigned int +regwin_read_timer(int timer_low_addr) +{ + return (memory_sfr_read8(timer_low_addr + 2) << 8) | + memory_sfr_read8(timer_low_addr); +} + +static void +regwin_write_timer(int timer_low_addr, int val) +{ + memory_sfr_write8(timer_low_addr + 2, (u_int8_t) ((val & 0x0000FFFF) >> 8)); + memory_sfr_write8(timer_low_addr, (u_int8_t) val); +} + +static u_int8_t +regwin_read_bank_offset(void) +{ + return memory_sfr_read8(_PSW_) & 0x18; +} + static unsigned int regwin_read_bank(int dummy) { - return BANKPSW >> 3; + return regwin_read_bank_offset() >> 3; } static void regwin_write_bank(int param, int bank_number) { - u_int8_t psw = cpu8051_ReadD(_PSW_); + u_int8_t psw = memory_sfr_read8(_PSW_); if ((bank_number < 0) || (bank_number > 3)) { log_info("Error: invalid bank number: %d", bank_number); bank_number = 0; } - cpu8051_WriteD(_PSW_, (psw & ~0x18) | (bank_number << 3)); + memory_sfr_write8(_PSW_, (psw & ~0x18) | (bank_number << 3)); } -/* Read R0 - R7 in current bank. */ +/* Indirect read of R0 - R7 in current bank from internal memory. */ static unsigned int regwin_read_rx(int offset) { - return cpu8051_ReadD(BANKPSW + offset); + return memory_read8(INT_MEM_ID, regwin_read_bank_offset() + offset); } +/* Indirect write to R0 - R7 in current bank to internal memory. */ static void regwin_write_rx(int offset, int val) { - cpu8051_WriteD(BANKPSW + offset, (u_int8_t) val); + memory_write8(INT_MEM_ID, regwin_read_bank_offset() + offset, (u_int8_t) val); } /* This array defines how to read value for each register. */ @@ -203,6 +225,18 @@ static struct regwin_infos_t regwin_infos[DATA_ROWS] = { NULL, NULL, _TMOD_, }, + { + "TIMER0", + HEX_DIGITS_4, + regwin_read_timer, regwin_write_timer, + _TL0_, + }, + { + "TIMER1", + HEX_DIGITS_4, + regwin_read_timer, regwin_write_timer, + _TL1_, + }, { "SCON", HEX_DIGITS_2,