From 7302ce570f80404576667ad73924fb1b024d791b Mon Sep 17 00:00:00 2001 From: espes Date: Thu, 11 Jun 2015 19:39:33 +1000 Subject: [PATCH] rejig dispatch, some new instructions --- hw/xbox/dsp/dsp.c | 2 + hw/xbox/dsp/dsp_cpu.c | 1957 +++++++++++++++++++++----------------- hw/xbox/dsp/dsp_disasm.c | 1045 ++++++++------------ hw/xbox/dsp/dsp_disasm.h | 114 ++- hw/xbox/dsp/dsp_int.h | 27 +- 5 files changed, 1610 insertions(+), 1535 deletions(-) diff --git a/hw/xbox/dsp/dsp.c b/hw/xbox/dsp/dsp.c index d9a01ea059..de0b991629 100644 --- a/hw/xbox/dsp/dsp.c +++ b/hw/xbox/dsp/dsp.c @@ -113,6 +113,7 @@ uint32_t dsp_get_pc(void) return dsp_core.pc; } +#if 0 /** * Get next DSP PC without output (for debugging) */ @@ -137,6 +138,7 @@ uint32_t dsp_get_next_pc(uint32_t pc) return pc + instruction_length; } +#endif /** * Get current DSP instruction cycles (for profiling) diff --git a/hw/xbox/dsp/dsp_cpu.c b/hw/xbox/dsp/dsp_cpu.c index 55dee6341a..5017343153 100644 --- a/hw/xbox/dsp/dsp_cpu.c +++ b/hw/xbox/dsp/dsp_cpu.c @@ -35,6 +35,7 @@ #define DPRINTF(s, ...) fprintf(stderr, s, ## __VA_ARGS__) #define BITMASK(x) ((1<<(x))-1) +#define ARRAYSIZE(x) (sizeof(x)/sizeof(x[0])) // #define DSP_COUNT_IPS /* Count instruction per seconds */ @@ -69,14 +70,12 @@ static bool is_dsp_in_disasm_mode; static char str_disasm_memory[2][50]; /* Buffer for memory change text in disasm mode */ static uint32_t disasm_memory_ptr; /* Pointer for memory change in disasm mode */ -static bool bExceptionDebugging = 1; +static bool bExceptionDebugging = false; /********************************** * Functions **********************************/ -typedef void (*dsp_emul_t)(void); - static void dsp_postexecute_update_pc(void); static void dsp_postexecute_interrupts(void); @@ -94,105 +93,111 @@ static void dsp_stack_push(uint32_t curpc, uint32_t cursr, uint16_t sshOnly); static void dsp_stack_pop(uint32_t *curpc, uint32_t *cursr); static void dsp_compute_ssh_ssl(void); -static void opcode8h_0(void); - static void dsp_update_rn(uint32_t numreg, int16_t modifier); static void dsp_update_rn_bitreverse(uint32_t numreg); static void dsp_update_rn_modulo(uint32_t numreg, int16_t modifier); static int dsp_calc_ea(uint32_t ea_mode, uint32_t *dst_addr); static int dsp_calc_cc(uint32_t cc_code); -static void dsp_undefined(void); +typedef void (*emu_func_t)(void); + +static void emu_undefined(void); /* Instructions without parallel moves */ -static void dsp_andi(void); -static void dsp_bchg_aa(void); -static void dsp_bchg_ea(void); -static void dsp_bchg_pp(void); -static void dsp_bchg_reg(void); -static void dsp_bclr_aa(void); -static void dsp_bclr_ea(void); -static void dsp_bclr_pp(void); -static void dsp_bclr_reg(void); -static void dsp_bset_aa(void); -static void dsp_bset_ea(void); -static void dsp_bset_pp(void); -static void dsp_bset_reg(void); -static void dsp_btst_aa(void); -static void dsp_btst_ea(void); -static void dsp_btst_pp(void); -static void dsp_btst_reg(void); -static void dsp_div(void); -static void dsp_enddo(void); -static void dsp_illegal(void); -static void dsp_jcc_imm(void); -static void dsp_jcc_ea(void); -static void dsp_jclr_aa(void); -static void dsp_jclr_ea(void); -static void dsp_jclr_pp(void); -static void dsp_jclr_reg(void); -static void dsp_jmp_ea(void); -static void dsp_jmp_imm(void); -static void dsp_jscc_ea(void); -static void dsp_jscc_imm(void); -static void dsp_jsclr_aa(void); -static void dsp_jsclr_ea(void); -static void dsp_jsclr_pp(void); -static void dsp_jsclr_reg(void); -static void dsp_jset_aa(void); -static void dsp_jset_ea(void); -static void dsp_jset_pp(void); -static void dsp_jset_reg(void); -static void dsp_jsr_ea(void); -static void dsp_jsr_imm(void); -static void dsp_jsset_aa(void); -static void dsp_jsset_ea(void); -static void dsp_jsset_pp(void); -static void dsp_jsset_reg(void); -static void dsp_lua(void); -static void dsp_movem_ea(void); -static void dsp_movem_aa(void); -static void dsp_nop(void); -static void dsp_norm(void); -static void dsp_ori(void); -static void dsp_reset(void); -static void dsp_rti(void); -static void dsp_rts(void); -static void dsp_stop(void); -static void dsp_swi(void); -static void dsp_tcc(void); -static void dsp_wait(void); +static void emu_add_long(void); +static void emu_andi(void); +static void emu_bcc_long(void); +static void emu_bcc_imm(void); +static void emu_bchg_aa(void); +static void emu_bchg_ea(void); +static void emu_bchg_pp(void); +static void emu_bchg_reg(void); +static void emu_bclr_aa(void); +static void emu_bclr_ea(void); +static void emu_bclr_pp(void); +static void emu_bclr_reg(void); +static void emu_bra_imm(void); +static void emu_bset_aa(void); +static void emu_bset_ea(void); +static void emu_bset_pp(void); +static void emu_bset_reg(void); +static void emu_btst_aa(void); +static void emu_btst_ea(void); +static void emu_btst_pp(void); +static void emu_btst_reg(void); +static void emu_cmpu(void); +static void emu_div(void); +static void emu_enddo(void); +static void emu_illegal(void); +static void emu_jcc_imm(void); +static void emu_jcc_ea(void); +static void emu_jclr_aa(void); +static void emu_jclr_ea(void); +static void emu_jclr_pp(void); +static void emu_jclr_reg(void); +static void emu_jmp_ea(void); +static void emu_jmp_imm(void); +static void emu_jscc_ea(void); +static void emu_jscc_imm(void); +static void emu_jsclr_aa(void); +static void emu_jsclr_ea(void); +static void emu_jsclr_pp(void); +static void emu_jsclr_reg(void); +static void emu_jset_aa(void); +static void emu_jset_ea(void); +static void emu_jset_pp(void); +static void emu_jset_reg(void); +static void emu_jsr_ea(void); +static void emu_jsr_imm(void); +static void emu_jsset_aa(void); +static void emu_jsset_ea(void); +static void emu_jsset_pp(void); +static void emu_jsset_reg(void); +static void emu_lua(void); +static void emu_movem_ea(void); +static void emu_movem_aa(void); +static void emu_nop(void); +static void emu_norm(void); +static void emu_ori(void); +static void emu_reset(void); +static void emu_rti(void); +static void emu_rts(void); +static void emu_stop(void); +static void emu_swi(void); +static void emu_tcc(void); +static void emu_wait(void); -static void dsp_do_ea(void); -static void dsp_do_aa(void); -static void dsp_do_imm(void); -static void dsp_do_reg(void); -static void dsp_rep_aa(void); -static void dsp_rep_ea(void); -static void dsp_rep_imm(void); -static void dsp_rep_reg(void); -static void dsp_movec_aa(void); -static void dsp_movec_ea(void); -static void dsp_movec_imm(void); -static void dsp_movec_reg(void); -static void dsp_movep_0(void); -static void dsp_movep_1(void); -static void dsp_movep_23(void); +static void emu_do_ea(void); +static void emu_do_aa(void); +static void emu_do_imm(void); +static void emu_do_reg(void); +static void emu_dor_imm(void); +static void emu_rep_aa(void); +static void emu_rep_ea(void); +static void emu_rep_imm(void); +static void emu_rep_reg(void); +static void emu_movec_aa(void); +static void emu_movec_ea(void); +static void emu_movec_imm(void); +static void emu_movec_reg(void); +static void emu_movep_0(void); +static void emu_movep_1(void); +static void emu_movep_23(void); -static void dsp_movep_x_low(void); -static void dsp_movex_a(void); +static void emu_movep_x_low(void); +static void emu_move_x_aa(void); /* Parallel move analyzer */ -static int dsp_pm_read_accu24(int numreg, uint32_t *dest); -static void dsp_pm_0(void); -static void dsp_pm_1(void); -static void dsp_pm_2(void); -static void dsp_pm_2_2(void); -static void dsp_pm_3(void); -static void dsp_pm_4(void); -static void dsp_pm_4x(void); -static void dsp_pm_5(void); -static void dsp_pm_8(void); +static int emu_pm_read_accu24(int numreg, uint32_t *dest); +static void emu_pm_0(void); +static void emu_pm_1(void); +static void emu_pm_2(void); +static void emu_pm_2_2(void); +static void emu_pm_3(void); +static void emu_pm_4(void); +static void emu_pm_4x(void); +static void emu_pm_5(void); +static void emu_pm_8(void); /* 56bits arithmetic */ static uint16_t dsp_abs56(uint32_t *dest); @@ -204,386 +209,304 @@ static void dsp_mul56(uint32_t source1, uint32_t source2, uint32_t *dest, uint8_ static void dsp_rnd56(uint32_t *dest); /* Instructions with parallel moves */ -static void dsp_abs_a(void); -static void dsp_abs_b(void); -static void dsp_adc_x_a(void); -static void dsp_adc_x_b(void); -static void dsp_adc_y_a(void); -static void dsp_adc_y_b(void); -static void dsp_add_b_a(void); -static void dsp_add_a_b(void); -static void dsp_add_x_a(void); -static void dsp_add_x_b(void); -static void dsp_add_y_a(void); -static void dsp_add_y_b(void); -static void dsp_add_x0_a(void); -static void dsp_add_x0_b(void); -static void dsp_add_y0_a(void); -static void dsp_add_y0_b(void); -static void dsp_add_x1_a(void); -static void dsp_add_x1_b(void); -static void dsp_add_y1_a(void); -static void dsp_add_y1_b(void); -static void dsp_addl_b_a(void); -static void dsp_addl_b_a(void); -static void dsp_addl_a_b(void); -static void dsp_addr_b_a(void); -static void dsp_addr_a_b(void); -static void dsp_and_x0_a(void); -static void dsp_and_x0_b(void); -static void dsp_and_y0_a(void); -static void dsp_and_y0_b(void); -static void dsp_and_x1_a(void); -static void dsp_and_x1_b(void); -static void dsp_and_y1_a(void); -static void dsp_and_y1_b(void); -static void dsp_asl_a(void); -static void dsp_asl_b(void); -static void dsp_asr_a(void); -static void dsp_asr_b(void); -static void dsp_clr_a(void); -static void dsp_clr_b(void); -static void dsp_cmp_b_a(void); -static void dsp_cmp_a_b(void); -static void dsp_cmp_x0_a(void); -static void dsp_cmp_x0_b(void); -static void dsp_cmp_y0_a(void); -static void dsp_cmp_y0_b(void); -static void dsp_cmp_x1_a(void); -static void dsp_cmp_x1_b(void); -static void dsp_cmp_y1_a(void); -static void dsp_cmp_y1_b(void); -static void dsp_cmpm_b_a(void); -static void dsp_cmpm_a_b(void); -static void dsp_cmpm_x0_a(void); -static void dsp_cmpm_x0_b(void); -static void dsp_cmpm_y0_a(void); -static void dsp_cmpm_y0_b(void); -static void dsp_cmpm_x1_a(void); -static void dsp_cmpm_x1_b(void); -static void dsp_cmpm_y1_a(void); -static void dsp_cmpm_y1_b(void); -static void dsp_eor_x0_a(void); -static void dsp_eor_x0_b(void); -static void dsp_eor_y0_a(void); -static void dsp_eor_y0_b(void); -static void dsp_eor_x1_a(void); -static void dsp_eor_x1_b(void); -static void dsp_eor_y1_a(void); -static void dsp_eor_y1_b(void); -static void dsp_lsl_a(void); -static void dsp_lsl_b(void); -static void dsp_lsr_a(void); -static void dsp_lsr_b(void); -static void dsp_mac_p_x0_x0_a(void); -static void dsp_mac_m_x0_x0_a(void); -static void dsp_mac_p_x0_x0_b(void); -static void dsp_mac_m_x0_x0_b(void); -static void dsp_mac_p_y0_y0_a(void); -static void dsp_mac_m_y0_y0_a(void); -static void dsp_mac_p_y0_y0_b(void); -static void dsp_mac_m_y0_y0_b(void); -static void dsp_mac_p_x1_x0_a(void); -static void dsp_mac_m_x1_x0_a(void); -static void dsp_mac_p_x1_x0_b(void); -static void dsp_mac_m_x1_x0_b(void); -static void dsp_mac_p_y1_y0_a(void); -static void dsp_mac_m_y1_y0_a(void); -static void dsp_mac_p_y1_y0_b(void); -static void dsp_mac_m_y1_y0_b(void); -static void dsp_mac_p_x0_y1_a(void); -static void dsp_mac_m_x0_y1_a(void); -static void dsp_mac_p_x0_y1_b(void); -static void dsp_mac_m_x0_y1_b(void); -static void dsp_mac_p_y0_x0_a(void); -static void dsp_mac_m_y0_x0_a(void); -static void dsp_mac_p_y0_x0_b(void); -static void dsp_mac_m_y0_x0_b(void); -static void dsp_mac_p_x1_y0_a(void); -static void dsp_mac_m_x1_y0_a(void); -static void dsp_mac_p_x1_y0_b(void); -static void dsp_mac_m_x1_y0_b(void); -static void dsp_mac_p_y1_x1_a(void); -static void dsp_mac_m_y1_x1_a(void); -static void dsp_mac_p_y1_x1_b(void); -static void dsp_mac_m_y1_x1_b(void); -static void dsp_macr_p_x0_x0_a(void); -static void dsp_macr_m_x0_x0_a(void); -static void dsp_macr_p_x0_x0_b(void); -static void dsp_macr_m_x0_x0_b(void); -static void dsp_macr_p_y0_y0_a(void); -static void dsp_macr_m_y0_y0_a(void); -static void dsp_macr_p_y0_y0_b(void); -static void dsp_macr_m_y0_y0_b(void); -static void dsp_macr_p_x1_x0_a(void); -static void dsp_macr_m_x1_x0_a(void); -static void dsp_macr_p_x1_x0_b(void); -static void dsp_macr_m_x1_x0_b(void); -static void dsp_macr_p_y1_y0_a(void); -static void dsp_macr_m_y1_y0_a(void); -static void dsp_macr_p_y1_y0_b(void); -static void dsp_macr_m_y1_y0_b(void); -static void dsp_macr_p_x0_y1_a(void); -static void dsp_macr_m_x0_y1_a(void); -static void dsp_macr_p_x0_y1_b(void); -static void dsp_macr_m_x0_y1_b(void); -static void dsp_macr_p_y0_x0_a(void); -static void dsp_macr_m_y0_x0_a(void); -static void dsp_macr_p_y0_x0_b(void); -static void dsp_macr_m_y0_x0_b(void); -static void dsp_macr_p_x1_y0_a(void); -static void dsp_macr_m_x1_y0_a(void); -static void dsp_macr_p_x1_y0_b(void); -static void dsp_macr_m_x1_y0_b(void); -static void dsp_macr_p_y1_x1_a(void); -static void dsp_macr_m_y1_x1_a(void); -static void dsp_macr_p_y1_x1_b(void); -static void dsp_macr_m_y1_x1_b(void); -static void dsp_move(void); -static void dsp_mpy_p_x0_x0_a(void); -static void dsp_mpy_m_x0_x0_a(void); -static void dsp_mpy_p_x0_x0_b(void); -static void dsp_mpy_m_x0_x0_b(void); -static void dsp_mpy_p_y0_y0_a(void); -static void dsp_mpy_m_y0_y0_a(void); -static void dsp_mpy_p_y0_y0_b(void); -static void dsp_mpy_m_y0_y0_b(void); -static void dsp_mpy_p_x1_x0_a(void); -static void dsp_mpy_m_x1_x0_a(void); -static void dsp_mpy_p_x1_x0_b(void); -static void dsp_mpy_m_x1_x0_b(void); -static void dsp_mpy_p_y1_y0_a(void); -static void dsp_mpy_m_y1_y0_a(void); -static void dsp_mpy_p_y1_y0_b(void); -static void dsp_mpy_m_y1_y0_b(void); -static void dsp_mpy_p_x0_y1_a(void); -static void dsp_mpy_m_x0_y1_a(void); -static void dsp_mpy_p_x0_y1_b(void); -static void dsp_mpy_m_x0_y1_b(void); -static void dsp_mpy_p_y0_x0_a(void); -static void dsp_mpy_m_y0_x0_a(void); -static void dsp_mpy_p_y0_x0_b(void); -static void dsp_mpy_m_y0_x0_b(void); -static void dsp_mpy_p_x1_y0_a(void); -static void dsp_mpy_m_x1_y0_a(void); -static void dsp_mpy_p_x1_y0_b(void); -static void dsp_mpy_m_x1_y0_b(void); -static void dsp_mpy_p_y1_x1_a(void); -static void dsp_mpy_m_y1_x1_a(void); -static void dsp_mpy_p_y1_x1_b(void); -static void dsp_mpy_m_y1_x1_b(void); -static void dsp_mpyr_p_x0_x0_a(void); -static void dsp_mpyr_m_x0_x0_a(void); -static void dsp_mpyr_p_x0_x0_b(void); -static void dsp_mpyr_m_x0_x0_b(void); -static void dsp_mpyr_p_y0_y0_a(void); -static void dsp_mpyr_m_y0_y0_a(void); -static void dsp_mpyr_p_y0_y0_b(void); -static void dsp_mpyr_m_y0_y0_b(void); -static void dsp_mpyr_p_x1_x0_a(void); -static void dsp_mpyr_m_x1_x0_a(void); -static void dsp_mpyr_p_x1_x0_b(void); -static void dsp_mpyr_m_x1_x0_b(void); -static void dsp_mpyr_p_y1_y0_a(void); -static void dsp_mpyr_m_y1_y0_a(void); -static void dsp_mpyr_p_y1_y0_b(void); -static void dsp_mpyr_m_y1_y0_b(void); -static void dsp_mpyr_p_x0_y1_a(void); -static void dsp_mpyr_m_x0_y1_a(void); -static void dsp_mpyr_p_x0_y1_b(void); -static void dsp_mpyr_m_x0_y1_b(void); -static void dsp_mpyr_p_y0_x0_a(void); -static void dsp_mpyr_m_y0_x0_a(void); -static void dsp_mpyr_p_y0_x0_b(void); -static void dsp_mpyr_m_y0_x0_b(void); -static void dsp_mpyr_p_x1_y0_a(void); -static void dsp_mpyr_m_x1_y0_a(void); -static void dsp_mpyr_p_x1_y0_b(void); -static void dsp_mpyr_m_x1_y0_b(void); -static void dsp_mpyr_p_y1_x1_a(void); -static void dsp_mpyr_m_y1_x1_a(void); -static void dsp_mpyr_p_y1_x1_b(void); -static void dsp_mpyr_m_y1_x1_b(void); -static void dsp_neg_a(void); -static void dsp_neg_b(void); -static void dsp_not_a(void); -static void dsp_not_b(void); -static void dsp_or_x0_a(void); -static void dsp_or_x0_b(void); -static void dsp_or_y0_a(void); -static void dsp_or_y0_b(void); -static void dsp_or_x1_a(void); -static void dsp_or_x1_b(void); -static void dsp_or_y1_a(void); -static void dsp_or_y1_b(void); -static void dsp_rnd_a(void); -static void dsp_rnd_b(void); -static void dsp_rol_a(void); -static void dsp_rol_b(void); -static void dsp_ror_a(void); -static void dsp_ror_b(void); -static void dsp_sbc_x_a(void); -static void dsp_sbc_x_b(void); -static void dsp_sbc_y_a(void); -static void dsp_sbc_y_b(void); -static void dsp_sub_b_a(void); -static void dsp_sub_a_b(void); -static void dsp_sub_x_a(void); -static void dsp_sub_x_b(void); -static void dsp_sub_y_a(void); -static void dsp_sub_y_b(void); -static void dsp_sub_x0_a(void); -static void dsp_sub_x0_b(void); -static void dsp_sub_y0_a(void); -static void dsp_sub_y0_b(void); -static void dsp_sub_x1_a(void); -static void dsp_sub_x1_b(void); -static void dsp_sub_y1_a(void); -static void dsp_sub_y1_b(void); -static void dsp_subl_a(void); -static void dsp_subl_b(void); -static void dsp_subr_a(void); -static void dsp_subr_b(void); -static void dsp_tfr_b_a(void); -static void dsp_tfr_a_b(void); -static void dsp_tfr_x0_a(void); -static void dsp_tfr_x0_b(void); -static void dsp_tfr_y0_a(void); -static void dsp_tfr_y0_b(void); -static void dsp_tfr_x1_a(void); -static void dsp_tfr_x1_b(void); -static void dsp_tfr_y1_a(void); -static void dsp_tfr_y1_b(void); -static void dsp_tst_a(void); -static void dsp_tst_b(void); +static void emu_abs_a(void); +static void emu_abs_b(void); +static void emu_adc_x_a(void); +static void emu_adc_x_b(void); +static void emu_adc_y_a(void); +static void emu_adc_y_b(void); +static void emu_add_b_a(void); +static void emu_add_a_b(void); +static void emu_add_x_a(void); +static void emu_add_x_b(void); +static void emu_add_y_a(void); +static void emu_add_y_b(void); +static void emu_add_x0_a(void); +static void emu_add_x0_b(void); +static void emu_add_y0_a(void); +static void emu_add_y0_b(void); +static void emu_add_x1_a(void); +static void emu_add_x1_b(void); +static void emu_add_y1_a(void); +static void emu_add_y1_b(void); +static void emu_addl_b_a(void); +static void emu_addl_b_a(void); +static void emu_addl_a_b(void); +static void emu_addr_b_a(void); +static void emu_addr_a_b(void); +static void emu_and_x0_a(void); +static void emu_and_x0_b(void); +static void emu_and_y0_a(void); +static void emu_and_y0_b(void); +static void emu_and_x1_a(void); +static void emu_and_x1_b(void); +static void emu_and_y1_a(void); +static void emu_and_y1_b(void); +static void emu_asl_a(void); +static void emu_asl_b(void); +static void emu_asr_a(void); +static void emu_asr_b(void); +static void emu_clr_a(void); +static void emu_clr_b(void); +static void emu_cmp_b_a(void); +static void emu_cmp_a_b(void); +static void emu_cmp_x0_a(void); +static void emu_cmp_x0_b(void); +static void emu_cmp_y0_a(void); +static void emu_cmp_y0_b(void); +static void emu_cmp_x1_a(void); +static void emu_cmp_x1_b(void); +static void emu_cmp_y1_a(void); +static void emu_cmp_y1_b(void); +static void emu_cmpm_b_a(void); +static void emu_cmpm_a_b(void); +static void emu_cmpm_x0_a(void); +static void emu_cmpm_x0_b(void); +static void emu_cmpm_y0_a(void); +static void emu_cmpm_y0_b(void); +static void emu_cmpm_x1_a(void); +static void emu_cmpm_x1_b(void); +static void emu_cmpm_y1_a(void); +static void emu_cmpm_y1_b(void); +static void emu_eor_x0_a(void); +static void emu_eor_x0_b(void); +static void emu_eor_y0_a(void); +static void emu_eor_y0_b(void); +static void emu_eor_x1_a(void); +static void emu_eor_x1_b(void); +static void emu_eor_y1_a(void); +static void emu_eor_y1_b(void); +static void emu_lsl_a(void); +static void emu_lsl_b(void); +static void emu_lsr_a(void); +static void emu_lsr_b(void); +static void emu_mac_p_x0_x0_a(void); +static void emu_mac_m_x0_x0_a(void); +static void emu_mac_p_x0_x0_b(void); +static void emu_mac_m_x0_x0_b(void); +static void emu_mac_p_y0_y0_a(void); +static void emu_mac_m_y0_y0_a(void); +static void emu_mac_p_y0_y0_b(void); +static void emu_mac_m_y0_y0_b(void); +static void emu_mac_p_x1_x0_a(void); +static void emu_mac_m_x1_x0_a(void); +static void emu_mac_p_x1_x0_b(void); +static void emu_mac_m_x1_x0_b(void); +static void emu_mac_p_y1_y0_a(void); +static void emu_mac_m_y1_y0_a(void); +static void emu_mac_p_y1_y0_b(void); +static void emu_mac_m_y1_y0_b(void); +static void emu_mac_p_x0_y1_a(void); +static void emu_mac_m_x0_y1_a(void); +static void emu_mac_p_x0_y1_b(void); +static void emu_mac_m_x0_y1_b(void); +static void emu_mac_p_y0_x0_a(void); +static void emu_mac_m_y0_x0_a(void); +static void emu_mac_p_y0_x0_b(void); +static void emu_mac_m_y0_x0_b(void); +static void emu_mac_p_x1_y0_a(void); +static void emu_mac_m_x1_y0_a(void); +static void emu_mac_p_x1_y0_b(void); +static void emu_mac_m_x1_y0_b(void); +static void emu_mac_p_y1_x1_a(void); +static void emu_mac_m_y1_x1_a(void); +static void emu_mac_p_y1_x1_b(void); +static void emu_mac_m_y1_x1_b(void); +static void emu_macr_p_x0_x0_a(void); +static void emu_macr_m_x0_x0_a(void); +static void emu_macr_p_x0_x0_b(void); +static void emu_macr_m_x0_x0_b(void); +static void emu_macr_p_y0_y0_a(void); +static void emu_macr_m_y0_y0_a(void); +static void emu_macr_p_y0_y0_b(void); +static void emu_macr_m_y0_y0_b(void); +static void emu_macr_p_x1_x0_a(void); +static void emu_macr_m_x1_x0_a(void); +static void emu_macr_p_x1_x0_b(void); +static void emu_macr_m_x1_x0_b(void); +static void emu_macr_p_y1_y0_a(void); +static void emu_macr_m_y1_y0_a(void); +static void emu_macr_p_y1_y0_b(void); +static void emu_macr_m_y1_y0_b(void); +static void emu_macr_p_x0_y1_a(void); +static void emu_macr_m_x0_y1_a(void); +static void emu_macr_p_x0_y1_b(void); +static void emu_macr_m_x0_y1_b(void); +static void emu_macr_p_y0_x0_a(void); +static void emu_macr_m_y0_x0_a(void); +static void emu_macr_p_y0_x0_b(void); +static void emu_macr_m_y0_x0_b(void); +static void emu_macr_p_x1_y0_a(void); +static void emu_macr_m_x1_y0_a(void); +static void emu_macr_p_x1_y0_b(void); +static void emu_macr_m_x1_y0_b(void); +static void emu_macr_p_y1_x1_a(void); +static void emu_macr_m_y1_x1_a(void); +static void emu_macr_p_y1_x1_b(void); +static void emu_macr_m_y1_x1_b(void); +static void emu_move(void); +static void emu_mpy_p_x0_x0_a(void); +static void emu_mpy_m_x0_x0_a(void); +static void emu_mpy_p_x0_x0_b(void); +static void emu_mpy_m_x0_x0_b(void); +static void emu_mpy_p_y0_y0_a(void); +static void emu_mpy_m_y0_y0_a(void); +static void emu_mpy_p_y0_y0_b(void); +static void emu_mpy_m_y0_y0_b(void); +static void emu_mpy_p_x1_x0_a(void); +static void emu_mpy_m_x1_x0_a(void); +static void emu_mpy_p_x1_x0_b(void); +static void emu_mpy_m_x1_x0_b(void); +static void emu_mpy_p_y1_y0_a(void); +static void emu_mpy_m_y1_y0_a(void); +static void emu_mpy_p_y1_y0_b(void); +static void emu_mpy_m_y1_y0_b(void); +static void emu_mpy_p_x0_y1_a(void); +static void emu_mpy_m_x0_y1_a(void); +static void emu_mpy_p_x0_y1_b(void); +static void emu_mpy_m_x0_y1_b(void); +static void emu_mpy_p_y0_x0_a(void); +static void emu_mpy_m_y0_x0_a(void); +static void emu_mpy_p_y0_x0_b(void); +static void emu_mpy_m_y0_x0_b(void); +static void emu_mpy_p_x1_y0_a(void); +static void emu_mpy_m_x1_y0_a(void); +static void emu_mpy_p_x1_y0_b(void); +static void emu_mpy_m_x1_y0_b(void); +static void emu_mpy_p_y1_x1_a(void); +static void emu_mpy_m_y1_x1_a(void); +static void emu_mpy_p_y1_x1_b(void); +static void emu_mpy_m_y1_x1_b(void); +static void emu_mpyr_p_x0_x0_a(void); +static void emu_mpyr_m_x0_x0_a(void); +static void emu_mpyr_p_x0_x0_b(void); +static void emu_mpyr_m_x0_x0_b(void); +static void emu_mpyr_p_y0_y0_a(void); +static void emu_mpyr_m_y0_y0_a(void); +static void emu_mpyr_p_y0_y0_b(void); +static void emu_mpyr_m_y0_y0_b(void); +static void emu_mpyr_p_x1_x0_a(void); +static void emu_mpyr_m_x1_x0_a(void); +static void emu_mpyr_p_x1_x0_b(void); +static void emu_mpyr_m_x1_x0_b(void); +static void emu_mpyr_p_y1_y0_a(void); +static void emu_mpyr_m_y1_y0_a(void); +static void emu_mpyr_p_y1_y0_b(void); +static void emu_mpyr_m_y1_y0_b(void); +static void emu_mpyr_p_x0_y1_a(void); +static void emu_mpyr_m_x0_y1_a(void); +static void emu_mpyr_p_x0_y1_b(void); +static void emu_mpyr_m_x0_y1_b(void); +static void emu_mpyr_p_y0_x0_a(void); +static void emu_mpyr_m_y0_x0_a(void); +static void emu_mpyr_p_y0_x0_b(void); +static void emu_mpyr_m_y0_x0_b(void); +static void emu_mpyr_p_x1_y0_a(void); +static void emu_mpyr_m_x1_y0_a(void); +static void emu_mpyr_p_x1_y0_b(void); +static void emu_mpyr_m_x1_y0_b(void); +static void emu_mpyr_p_y1_x1_a(void); +static void emu_mpyr_m_y1_x1_a(void); +static void emu_mpyr_p_y1_x1_b(void); +static void emu_mpyr_m_y1_x1_b(void); +static void emu_neg_a(void); +static void emu_neg_b(void); +static void emu_not_a(void); +static void emu_not_b(void); +static void emu_or_x0_a(void); +static void emu_or_x0_b(void); +static void emu_or_y0_a(void); +static void emu_or_y0_b(void); +static void emu_or_x1_a(void); +static void emu_or_x1_b(void); +static void emu_or_y1_a(void); +static void emu_or_y1_b(void); +static void emu_rnd_a(void); +static void emu_rnd_b(void); +static void emu_rol_a(void); +static void emu_rol_b(void); +static void emu_ror_a(void); +static void emu_ror_b(void); +static void emu_sbc_x_a(void); +static void emu_sbc_x_b(void); +static void emu_sbc_y_a(void); +static void emu_sbc_y_b(void); +static void emu_sub_b_a(void); +static void emu_sub_a_b(void); +static void emu_sub_x_a(void); +static void emu_sub_x_b(void); +static void emu_sub_y_a(void); +static void emu_sub_y_b(void); +static void emu_sub_x0_a(void); +static void emu_sub_x0_b(void); +static void emu_sub_y0_a(void); +static void emu_sub_y0_b(void); +static void emu_sub_x1_a(void); +static void emu_sub_x1_b(void); +static void emu_sub_y1_a(void); +static void emu_sub_y1_b(void); +static void emu_subl_a(void); +static void emu_subl_b(void); +static void emu_subr_a(void); +static void emu_subr_b(void); +static void emu_tfr_b_a(void); +static void emu_tfr_a_b(void); +static void emu_tfr_x0_a(void); +static void emu_tfr_x0_b(void); +static void emu_tfr_y0_a(void); +static void emu_tfr_y0_b(void); +static void emu_tfr_x1_a(void); +static void emu_tfr_x1_b(void); +static void emu_tfr_y1_a(void); +static void emu_tfr_y1_b(void); +static void emu_tst_a(void); +static void emu_tst_b(void); -static const dsp_emul_t opcodes8h[512] = { - /* 0x00 - 0x3f */ - opcode8h_0, dsp_undefined, dsp_undefined, dsp_undefined, opcode8h_0, dsp_andi, dsp_undefined, dsp_ori, - dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_andi, dsp_undefined, dsp_ori, - dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_andi, dsp_undefined, dsp_ori, - dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_andi, dsp_undefined, dsp_ori, - dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, - dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, - dsp_undefined, dsp_undefined, dsp_div, dsp_div, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, - dsp_norm, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, - - /* 0x40 - 0x7f */ - dsp_tcc, dsp_tcc, dsp_tcc, dsp_tcc, dsp_movex_a, dsp_undefined, dsp_movex_a, dsp_undefined, - dsp_tcc, dsp_tcc, dsp_tcc, dsp_tcc, dsp_movex_a, dsp_undefined, dsp_movex_a, dsp_undefined, - dsp_tcc, dsp_tcc, dsp_tcc, dsp_tcc, dsp_movex_a, dsp_undefined, dsp_movex_a, dsp_undefined, - dsp_tcc, dsp_tcc, dsp_tcc, dsp_tcc, dsp_undefined, dsp_undefined, dsp_movex_a, dsp_undefined, - dsp_tcc, dsp_tcc, dsp_tcc, dsp_tcc, dsp_movex_a, dsp_undefined, dsp_movex_a, dsp_undefined, - dsp_tcc, dsp_tcc, dsp_tcc, dsp_tcc, dsp_movex_a, dsp_undefined, dsp_movex_a, dsp_undefined, - dsp_tcc, dsp_tcc, dsp_tcc, dsp_tcc, dsp_movex_a, dsp_undefined, dsp_undefined, dsp_undefined, - dsp_tcc, dsp_tcc, dsp_tcc, dsp_tcc, dsp_movex_a, dsp_undefined, dsp_movex_a, dsp_undefined, - - /* 0x80 - 0xbf */ - dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, - dsp_lua, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_movec_reg, dsp_undefined, dsp_undefined, - dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, - dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_movec_reg, dsp_undefined, dsp_undefined, - dsp_undefined, dsp_movec_aa, dsp_undefined, dsp_movec_aa, dsp_undefined, dsp_movec_imm, dsp_undefined, dsp_undefined, - dsp_undefined, dsp_movec_ea, dsp_undefined, dsp_movec_ea, dsp_undefined, dsp_movec_imm, dsp_undefined, dsp_undefined, - dsp_undefined, dsp_movec_aa, dsp_undefined, dsp_movec_aa, dsp_undefined, dsp_movec_imm, dsp_undefined, dsp_undefined, - dsp_undefined, dsp_movec_ea, dsp_undefined, dsp_movec_ea, dsp_undefined, dsp_movec_imm, dsp_undefined, dsp_undefined, - - /* 0xc0 - 0xff */ - /* 0xc0 */ dsp_do_aa, dsp_rep_aa, dsp_do_aa, dsp_rep_aa, dsp_do_imm, dsp_rep_imm, dsp_undefined, dsp_undefined, - /* 0xc8 */ dsp_do_ea, dsp_rep_ea, dsp_do_ea, dsp_rep_ea, dsp_do_imm, dsp_rep_imm, dsp_undefined, dsp_undefined, - /* 0xd0 */ dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_do_imm, dsp_rep_imm, dsp_undefined, dsp_undefined, - /* 0xd8 */ dsp_do_reg, dsp_rep_reg, dsp_undefined, dsp_undefined, dsp_do_imm, dsp_rep_imm, dsp_undefined, dsp_undefined, - /* 0xe0 */ dsp_movem_aa, dsp_movem_aa, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, - /* 0xe8 */ dsp_movep_x_low, dsp_movep_x_low, dsp_movep_x_low, dsp_movep_x_low, dsp_movem_ea, dsp_movem_ea, dsp_undefined, dsp_undefined, - /* 0xf0 */ dsp_movem_aa, dsp_movem_aa, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, - /* 0xf8 */ dsp_movep_x_low, dsp_movep_x_low, dsp_movep_x_low, dsp_movep_x_low, dsp_movem_ea, dsp_movem_ea, dsp_undefined, dsp_undefined, - - /* 0x100 - 0x13f */ - dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, - dsp_movep_0, dsp_movep_0, dsp_movep_1, dsp_movep_1, dsp_movep_23, dsp_movep_23, dsp_movep_23, dsp_movep_23, - dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, - dsp_movep_0, dsp_movep_0, dsp_movep_1, dsp_movep_1, dsp_movep_23, dsp_movep_23, dsp_movep_23, dsp_movep_23, - dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, - dsp_movep_0, dsp_movep_0, dsp_movep_1, dsp_movep_1, dsp_movep_23, dsp_movep_23, dsp_movep_23, dsp_movep_23, - dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, dsp_pm_0, - dsp_movep_0, dsp_movep_0, dsp_movep_1, dsp_movep_1, dsp_movep_23, dsp_movep_23, dsp_movep_23, dsp_movep_23, - - /* 0x140 - 0x17f */ - dsp_bclr_aa, dsp_bset_aa, dsp_bclr_aa, dsp_bset_aa, dsp_jclr_aa, dsp_jset_aa, dsp_jclr_aa, dsp_jset_aa, - dsp_bclr_ea, dsp_bset_ea, dsp_bclr_ea, dsp_bset_ea, dsp_jclr_ea, dsp_jset_ea, dsp_jclr_ea, dsp_jset_ea, - dsp_bclr_pp, dsp_bset_pp, dsp_bclr_pp, dsp_bset_pp, dsp_jclr_pp, dsp_jset_pp, dsp_jclr_pp, dsp_jset_pp, - dsp_jclr_reg, dsp_jset_reg, dsp_bclr_reg, dsp_bset_reg, dsp_jmp_ea, dsp_jcc_ea, dsp_undefined, dsp_undefined, - dsp_bchg_aa, dsp_btst_aa, dsp_bchg_aa, dsp_btst_aa, dsp_jsclr_aa, dsp_jsset_aa, dsp_jsclr_aa, dsp_jsset_aa, - dsp_bchg_ea, dsp_btst_ea, dsp_bchg_ea, dsp_btst_ea, dsp_jsclr_ea, dsp_jsset_ea, dsp_jsclr_ea, dsp_jsset_ea, - dsp_bchg_pp, dsp_btst_pp, dsp_bchg_pp, dsp_btst_pp, dsp_jsclr_pp, dsp_jsset_pp, dsp_jsclr_pp, dsp_jsset_pp, - dsp_jsclr_reg, dsp_jsset_reg, dsp_bchg_reg, dsp_btst_reg, dsp_jsr_ea, dsp_jscc_ea, dsp_undefined, dsp_undefined, - - /* 0x180 - 0x1bf */ - dsp_jmp_imm, dsp_jmp_imm, dsp_jmp_imm, dsp_jmp_imm, dsp_jmp_imm, dsp_jmp_imm, dsp_jmp_imm, dsp_jmp_imm, - dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, - dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, - dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, - dsp_jsr_imm, dsp_jsr_imm, dsp_jsr_imm, dsp_jsr_imm, dsp_jsr_imm, dsp_jsr_imm, dsp_jsr_imm, dsp_jsr_imm, - dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, - dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, - dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, dsp_undefined, - - /* 0x1c0 - 0x1ff */ - dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, - dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, - dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, - dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, dsp_jcc_imm, - dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, - dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, - dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, - dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, dsp_jscc_imm, +static const emu_func_t opcodes_parmove[16] = { + emu_pm_0, emu_pm_1, emu_pm_2, emu_pm_3, emu_pm_4, emu_pm_5, emu_pm_5, emu_pm_5, + emu_pm_8, emu_pm_8, emu_pm_8, emu_pm_8, emu_pm_8, emu_pm_8, emu_pm_8, emu_pm_8 }; -static const dsp_emul_t opcodes_parmove[16] = { - dsp_pm_0, dsp_pm_1, dsp_pm_2, dsp_pm_3, dsp_pm_4, dsp_pm_5, dsp_pm_5, dsp_pm_5, - dsp_pm_8, dsp_pm_8, dsp_pm_8, dsp_pm_8, dsp_pm_8, dsp_pm_8, dsp_pm_8, dsp_pm_8 -}; - -static const dsp_emul_t opcodes_alu[256] = { +static const emu_func_t opcodes_alu[256] = { /* 0x00 - 0x3f */ - dsp_move , dsp_tfr_b_a, dsp_addr_b_a, dsp_tst_a, dsp_undefined, dsp_cmp_b_a, dsp_subr_a, dsp_cmpm_b_a, - dsp_undefined, dsp_tfr_a_b, dsp_addr_a_b, dsp_tst_b, dsp_undefined, dsp_cmp_a_b, dsp_subr_b, dsp_cmpm_a_b, - dsp_add_b_a, dsp_rnd_a, dsp_addl_b_a, dsp_clr_a, dsp_sub_b_a, dsp_undefined, dsp_subl_a, dsp_not_a, - dsp_add_a_b, dsp_rnd_b, dsp_addl_a_b, dsp_clr_b, dsp_sub_a_b, dsp_undefined, dsp_subl_b, dsp_not_b, - dsp_add_x_a, dsp_adc_x_a, dsp_asr_a, dsp_lsr_a, dsp_sub_x_a, dsp_sbc_x_a, dsp_abs_a, dsp_ror_a, - dsp_add_x_b, dsp_adc_x_b, dsp_asr_b, dsp_lsr_b, dsp_sub_x_b, dsp_sbc_x_b, dsp_abs_b, dsp_ror_b, - dsp_add_y_a, dsp_adc_y_a, dsp_asl_a, dsp_lsl_a, dsp_sub_y_a, dsp_sbc_y_a, dsp_neg_a, dsp_rol_a, - dsp_add_y_b, dsp_adc_y_b, dsp_asl_b, dsp_lsl_b, dsp_sub_y_b, dsp_sbc_y_b, dsp_neg_b, dsp_rol_b, + emu_move , emu_tfr_b_a, emu_addr_b_a, emu_tst_a, emu_undefined, emu_cmp_b_a, emu_subr_a, emu_cmpm_b_a, + emu_undefined, emu_tfr_a_b, emu_addr_a_b, emu_tst_b, emu_undefined, emu_cmp_a_b, emu_subr_b, emu_cmpm_a_b, + emu_add_b_a, emu_rnd_a, emu_addl_b_a, emu_clr_a, emu_sub_b_a, emu_undefined, emu_subl_a, emu_not_a, + emu_add_a_b, emu_rnd_b, emu_addl_a_b, emu_clr_b, emu_sub_a_b, emu_undefined, emu_subl_b, emu_not_b, + emu_add_x_a, emu_adc_x_a, emu_asr_a, emu_lsr_a, emu_sub_x_a, emu_sbc_x_a, emu_abs_a, emu_ror_a, + emu_add_x_b, emu_adc_x_b, emu_asr_b, emu_lsr_b, emu_sub_x_b, emu_sbc_x_b, emu_abs_b, emu_ror_b, + emu_add_y_a, emu_adc_y_a, emu_asl_a, emu_lsl_a, emu_sub_y_a, emu_sbc_y_a, emu_neg_a, emu_rol_a, + emu_add_y_b, emu_adc_y_b, emu_asl_b, emu_lsl_b, emu_sub_y_b, emu_sbc_y_b, emu_neg_b, emu_rol_b, /* 0x40 - 0x7f */ - dsp_add_x0_a, dsp_tfr_x0_a, dsp_or_x0_a, dsp_eor_x0_a, dsp_sub_x0_a, dsp_cmp_x0_a, dsp_and_x0_a, dsp_cmpm_x0_a, - dsp_add_x0_b, dsp_tfr_x0_b, dsp_or_x0_b, dsp_eor_x0_b, dsp_sub_x0_b, dsp_cmp_x0_b, dsp_and_x0_b, dsp_cmpm_x0_b, - dsp_add_y0_a, dsp_tfr_y0_a, dsp_or_y0_a, dsp_eor_y0_a, dsp_sub_y0_a, dsp_cmp_y0_a, dsp_and_y0_a, dsp_cmpm_y0_a, - dsp_add_y0_b, dsp_tfr_y0_b, dsp_or_y0_b, dsp_eor_y0_b, dsp_sub_y0_b, dsp_cmp_y0_b, dsp_and_y0_b, dsp_cmpm_y0_b, - dsp_add_x1_a, dsp_tfr_x1_a, dsp_or_x1_a, dsp_eor_x1_a, dsp_sub_x1_a, dsp_cmp_x1_a, dsp_and_x1_a, dsp_cmpm_x1_a, - dsp_add_x1_b, dsp_tfr_x1_b, dsp_or_x1_b, dsp_eor_x1_b, dsp_sub_x1_b, dsp_cmp_x1_b, dsp_and_x1_b, dsp_cmpm_x1_b, - dsp_add_y1_a, dsp_tfr_y1_a, dsp_or_y1_a, dsp_eor_y1_a, dsp_sub_y1_a, dsp_cmp_y1_a, dsp_and_y1_a, dsp_cmpm_y1_a, - dsp_add_y1_b, dsp_tfr_y1_b, dsp_or_y1_b, dsp_eor_y1_b, dsp_sub_y1_b, dsp_cmp_y1_b, dsp_and_y1_b, dsp_cmpm_y1_b, + emu_add_x0_a, emu_tfr_x0_a, emu_or_x0_a, emu_eor_x0_a, emu_sub_x0_a, emu_cmp_x0_a, emu_and_x0_a, emu_cmpm_x0_a, + emu_add_x0_b, emu_tfr_x0_b, emu_or_x0_b, emu_eor_x0_b, emu_sub_x0_b, emu_cmp_x0_b, emu_and_x0_b, emu_cmpm_x0_b, + emu_add_y0_a, emu_tfr_y0_a, emu_or_y0_a, emu_eor_y0_a, emu_sub_y0_a, emu_cmp_y0_a, emu_and_y0_a, emu_cmpm_y0_a, + emu_add_y0_b, emu_tfr_y0_b, emu_or_y0_b, emu_eor_y0_b, emu_sub_y0_b, emu_cmp_y0_b, emu_and_y0_b, emu_cmpm_y0_b, + emu_add_x1_a, emu_tfr_x1_a, emu_or_x1_a, emu_eor_x1_a, emu_sub_x1_a, emu_cmp_x1_a, emu_and_x1_a, emu_cmpm_x1_a, + emu_add_x1_b, emu_tfr_x1_b, emu_or_x1_b, emu_eor_x1_b, emu_sub_x1_b, emu_cmp_x1_b, emu_and_x1_b, emu_cmpm_x1_b, + emu_add_y1_a, emu_tfr_y1_a, emu_or_y1_a, emu_eor_y1_a, emu_sub_y1_a, emu_cmp_y1_a, emu_and_y1_a, emu_cmpm_y1_a, + emu_add_y1_b, emu_tfr_y1_b, emu_or_y1_b, emu_eor_y1_b, emu_sub_y1_b, emu_cmp_y1_b, emu_and_y1_b, emu_cmpm_y1_b, /* 0x80 - 0xbf */ - dsp_mpy_p_x0_x0_a, dsp_mpyr_p_x0_x0_a, dsp_mac_p_x0_x0_a, dsp_macr_p_x0_x0_a, dsp_mpy_m_x0_x0_a, dsp_mpyr_m_x0_x0_a, dsp_mac_m_x0_x0_a, dsp_macr_m_x0_x0_a, - dsp_mpy_p_x0_x0_b, dsp_mpyr_p_x0_x0_b, dsp_mac_p_x0_x0_b, dsp_macr_p_x0_x0_b, dsp_mpy_m_x0_x0_b, dsp_mpyr_m_x0_x0_b, dsp_mac_m_x0_x0_b, dsp_macr_m_x0_x0_b, - dsp_mpy_p_y0_y0_a, dsp_mpyr_p_y0_y0_a, dsp_mac_p_y0_y0_a, dsp_macr_p_y0_y0_a, dsp_mpy_m_y0_y0_a, dsp_mpyr_m_y0_y0_a, dsp_mac_m_y0_y0_a, dsp_macr_m_y0_y0_a, - dsp_mpy_p_y0_y0_b, dsp_mpyr_p_y0_y0_b, dsp_mac_p_y0_y0_b, dsp_macr_p_y0_y0_b, dsp_mpy_m_y0_y0_b, dsp_mpyr_m_y0_y0_b, dsp_mac_m_y0_y0_b, dsp_macr_m_y0_y0_b, - dsp_mpy_p_x1_x0_a, dsp_mpyr_p_x1_x0_a, dsp_mac_p_x1_x0_a, dsp_macr_p_x1_x0_a, dsp_mpy_m_x1_x0_a, dsp_mpyr_m_x1_x0_a, dsp_mac_m_x1_x0_a, dsp_macr_m_x1_x0_a, - dsp_mpy_p_x1_x0_b, dsp_mpyr_p_x1_x0_b, dsp_mac_p_x1_x0_b, dsp_macr_p_x1_x0_b, dsp_mpy_m_x1_x0_b, dsp_mpyr_m_x1_x0_b, dsp_mac_m_x1_x0_b, dsp_macr_m_x1_x0_b, - dsp_mpy_p_y1_y0_a, dsp_mpyr_p_y1_y0_a, dsp_mac_p_y1_y0_a, dsp_macr_p_y1_y0_a, dsp_mpy_m_y1_y0_a, dsp_mpyr_m_y1_y0_a, dsp_mac_m_y1_y0_a, dsp_macr_m_y1_y0_a, - dsp_mpy_p_y1_y0_b, dsp_mpyr_p_y1_y0_b, dsp_mac_p_y1_y0_b, dsp_macr_p_y1_y0_b, dsp_mpy_m_y1_y0_b, dsp_mpyr_m_y1_y0_b, dsp_mac_m_y1_y0_b, dsp_macr_m_y1_y0_b, + emu_mpy_p_x0_x0_a, emu_mpyr_p_x0_x0_a, emu_mac_p_x0_x0_a, emu_macr_p_x0_x0_a, emu_mpy_m_x0_x0_a, emu_mpyr_m_x0_x0_a, emu_mac_m_x0_x0_a, emu_macr_m_x0_x0_a, + emu_mpy_p_x0_x0_b, emu_mpyr_p_x0_x0_b, emu_mac_p_x0_x0_b, emu_macr_p_x0_x0_b, emu_mpy_m_x0_x0_b, emu_mpyr_m_x0_x0_b, emu_mac_m_x0_x0_b, emu_macr_m_x0_x0_b, + emu_mpy_p_y0_y0_a, emu_mpyr_p_y0_y0_a, emu_mac_p_y0_y0_a, emu_macr_p_y0_y0_a, emu_mpy_m_y0_y0_a, emu_mpyr_m_y0_y0_a, emu_mac_m_y0_y0_a, emu_macr_m_y0_y0_a, + emu_mpy_p_y0_y0_b, emu_mpyr_p_y0_y0_b, emu_mac_p_y0_y0_b, emu_macr_p_y0_y0_b, emu_mpy_m_y0_y0_b, emu_mpyr_m_y0_y0_b, emu_mac_m_y0_y0_b, emu_macr_m_y0_y0_b, + emu_mpy_p_x1_x0_a, emu_mpyr_p_x1_x0_a, emu_mac_p_x1_x0_a, emu_macr_p_x1_x0_a, emu_mpy_m_x1_x0_a, emu_mpyr_m_x1_x0_a, emu_mac_m_x1_x0_a, emu_macr_m_x1_x0_a, + emu_mpy_p_x1_x0_b, emu_mpyr_p_x1_x0_b, emu_mac_p_x1_x0_b, emu_macr_p_x1_x0_b, emu_mpy_m_x1_x0_b, emu_mpyr_m_x1_x0_b, emu_mac_m_x1_x0_b, emu_macr_m_x1_x0_b, + emu_mpy_p_y1_y0_a, emu_mpyr_p_y1_y0_a, emu_mac_p_y1_y0_a, emu_macr_p_y1_y0_a, emu_mpy_m_y1_y0_a, emu_mpyr_m_y1_y0_a, emu_mac_m_y1_y0_a, emu_macr_m_y1_y0_a, + emu_mpy_p_y1_y0_b, emu_mpyr_p_y1_y0_b, emu_mac_p_y1_y0_b, emu_macr_p_y1_y0_b, emu_mpy_m_y1_y0_b, emu_mpyr_m_y1_y0_b, emu_mac_m_y1_y0_b, emu_macr_m_y1_y0_b, /* 0xc0_m_ 0xff */ - dsp_mpy_p_x0_y1_a, dsp_mpyr_p_x0_y1_a, dsp_mac_p_x0_y1_a, dsp_macr_p_x0_y1_a, dsp_mpy_m_x0_y1_a, dsp_mpyr_m_x0_y1_a, dsp_mac_m_x0_y1_a, dsp_macr_m_x0_y1_a, - dsp_mpy_p_x0_y1_b, dsp_mpyr_p_x0_y1_b, dsp_mac_p_x0_y1_b, dsp_macr_p_x0_y1_b, dsp_mpy_m_x0_y1_b, dsp_mpyr_m_x0_y1_b, dsp_mac_m_x0_y1_b, dsp_macr_m_x0_y1_b, - dsp_mpy_p_y0_x0_a, dsp_mpyr_p_y0_x0_a, dsp_mac_p_y0_x0_a, dsp_macr_p_y0_x0_a, dsp_mpy_m_y0_x0_a, dsp_mpyr_m_y0_x0_a, dsp_mac_m_y0_x0_a, dsp_macr_m_y0_x0_a, - dsp_mpy_p_y0_x0_b, dsp_mpyr_p_y0_x0_b, dsp_mac_p_y0_x0_b, dsp_macr_p_y0_x0_b, dsp_mpy_m_y0_x0_b, dsp_mpyr_m_y0_x0_b, dsp_mac_m_y0_x0_b, dsp_macr_m_y0_x0_b, - dsp_mpy_p_x1_y0_a, dsp_mpyr_p_x1_y0_a, dsp_mac_p_x1_y0_a, dsp_macr_p_x1_y0_a, dsp_mpy_m_x1_y0_a, dsp_mpyr_m_x1_y0_a, dsp_mac_m_x1_y0_a, dsp_macr_m_x1_y0_a, - dsp_mpy_p_x1_y0_b, dsp_mpyr_p_x1_y0_b, dsp_mac_p_x1_y0_b, dsp_macr_p_x1_y0_b, dsp_mpy_m_x1_y0_b, dsp_mpyr_m_x1_y0_b, dsp_mac_m_x1_y0_b, dsp_macr_m_x1_y0_b, - dsp_mpy_p_y1_x1_a, dsp_mpyr_p_y1_x1_a, dsp_mac_p_y1_x1_a, dsp_macr_p_y1_x1_a, dsp_mpy_m_y1_x1_a, dsp_mpyr_m_y1_x1_a, dsp_mac_m_y1_x1_a, dsp_macr_m_y1_x1_a, - dsp_mpy_p_y1_x1_b, dsp_mpyr_p_y1_x1_b, dsp_mac_p_y1_x1_b, dsp_macr_p_y1_x1_b, dsp_mpy_m_y1_x1_b, dsp_mpyr_m_y1_x1_b, dsp_mac_m_y1_x1_b, dsp_macr_m_y1_x1_b + emu_mpy_p_x0_y1_a, emu_mpyr_p_x0_y1_a, emu_mac_p_x0_y1_a, emu_macr_p_x0_y1_a, emu_mpy_m_x0_y1_a, emu_mpyr_m_x0_y1_a, emu_mac_m_x0_y1_a, emu_macr_m_x0_y1_a, + emu_mpy_p_x0_y1_b, emu_mpyr_p_x0_y1_b, emu_mac_p_x0_y1_b, emu_macr_p_x0_y1_b, emu_mpy_m_x0_y1_b, emu_mpyr_m_x0_y1_b, emu_mac_m_x0_y1_b, emu_macr_m_x0_y1_b, + emu_mpy_p_y0_x0_a, emu_mpyr_p_y0_x0_a, emu_mac_p_y0_x0_a, emu_macr_p_y0_x0_a, emu_mpy_m_y0_x0_a, emu_mpyr_m_y0_x0_a, emu_mac_m_y0_x0_a, emu_macr_m_y0_x0_a, + emu_mpy_p_y0_x0_b, emu_mpyr_p_y0_x0_b, emu_mac_p_y0_x0_b, emu_macr_p_y0_x0_b, emu_mpy_m_y0_x0_b, emu_mpyr_m_y0_x0_b, emu_mac_m_y0_x0_b, emu_macr_m_y0_x0_b, + emu_mpy_p_x1_y0_a, emu_mpyr_p_x1_y0_a, emu_mac_p_x1_y0_a, emu_macr_p_x1_y0_a, emu_mpy_m_x1_y0_a, emu_mpyr_m_x1_y0_a, emu_mac_m_x1_y0_a, emu_macr_m_x1_y0_a, + emu_mpy_p_x1_y0_b, emu_mpyr_p_x1_y0_b, emu_mac_p_x1_y0_b, emu_macr_p_x1_y0_b, emu_mpy_m_x1_y0_b, emu_mpyr_m_x1_y0_b, emu_mac_m_x1_y0_b, emu_macr_m_x1_y0_b, + emu_mpy_p_y1_x1_a, emu_mpyr_p_y1_x1_a, emu_mac_p_y1_x1_a, emu_macr_p_y1_x1_a, emu_mpy_m_y1_x1_a, emu_mpyr_m_y1_x1_a, emu_mac_m_y1_x1_a, emu_macr_m_y1_x1_a, + emu_mpy_p_y1_x1_b, emu_mpyr_p_y1_x1_b, emu_mac_p_y1_x1_b, emu_macr_p_y1_x1_b, emu_mpy_m_y1_x1_b, emu_mpyr_m_y1_x1_b, emu_mac_m_y1_x1_b, emu_macr_m_y1_x1_b }; static const int registers_tcc[16][2] = { @@ -646,41 +569,316 @@ static const dsp_interrupt_t dsp_interrupt[12] = { }; +typedef struct OpcodeEntry { + const char* template; + const char* name; + dis_func_t dis_func; + emu_func_t emu_func; +} OpcodeEntry; + +static const OpcodeEntry nonparallel_opcodes[] = { + { "0000000101iiiiii1000d000", "add #xx, D", NULL, NULL }, + { "00000001010000001100d000", "add #xxxx, D", dis_add_long, emu_add_long }, + { "0000000101iiiiii1000d110", "and #xx, D", NULL, NULL }, + { "00000001010000001100d110", "and #xxxx, D", NULL, NULL }, + { "00000000iiiiiiii101110EE", "andi #xx, D", dis_andi, emu_andi }, + { "0000110000011101SiiiiiiD", "asl #ii, S2, D", NULL, NULL }, + { "0000110000011110010SsssD", "asl S1, S2, D", NULL, NULL }, + { "0000110000011100SiiiiiiD", "asr #ii, S2, D", NULL, NULL }, + { "0000110000011110011SsssD", "asr S1, S2, D", NULL, NULL }, + { "00001101000100000100CCCC", "bcc xxxx", dis_bcc_long, emu_bcc_long }, //?? + { "00000101CCCC01aaaa0aaaaa", "bcc xxx", dis_bcc_imm, emu_bcc_imm }, + { "0000110100011RRR0100CCCC", "bcc Rn", NULL, NULL }, + { "0000101101MMMRRR0S00bbbb", "bchg #n, [X or Y]:ea", dis_bchg_ea, emu_bchg_ea }, + { "0000101100aaaaaa0S00bbbb", "bchg #n, [X or Y]:aa", dis_bchg_aa, emu_bchg_aa }, + { "0000101110pppppp0S00bbbb", "bchg #n, [X or Y]:pp", dis_bchg_pp, emu_bchg_pp }, + { "0000000101qqqqqq0S0bbbbb", "bchg #n, [X or Y]:qq", NULL, NULL }, + { "0000101111DDDDDD010bbbbb", "bchg, #n, D", dis_bchg_reg, emu_bchg_reg }, + { "0000101001MMMRRR0S00bbbb", "bclr #n, [X or Y]:ea", dis_bclr_ea, emu_bclr_ea }, + { "0000101000aaaaaa0S00bbbb", "bclr #n, [X or Y]:aa", dis_bclr_aa, emu_bclr_aa }, + { "0000101010pppppp0S00bbbb", "bclr #n, [X or Y]:pp", dis_bclr_pp, emu_bclr_pp }, + { "0000000100qqqqqq0S00bbbb", "bclr #n, [X or Y]:qq", NULL, NULL }, + { "0000101011DDDDDD010bbbbb", "bclr #n, D", dis_bclr_reg, emu_bclr_reg }, + { "000011010001000011000000", "bra xxxx", NULL, NULL }, + { "00000101000011aaaa0aaaaa", "bra xxx", dis_bra_imm, emu_bra_imm }, + { "0000110100011RRR11000000", "bra Rn", NULL, NULL }, + { "0000110010MMMRRR0S0bbbbb", "brclr #n, [X or Y]:ea, xxxx", NULL, NULL }, + { "0000110010aaaaaa1S0bbbbb", "brclr #n, [X or Y]:aa, xxxx", NULL, NULL }, + { "0000110011pppppp0S0bbbbb", "brclr #n, [X or Y]:pp, xxxx", NULL, NULL }, + { "0000010010qqqqqq0S0bbbbb", "brclr #n, [X or Y]:qq, xxxx", NULL, NULL }, + { "0000110011DDDDDD100bbbbb", "brclr #n, S, xxxx", NULL, NULL }, + { "00000000000000100001CCCC", "brkcc", NULL, NULL }, + { "0000110010MMMRRR0S1bbbbb", "brset #n, [X or Y]:ea, xxxx", NULL, NULL }, + { "0000110010aaaaaa1S1bbbbb", "brset #n, [X or Y]:aa, xxxx", NULL, NULL }, + { "0000110011pppppp0S1bbbbb", "brset #n, [X or Y]:pp, xxxx", NULL, NULL }, + { "0000010010qqqqqq0S1bbbbb", "brset #n, [X or Y]:qq, xxxx", NULL, NULL }, + { "0000110011DDDDDD101bbbbb", "brset #n, S, xxxx", NULL, NULL }, + { "00001101000100000000CCCC", "bscc xxxx", NULL, NULL }, + { "00000101CCCC00aaaa0aaaaa", "bscc xxx", NULL, NULL }, + { "0000110100011RRR0000CCCC", "bscc Rn", NULL, NULL }, + { "0000110110MMMRRR0S0bbbbb", "bsclr #n, [X or Y]:ea, xxxx", NULL, NULL }, + { "0000110110aaaaaa1S0bbbbb", "bsclr #n, [X or Y]:aa, xxxx", NULL, NULL }, + { "0000010010qqqqqq1S0bbbbb", "bsclr #n, [X or Y]:qq, xxxx", NULL, NULL }, + { "0000110111pppppp0S0bbbbb", "bsclr #n, [X or Y]:pp, xxxx", NULL, NULL }, + { "0000110111DDDDDD100bbbbb", "bsclr, #n, S, xxxx", NULL, NULL }, + { "0000101001MMMRRR0S1bbbbb", "bset #n, [X or Y]:ea", dis_bset_ea, emu_bset_ea }, + { "0000101000aaaaaa0S1bbbbb", "bset #n, [X or Y]:aa", dis_bset_aa, emu_bset_aa }, + { "0000101010pppppp0S1bbbbb", "bset #n, [X or Y]:pp", dis_bset_pp, emu_bset_pp }, + { "0000000100qqqqqq0S1bbbbb", "bset #n, [X or Y]:qq", NULL, NULL }, + { "0000101011DDDDDD011bbbbb", "bset, #n, D", dis_bset_reg, emu_bset_reg }, + { "000011010001000010000000", "bsr xxxx", NULL, NULL }, + { "00000101000010aaaa0aaaaa", "bsr xxx", NULL, NULL }, + { "0000110100011RRR10000000", "bsr Rn", NULL, NULL }, + { "0000110110MMMRRR0S1bbbbb", "bsset #n, [X or Y]:ea, xxxx", NULL, NULL }, + { "0000110110aaaaaa1S1bbbbb", "bsset #n, [X or Y]:aa, xxxx", NULL, NULL }, + { "0000110111pppppp0S1bbbbb", "bsset #n, [X or Y]:pp, xxxx", NULL, NULL }, + { "0000010010qqqqqq1S1bbbbb", "bsset #n, [X or Y]:qq, xxxx", NULL, NULL }, + { "0000110111DDDDDD101bbbbb", "bsset #n, S, xxxx", NULL, NULL }, + { "0000101101MMMRRR0S10bbbb", "btst #n, [X or Y]:ea", dis_btst_ea, emu_btst_ea }, + { "0000101100aaaaaa0S10bbbb", "btst #n, [X or Y]:aa", dis_btst_aa, emu_btst_aa }, + { "0000101110pppppp0S10bbbb", "btst #n, [X or Y]:pp", dis_btst_pp, emu_btst_pp }, + { "0000000101qqqqqq0S10bbbb", "btst #n, [X or Y]:qq", NULL, NULL }, + { "0000101111DDDDDD0110bbbb", "btst #n, D", dis_btst_reg, emu_btst_reg }, + { "0000110000011110000000SD", "clb S, D", NULL, NULL }, + { "0000000101iiiiii1000d101", "cmp #xx, S2", NULL, NULL }, + { "00000001010000001100d101", "cmp #xxxx, S2", NULL, NULL }, + { "00001100000111111111gggd", "cmpu S1, S2", dis_cmpu, emu_cmpu }, + { "000000000000001000000000", "debug", NULL, NULL }, + { "00000000000000110000CCCC", "debugcc", NULL, NULL }, + { "00000000000000000000101d", "dec D", NULL, NULL, /*dis_dec, emu_dec*/ }, + { "000000011000000001JJd000", "div S, D", dis_div, emu_div }, + { "000000010010010s1sdkQQQQ", "dmac S1, S2, D", NULL, NULL }, + { "0000011001MMMRRR0S000000", "do [X or Y]:ea, expr", dis_do_ea, emu_do_ea }, + { "0000011000aaaaaa0S000000", "do [X or Y]:aa, expr", dis_do_aa, emu_do_aa }, + { "00000110iiiiiiii1000hhhh", "do #xxx, expr", dis_do_imm, emu_do_imm }, + { "0000011011DDDDDD00000000", "do S, expr", dis_do_reg, emu_do_reg }, + { "000000000000001000000011", "do_f", NULL, NULL }, + { "0000011001MMMRRR0S010000", "dor [X or Y]:ea, label", NULL, NULL }, + { "0000011000aaaaaa0S010000", "dor [X or Y]:aa, label", NULL, NULL }, + { "00000110iiiiiiii1001hhhh", "dor #xxx, label", dis_dor_imm, emu_dor_imm }, + { "0000011011DDDDDD00010000", "dor S, label", NULL, NULL }, + { "000000000000001000000010", "dor_f", NULL, NULL }, + { "000000000000000010001100", "enddo", NULL, emu_enddo }, + { "0000000101iiiiii1000d011", "eor #xx, D", NULL, NULL }, + { "00000001010000001100d011", "eor #xxxx, D", NULL, NULL }, + { "0000110000011010000sSSSD", "extract S1, S2, D", NULL, NULL }, + { "0000110000011000000s000D", "extract #CO, S2, D", NULL, NULL }, + { "0000110000011010100sSSSD", "extractu S1, S2, D", NULL, NULL }, + { "0000110000011000100s000D", "extractu #CO, S2, D", NULL, NULL }, + { "000000000000000000000101", "ill", NULL, emu_illegal }, + { "00000000000000000000100d", "inc D", NULL, NULL }, + { "00001100000110110qqqSSSD", "insert S1, S2, D", NULL, NULL }, + { "00001100000110010qqq000D", "insert #CO, S2, D", NULL, NULL }, + { "00001110CCCCaaaaaaaaaaaa", "jcc xxx", dis_jcc_imm, emu_jcc_imm }, + { "0000101011MMMRRR1010CCCC", "jcc ea", dis_jcc_ea, emu_jcc_ea }, + { "0000101001MMMRRR1S00bbbb", "jclr #n, [X or Y]:ea, xxxx", dis_jclr_ea, emu_jclr_ea }, + { "0000101000aaaaaa1S00bbbb", "jclr #n, [X or Y]:aa, xxxx", dis_jclr_aa, emu_jclr_aa }, + { "0000101010pppppp1S00bbbb", "jclr #n, [X or Y]:pp, xxxx", dis_jclr_pp, emu_jclr_pp }, + { "0000000110qqqqqq1S00bbbb", "jclr #n, [X or Y]:qq, xxxx", NULL, NULL }, + { "0000101011DDDDDD0000bbbb", "jclr #n, S, xxxx", dis_jclr_reg, emu_jclr_reg }, + { "0000101011MMMRRR10000000", "jmp ea", dis_jmp_ea, emu_jmp_ea }, + { "000011000000aaaaaaaaaaaa", "jmp xxx", dis_jmp_imm, emu_jmp_imm }, + { "00001111CCCCaaaaaaaaaaaa", "jscc xxx", dis_jscc_imm, emu_jscc_imm }, + { "0000101111MMMRRR1010CCCC", "jscc ea", dis_jscc_ea, emu_jscc_ea }, + { "0000101101MMMRRR1S00bbbb", "jsclr #n, [X or Y]:ea, xxxx", dis_jsclr_ea, emu_jsclr_ea }, + { "0000101100MMMRRR1S00bbbb", "jsclr #n, [X or Y]:aa, xxxx", dis_jsclr_aa, emu_jsclr_aa }, + { "0000101110pppppp1S0bbbbb", "jsclr #n, [X or Y]:pp, xxxx", dis_jsclr_pp, emu_jsclr_pp }, + { "0000000111qqqqqq1S0bbbbb", "jsclr #n, [X or Y]:qq, xxxx", NULL, NULL }, + { "0000101111DDDDDD000bbbbb", "jsclr #n, S, xxxx", dis_jsclr_reg, emu_jsclr_reg }, + { "0000101001MMMRRR1S10bbbb", "jset #n, [X or Y]:ea, xxxx", dis_jset_ea, emu_jset_ea }, + { "0000101000MMMRRR1S10bbbb", "jset #n, [X or Y]:aa, xxxx", dis_jset_aa, emu_jset_aa }, + { "0000101010pppppp1S10bbbb", "jset #n, [X or Y]:pp, xxxx", dis_jset_pp, emu_jset_pp }, + { "0000000110qqqqqq1S10bbbb", "jset #n, [X or Y]:qq, xxxx", NULL, NULL }, + { "0000101011DDDDDD0010bbbb", "jset #n, S, xxxx", dis_jset_reg, emu_jset_reg }, + { "0000101111MMMRRR10000000", "jsr ea", dis_jsr_ea, emu_jsr_ea }, + { "000011010000aaaaaaaaaaaa", "jsr xxx", dis_jsr_imm, emu_jsr_imm }, + { "0000101101MMMRRR1S10bbbb", "jsset #n, [X or Y]:ea, xxxx", dis_jsset_ea, emu_jsset_ea }, + { "0000101100aaaaaa1S10bbbb", "jsset #n, [X or Y]:aa, xxxx", dis_jsset_aa, emu_jsset_aa }, + { "0000101110pppppp1S1bbbbb", "jsset #n, [X or Y]:pp, xxxx", dis_jsset_pp, emu_jsset_pp }, + { "0000000111qqqqqq1S1bbbbb", "jsset #n, [X or Y]:qq, xxxx", NULL, NULL }, + { "0000101111DDDDDD001bbbbb", "jsset #n, S, xxxx", dis_jsset_reg, emu_jsset_reg }, + { "0000010011000RRR000ddddd", "lra Rn, D", NULL, NULL }, + { "0000010001000000010ddddd", "lra xxxx, D", NULL, NULL }, + { "000011000001111010iiiiiD", "lsl #ii, D", NULL, NULL }, + { "00001100000111100001sssD", "lsl S, D", NULL, NULL }, + { "000011000001111011iiiiiD", "lsr #ii, D", NULL, NULL }, + { "00001100000111100011sssD", "lsr S, D", NULL, NULL }, + { "00000100010MMRRR000ddddd", "lua ea, D", dis_lua, emu_lua }, + { "0000010000aaaRRRaaaadddd", "lua {Rn + aa}, D", NULL, NULL }, + { "00000001000sssss11QQdk10", "mac S, #n, D", NULL, NULL }, + { "000000010100000111qqdk10", "maci #xxxx, S, D", NULL, NULL }, + { "00000001001001101sdkQQQQ", "mac_s_u S1, S2, D", NULL, NULL }, + { "00000001000sssss11QQdk11", "macr S1, S2, D", NULL, NULL }, + { "000000010100000111qqdk11", "macri #xxxx, S, D", NULL, NULL }, + { "00001100000110111000sssD", "merge S, D", NULL, NULL }, + { "0000101001110RRR1WDDDDDD", "move X:{Rn + xxxx} <-> R", NULL, NULL }, + { "0000101101110RRR1WDDDDDD", "move Y:{Rn + xxxx} <-> R", NULL, NULL }, + { "0000001aaaaaaRRR1a0WDDDD", "move X:{Rn + xxx} <-> R", dis_move_x_aa, emu_move_x_aa }, + { "0000001aaaaaaRRR1a1WDDDD", "move Y:{Rn + xxx} <-> R", NULL, NULL }, + { "00000101W1MMMRRR0s1ddddd", "movec [X or Y]:ea <-> R", dis_movec_ea, emu_movec_ea }, + { "00000101W0aaaaaa0s1ddddd", "movec [X or Y]:aa <-> R", dis_movec_aa, emu_movec_aa }, + { "00000100W1eeeeee101ddddd", "movec R1, R2", dis_movec_reg, emu_movec_reg }, + { "00000101iiiiiiii101ddddd", "movec #xx, D1", dis_movec_imm, emu_movec_imm }, + { "00000111W1MMMRRR10dddddd", "movem P:ea <-> R", dis_movem_ea, emu_movem_ea }, + { "00000111W0aaaaaa00dddddd", "movem P:ea <-> R", dis_movem_aa, emu_movem_aa }, + { "0000100sW1MMMRRR1Spppppp", "movep [X or Y]:ea <-> [X or Y]:pp", dis_movep_23, emu_movep_23 }, + { "00000111W1MMMRRR0Sqqqqqq", "movep [X or Y]:ea <-> X:qq", dis_movep_x_low, emu_movep_x_low }, + { "00000111W0MMMRRR1Sqqqqqq", "movep [X or Y]:ea <-> Y:qq", NULL, NULL }, + { "0000100sW1MMMRRR01pppppp", "movep [X or Y]:pp <-> P:ea", dis_movep_1, emu_movep_1 }, + { "000000001WMMMRRR0sqqqqqq", "movep [X or Y]:qq <-> P:ea", NULL, NULL }, + { "0000100sW1dddddd00pppppp", "movep [X or Y]:pp <-> R", dis_movep_0, emu_movep_0 }, + { "00000100W1dddddd1q0qqqqq", "movep X:qq <-> R", NULL, NULL }, + { "00000100W1dddddd0q1qqqqq", "movep Y:qq <-> R", NULL, NULL }, + { "00000001000sssss11QQdk00", "mpy S, #n, D", NULL, NULL }, + { "00000001001001111sdkQQQQ", "mpy_s_u S1, S2, D", NULL, NULL }, + { "000000010100000111qqdk00", "mpyi #xxxx, S, D", NULL, NULL }, + { "00000001000sssss11QQdk01", "mpyr S, #n, D", NULL, NULL }, + { "000000010100000111qqdk01", "mpyri #xxxx, S, D", NULL, NULL }, + { "000000000000000000000000", "nop", NULL, emu_nop}, + { "0000000111011RRR0001d101", "norm Rn, D", dis_norm, emu_norm }, + { "00001100000111100010sssD", "normf S, D", NULL, NULL }, + { "0000000101iiiiii1000d010", "or #xx, D", NULL, NULL }, + { "00000001010000001100d010", "or #xxxx, D", NULL, NULL }, + { "00000000iiiiiiii111110EE", "ori #xx, D", dis_ori, emu_ori }, + { "000000000000000000000011", "pflush", NULL, NULL }, + { "000000000000000000000001", "pflushun", NULL, NULL }, + { "000000000000000000000010", "pfree", NULL, NULL }, + { "0000101111MMMRRR10000001", "plock ea", NULL, NULL }, + { "000000000000000000001111", "plockr xxxx", NULL, NULL }, + { "0000101011MMMRRR10000001", "punlock ea", NULL, NULL }, + { "000000000000000000001110", "punlockr xxxx", NULL, NULL }, + { "0000011001MMMRRR0S100000", "rep [X or Y]:ea", dis_rep_ea, emu_rep_ea }, + { "0000011000aaaaaa0S100000", "rep [X or Y]:aa", dis_rep_aa, emu_rep_aa }, + { "00000110iiiiiiii1010hhhh", "rep #xxx", dis_rep_imm, emu_rep_imm }, + { "0000011011dddddd00100000", "rep S", dis_rep_reg, emu_rep_reg }, + { "000000000000000010000100", "reset", NULL, emu_reset }, + { "000000000000000000000100", "rti", NULL, emu_rti }, + { "000000000000000000001100", "rts", NULL, emu_rts }, + { "000000000000000010000111", "stop", NULL, emu_stop }, + { "0000000101iiiiii1000d100", "sub #xx, D", NULL, NULL }, + { "00000001010000001100d100", "sub #xxxx, D", NULL, NULL }, + { "00000010CCCC00000JJJd000", "tcc S1, D1", dis_tcc, emu_tcc }, + { "00000011CCCC0ttt0JJJdTTT", "tcc S1,D2 S2,D2", dis_tcc, emu_tcc }, + { "00000010CCCC1ttt00000TTT", "tcc S2, D2", dis_tcc, emu_tcc }, + { "000000000000000000000110", "trap", NULL, NULL }, + { "00000000000000000001CCCC", "trapcc", NULL, NULL }, + { "0000101S11MMMRRR110i0000", "vsl", NULL, NULL }, + { "000000000000000010000110", "wait", NULL, emu_wait }, +}; + +static uint32_t nonparallel_matches[ARRAYSIZE(nonparallel_opcodes)][2]; + /********************************** * Emulator kernel **********************************/ void dsp56k_init_cpu(void) { - dsp56k_disasm_init(); + int i; + for (i=0; i> 11) & (BITMASK(6) << 3); - value += (cur_inst >> 5) & BITMASK(3); - printf("0x%06x - 0x%02x\n", cur_inst, value); - opcodes8h[value](); + const OpcodeEntry op = lookup_opcode(cur_inst); + if (op.emu_func) { + op.emu_func(); + } else { + printf("%x - %s\n", cur_inst, op.name); + emu_undefined(); + } } else { /* Do parallel move read */ opcodes_parmove[(cur_inst>>20) & BITMASK(4)](); @@ -1552,47 +1752,11 @@ static int dsp_calc_cc(uint32_t cc_code) * Highbyte opcodes dispatchers **********************************/ -static void opcode8h_0(void) -{ - switch(cur_inst) { - case 0x000000: - dsp_nop(); - break; - case 0x000004: - dsp_rti(); - break; - case 0x000005: - dsp_illegal(); - break; - case 0x000006: - dsp_swi(); - break; - case 0x00000c: - dsp_rts(); - break; - case 0x000084: - dsp_reset(); - break; - case 0x000086: - dsp_wait(); - break; - case 0x000087: - dsp_stop(); - break; - case 0x00008c: - dsp_enddo(); - break; - default: - dsp_undefined(); - break; - } -} - /********************************** * Non-parallel moves instructions **********************************/ -static void dsp_undefined(void) +static void emu_undefined(void) { if (is_dsp_in_disasm_mode == false) { cur_inst_len = 0; @@ -1609,7 +1773,14 @@ static void dsp_undefined(void) } } -static void dsp_andi(void) +static void emu_add_long(void) +{ + uint32_t xxxx = read_memory_p(dsp_core.pc+1); + // QQQ + cur_inst_len++; +} + +static void emu_andi(void) { uint32_t regnum, value; @@ -1631,7 +1802,19 @@ static void dsp_andi(void) } } -static void dsp_bchg_aa(void) +static void emu_bcc_long(void) { + uint32_t xxxx = read_memory_p(dsp_core.pc+1); + cur_inst_len++; + //QQQ + dsp_core.instr_cycle += 2; //?? +} + +static void emu_bcc_imm(void) { + //QQQ + dsp_core.instr_cycle += 2; //?? +} + +static void emu_bchg_aa(void) { uint32_t memspace, addr, value, newcarry, numbit; @@ -1656,7 +1839,7 @@ static void dsp_bchg_aa(void) dsp_core.instr_cycle += 2; } -static void dsp_bchg_ea(void) +static void emu_bchg_ea(void) { uint32_t memspace, addr, value, newcarry, numbit; @@ -1681,7 +1864,7 @@ static void dsp_bchg_ea(void) dsp_core.instr_cycle += 2; } -static void dsp_bchg_pp(void) +static void emu_bchg_pp(void) { uint32_t memspace, addr, value, newcarry, numbit; @@ -1706,7 +1889,7 @@ static void dsp_bchg_pp(void) dsp_core.instr_cycle += 2; } -static void dsp_bchg_reg(void) +static void emu_bchg_reg(void) { uint32_t value, numreg, newcarry, numbit; @@ -1714,7 +1897,7 @@ static void dsp_bchg_reg(void) numbit = cur_inst & BITMASK(5); if ((numreg==DSP_REG_A) || (numreg==DSP_REG_B)) { - dsp_pm_read_accu24(numreg, &value); + emu_pm_read_accu24(numreg, &value); } else { value = dsp_core.registers[numreg]; } @@ -1735,7 +1918,7 @@ static void dsp_bchg_reg(void) dsp_core.instr_cycle += 2; } -static void dsp_bclr_aa(void) +static void emu_bclr_aa(void) { uint32_t memspace, addr, value, newcarry, numbit; @@ -1755,7 +1938,7 @@ static void dsp_bclr_aa(void) dsp_core.instr_cycle += 2; } -static void dsp_bclr_ea(void) +static void emu_bclr_ea(void) { uint32_t memspace, addr, value, newcarry, numbit; @@ -1776,7 +1959,7 @@ static void dsp_bclr_ea(void) dsp_core.instr_cycle += 2; } -static void dsp_bclr_pp(void) +static void emu_bclr_pp(void) { uint32_t memspace, addr, value, newcarry, numbit; @@ -1797,7 +1980,7 @@ static void dsp_bclr_pp(void) dsp_core.instr_cycle += 2; } -static void dsp_bclr_reg(void) +static void emu_bclr_reg(void) { uint32_t value, numreg, newcarry, numbit; @@ -1805,7 +1988,7 @@ static void dsp_bclr_reg(void) numbit = cur_inst & BITMASK(5); if ((numreg==DSP_REG_A) || (numreg==DSP_REG_B)) { - dsp_pm_read_accu24(numreg, &value); + emu_pm_read_accu24(numreg, &value); } else { value = dsp_core.registers[numreg]; } @@ -1822,7 +2005,12 @@ static void dsp_bclr_reg(void) dsp_core.instr_cycle += 2; } -static void dsp_bset_aa(void) +static void emu_bra_imm(void) { + // QQQ + dsp_core.instr_cycle += 2; +} + +static void emu_bset_aa(void) { uint32_t memspace, addr, value, newcarry, numbit; @@ -1843,7 +2031,7 @@ static void dsp_bset_aa(void) dsp_core.instr_cycle += 2; } -static void dsp_bset_ea(void) +static void emu_bset_ea(void) { uint32_t memspace, addr, value, newcarry, numbit; @@ -1864,7 +2052,7 @@ static void dsp_bset_ea(void) dsp_core.instr_cycle += 2; } -static void dsp_bset_pp(void) +static void emu_bset_pp(void) { uint32_t memspace, addr, value, newcarry, numbit; @@ -1884,7 +2072,7 @@ static void dsp_bset_pp(void) dsp_core.instr_cycle += 2; } -static void dsp_bset_reg(void) +static void emu_bset_reg(void) { uint32_t value, numreg, newcarry, numbit; @@ -1892,7 +2080,7 @@ static void dsp_bset_reg(void) numbit = cur_inst & BITMASK(5); if ((numreg==DSP_REG_A) || (numreg==DSP_REG_B)) { - dsp_pm_read_accu24(numreg, &value); + emu_pm_read_accu24(numreg, &value); } else { value = dsp_core.registers[numreg]; } @@ -1909,7 +2097,7 @@ static void dsp_bset_reg(void) dsp_core.instr_cycle += 2; } -static void dsp_btst_aa(void) +static void emu_btst_aa(void) { uint32_t memspace, addr, value, newcarry, numbit; @@ -1928,7 +2116,7 @@ static void dsp_btst_aa(void) dsp_core.instr_cycle += 2; } -static void dsp_btst_ea(void) +static void emu_btst_ea(void) { uint32_t memspace, addr, value, newcarry, numbit; @@ -1947,7 +2135,7 @@ static void dsp_btst_ea(void) dsp_core.instr_cycle += 2; } -static void dsp_btst_pp(void) +static void emu_btst_pp(void) { uint32_t memspace, addr, value, newcarry, numbit; @@ -1966,7 +2154,7 @@ static void dsp_btst_pp(void) dsp_core.instr_cycle += 2; } -static void dsp_btst_reg(void) +static void emu_btst_reg(void) { uint32_t value, numreg, newcarry, numbit; @@ -1974,7 +2162,7 @@ static void dsp_btst_reg(void) numbit = cur_inst & BITMASK(5); if ((numreg==DSP_REG_A) || (numreg==DSP_REG_B)) { - dsp_pm_read_accu24(numreg, &value); + emu_pm_read_accu24(numreg, &value); } else { value = dsp_core.registers[numreg]; } @@ -1988,7 +2176,11 @@ static void dsp_btst_reg(void) dsp_core.instr_cycle += 2; } -static void dsp_div(void) +static void emu_cmpu(void) { + // QQQ +} + +static void emu_div(void) { uint32_t srcreg, destreg, source[3], dest[3]; uint16_t newsr; @@ -2054,7 +2246,7 @@ static void dsp_div(void) xxxxxxxx 11xxxxxx 0xxxxxxx reg */ -static void dsp_do_aa(void) +static void emu_do_aa(void) { uint32_t memspace, addr; @@ -2074,7 +2266,7 @@ static void dsp_do_aa(void) dsp_core.instr_cycle += 4; } -static void dsp_do_imm(void) +static void emu_do_imm(void) { /* #xx */ @@ -2090,7 +2282,7 @@ static void dsp_do_imm(void) dsp_core.instr_cycle += 4; } -static void dsp_do_ea(void) +static void emu_do_ea(void) { uint32_t memspace, ea_mode, addr; @@ -2111,7 +2303,7 @@ static void dsp_do_ea(void) dsp_core.instr_cycle += 4; } -static void dsp_do_reg(void) +static void emu_do_reg(void) { uint32_t numreg; @@ -2123,7 +2315,7 @@ static void dsp_do_reg(void) numreg = (cur_inst>>8) & BITMASK(6); if ((numreg == DSP_REG_A) || (numreg == DSP_REG_B)) { - dsp_pm_read_accu24(numreg, &dsp_core.registers[DSP_REG_LC]); + emu_pm_read_accu24(numreg, &dsp_core.registers[DSP_REG_LC]); } else { dsp_core.registers[DSP_REG_LC] = dsp_core.registers[numreg]; } @@ -2135,7 +2327,14 @@ static void dsp_do_reg(void) dsp_core.instr_cycle += 4; } -static void dsp_enddo(void) +static void emu_dor_imm(void) +{ + //QQQ + + dsp_core.instr_cycle += 4; +} + +static void emu_enddo(void) { uint32_t saved_pc, saved_sr; @@ -2145,7 +2344,7 @@ static void dsp_enddo(void) dsp_stack_pop(&dsp_core.registers[DSP_REG_LA], &dsp_core.registers[DSP_REG_LC]); } -static void dsp_illegal(void) +static void emu_illegal(void) { /* Raise interrupt p:0x003e */ dsp56k_add_interrupt(DSP_INTER_ILLEGAL); @@ -2154,7 +2353,7 @@ static void dsp_illegal(void) } } -static void dsp_jcc_imm(void) +static void emu_jcc_imm(void) { uint32_t cc_code, newpc; @@ -2168,7 +2367,7 @@ static void dsp_jcc_imm(void) dsp_core.instr_cycle += 2; } -static void dsp_jcc_ea(void) +static void emu_jcc_ea(void) { uint32_t newpc, cc_code; @@ -2183,7 +2382,7 @@ static void dsp_jcc_ea(void) dsp_core.instr_cycle += 2; } -static void dsp_jclr_aa(void) +static void emu_jclr_aa(void) { uint32_t memspace, addr, value, numbit, newaddr; @@ -2203,7 +2402,7 @@ static void dsp_jclr_aa(void) ++cur_inst_len; } -static void dsp_jclr_ea(void) +static void emu_jclr_ea(void) { uint32_t memspace, addr, value, numbit, newaddr; @@ -2225,7 +2424,7 @@ static void dsp_jclr_ea(void) ++cur_inst_len; } -static void dsp_jclr_pp(void) +static void emu_jclr_pp(void) { uint32_t memspace, addr, value, numbit, newaddr; @@ -2246,7 +2445,7 @@ static void dsp_jclr_pp(void) ++cur_inst_len; } -static void dsp_jclr_reg(void) +static void emu_jclr_reg(void) { uint32_t value, numreg, numbit, newaddr; @@ -2255,7 +2454,7 @@ static void dsp_jclr_reg(void) newaddr = read_memory_p(dsp_core.pc+1); if ((numreg==DSP_REG_A) || (numreg==DSP_REG_B)) { - dsp_pm_read_accu24(numreg, &value); + emu_pm_read_accu24(numreg, &value); } else { value = dsp_core.registers[numreg]; } @@ -2270,7 +2469,7 @@ static void dsp_jclr_reg(void) ++cur_inst_len; } -static void dsp_jmp_ea(void) +static void emu_jmp_ea(void) { uint32_t newpc; @@ -2281,7 +2480,7 @@ static void dsp_jmp_ea(void) dsp_core.instr_cycle += 2; } -static void dsp_jmp_imm(void) +static void emu_jmp_imm(void) { uint32_t newpc; @@ -2292,7 +2491,7 @@ static void dsp_jmp_imm(void) dsp_core.instr_cycle += 2; } -static void dsp_jscc_ea(void) +static void emu_jscc_ea(void) { uint32_t newpc, cc_code; @@ -2308,7 +2507,7 @@ static void dsp_jscc_ea(void) dsp_core.instr_cycle += 2; } -static void dsp_jscc_imm(void) +static void emu_jscc_imm(void) { uint32_t cc_code, newpc; @@ -2323,7 +2522,7 @@ static void dsp_jscc_imm(void) dsp_core.instr_cycle += 2; } -static void dsp_jsclr_aa(void) +static void emu_jsclr_aa(void) { uint32_t memspace, addr, value, newpc, numbit, newaddr; @@ -2345,7 +2544,7 @@ static void dsp_jsclr_aa(void) ++cur_inst_len; } -static void dsp_jsclr_ea(void) +static void emu_jsclr_ea(void) { uint32_t memspace, addr, value, newpc, numbit, newaddr; @@ -2368,7 +2567,7 @@ static void dsp_jsclr_ea(void) ++cur_inst_len; } -static void dsp_jsclr_pp(void) +static void emu_jsclr_pp(void) { uint32_t memspace, addr, value, newpc, numbit, newaddr; @@ -2391,7 +2590,7 @@ static void dsp_jsclr_pp(void) ++cur_inst_len; } -static void dsp_jsclr_reg(void) +static void emu_jsclr_reg(void) { uint32_t value, numreg, newpc, numbit, newaddr; @@ -2400,7 +2599,7 @@ static void dsp_jsclr_reg(void) newaddr = read_memory_p(dsp_core.pc+1); if ((numreg==DSP_REG_A) || (numreg==DSP_REG_B)) { - dsp_pm_read_accu24(numreg, &value); + emu_pm_read_accu24(numreg, &value); } else { value = dsp_core.registers[numreg]; } @@ -2417,7 +2616,7 @@ static void dsp_jsclr_reg(void) ++cur_inst_len; } -static void dsp_jset_aa(void) +static void emu_jset_aa(void) { uint32_t memspace, addr, value, numbit, newpc, newaddr; @@ -2438,7 +2637,7 @@ static void dsp_jset_aa(void) ++cur_inst_len; } -static void dsp_jset_ea(void) +static void emu_jset_ea(void) { uint32_t memspace, addr, value, numbit, newpc, newaddr; @@ -2460,7 +2659,7 @@ static void dsp_jset_ea(void) ++cur_inst_len; } -static void dsp_jset_pp(void) +static void emu_jset_pp(void) { uint32_t memspace, addr, value, numbit, newpc, newaddr; @@ -2482,7 +2681,7 @@ static void dsp_jset_pp(void) ++cur_inst_len; } -static void dsp_jset_reg(void) +static void emu_jset_reg(void) { uint32_t value, numreg, numbit, newpc, newaddr; @@ -2491,7 +2690,7 @@ static void dsp_jset_reg(void) newaddr = read_memory_p(dsp_core.pc+1); if ((numreg==DSP_REG_A) || (numreg==DSP_REG_B)) { - dsp_pm_read_accu24(numreg, &value); + emu_pm_read_accu24(numreg, &value); } else { value = dsp_core.registers[numreg]; } @@ -2507,7 +2706,7 @@ static void dsp_jset_reg(void) ++cur_inst_len; } -static void dsp_jsr_imm(void) +static void emu_jsr_imm(void) { uint32_t newpc; @@ -2526,7 +2725,7 @@ static void dsp_jsr_imm(void) dsp_core.instr_cycle += 2; } -static void dsp_jsr_ea(void) +static void emu_jsr_ea(void) { uint32_t newpc; @@ -2545,7 +2744,7 @@ static void dsp_jsr_ea(void) dsp_core.instr_cycle += 2; } -static void dsp_jsset_aa(void) +static void emu_jsset_aa(void) { uint32_t memspace, addr, value, newpc, numbit, newaddr; @@ -2567,7 +2766,7 @@ static void dsp_jsset_aa(void) ++cur_inst_len; } -static void dsp_jsset_ea(void) +static void emu_jsset_ea(void) { uint32_t memspace, addr, value, newpc, numbit, newaddr; @@ -2590,7 +2789,7 @@ static void dsp_jsset_ea(void) ++cur_inst_len; } -static void dsp_jsset_pp(void) +static void emu_jsset_pp(void) { uint32_t memspace, addr, value, newpc, numbit, newaddr; @@ -2613,7 +2812,7 @@ static void dsp_jsset_pp(void) ++cur_inst_len; } -static void dsp_jsset_reg(void) +static void emu_jsset_reg(void) { uint32_t value, numreg, newpc, numbit, newaddr; @@ -2622,7 +2821,7 @@ static void dsp_jsset_reg(void) newaddr = read_memory_p(dsp_core.pc+1); if ((numreg==DSP_REG_A) || (numreg==DSP_REG_B)) { - dsp_pm_read_accu24(numreg, &value); + emu_pm_read_accu24(numreg, &value); } else { value = dsp_core.registers[numreg]; } @@ -2639,7 +2838,7 @@ static void dsp_jsset_reg(void) ++cur_inst_len; } -static void dsp_lua(void) +static void emu_lua(void) { uint32_t value, srcreg, dstreg, srcsave, srcnew; @@ -2661,7 +2860,7 @@ static void dsp_lua(void) dsp_core.instr_cycle += 2; } -static void dsp_movec_reg(void) +static void emu_movec_reg(void) { uint32_t numreg1, numreg2, value, dummy; @@ -2675,7 +2874,7 @@ static void dsp_movec_reg(void) /* Write D1 */ if ((numreg2 == DSP_REG_A) || (numreg2 == DSP_REG_B)) { - dsp_pm_read_accu24(numreg2, &value); + emu_pm_read_accu24(numreg2, &value); } else { value = dsp_core.registers[numreg2]; } @@ -2706,7 +2905,7 @@ static void dsp_movec_reg(void) } } -static void dsp_movec_aa(void) +static void emu_movec_aa(void) { uint32_t numreg, addr, memspace, value, dummy; @@ -2736,7 +2935,7 @@ static void dsp_movec_aa(void) } } -static void dsp_movec_imm(void) +static void emu_movec_imm(void) { uint32_t numreg, value; @@ -2747,7 +2946,7 @@ static void dsp_movec_imm(void) dsp_write_reg(numreg, value); } -static void dsp_movec_ea(void) +static void emu_movec_ea(void) { uint32_t numreg, addr, memspace, ea_mode, value, dummy; int retour; @@ -2785,7 +2984,7 @@ static void dsp_movec_ea(void) } } -static void dsp_movem_aa(void) +static void emu_movem_aa(void) { uint32_t numreg, addr, value, dummy; @@ -2803,7 +3002,7 @@ static void dsp_movem_aa(void) dsp_stack_pop(&value, &dummy); } else if ((numreg == DSP_REG_A) || (numreg == DSP_REG_B)) { - dsp_pm_read_accu24(numreg, &value); + emu_pm_read_accu24(numreg, &value); } else { value = dsp_core.registers[numreg]; @@ -2814,7 +3013,7 @@ static void dsp_movem_aa(void) dsp_core.instr_cycle += 4; } -static void dsp_movem_ea(void) +static void emu_movem_ea(void) { uint32_t numreg, addr, ea_mode, value, dummy; @@ -2833,7 +3032,7 @@ static void dsp_movem_ea(void) dsp_stack_pop(&value, &dummy); } else if ((numreg == DSP_REG_A) || (numreg == DSP_REG_B)) { - dsp_pm_read_accu24(numreg, &value); + emu_pm_read_accu24(numreg, &value); } else { value = dsp_core.registers[numreg]; @@ -2844,7 +3043,7 @@ static void dsp_movem_ea(void) dsp_core.instr_cycle += 4; } -static void dsp_movep_0(void) +static void emu_movep_0(void) { /* S,x:pp */ /* x:pp,D */ @@ -2860,7 +3059,7 @@ static void dsp_movep_0(void) if (cur_inst & (1<<15)) { /* Write pp */ if ((numreg == DSP_REG_A) || (numreg == DSP_REG_B)) { - dsp_pm_read_accu24(numreg, &value); + emu_pm_read_accu24(numreg, &value); } else if (numreg == DSP_REG_SSH) { dsp_stack_pop(&value, &dummy); @@ -2879,7 +3078,7 @@ static void dsp_movep_0(void) dsp_core.instr_cycle += 2; } -static void dsp_movep_1(void) +static void emu_movep_1(void) { /* p:ea,x:pp */ /* x:pp,p:ea */ @@ -2906,7 +3105,7 @@ static void dsp_movep_1(void) dsp_core.instr_cycle += 4; } -static void dsp_movep_23(void) +static void emu_movep_23(void) { /* x:ea,x:pp */ /* y:ea,x:pp */ @@ -2945,7 +3144,7 @@ static void dsp_movep_23(void) dsp_core.instr_cycle += 2; } -static void dsp_movep_x_low(void) { +static void emu_movep_x_low(void) { // 00000111W1MMMRRR0sqqqqqq uint32_t addr, peraddr, easpace, ea_mode; @@ -2957,12 +3156,12 @@ static void dsp_movep_x_low(void) { easpace = (cur_inst>>6) & 1; retour = dsp_calc_ea(ea_mode, &addr); - // TODO + // QQQ dsp_core.instr_cycle += 2; // ??? } -static void dsp_movex_a(void) { +static void emu_move_x_aa(void) { // 0000001aaaaaaRRR1a0WDDDD int W = (cur_inst >> 4) & 1; int a = (((cur_inst >> 11) & BITMASK(6)) << 1) @@ -2971,7 +3170,7 @@ static void dsp_movex_a(void) { dsp_core.instr_cycle += 2; //??? } -static void dsp_norm(void) +static void emu_norm(void) { uint32_t cursr,cur_e, cur_euz, dest[3], numreg, rreg; uint16_t newsr; @@ -3011,7 +3210,7 @@ static void dsp_norm(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_ori(void) +static void emu_ori(void) { uint32_t regnum, value; @@ -3042,7 +3241,7 @@ static void dsp_ori(void) xxxxxxxx 11xxxxxx 0xxxxxxx reg */ -static void dsp_rep_aa(void) +static void emu_rep_aa(void) { /* x:aa */ /* y:aa */ @@ -3055,7 +3254,7 @@ static void dsp_rep_aa(void) dsp_core.instr_cycle += 2; } -static void dsp_rep_imm(void) +static void emu_rep_imm(void) { /* #xxx */ @@ -3069,7 +3268,7 @@ static void dsp_rep_imm(void) dsp_core.instr_cycle += 2; } -static void dsp_rep_ea(void) +static void emu_rep_ea(void) { uint32_t value; @@ -3086,7 +3285,7 @@ static void dsp_rep_ea(void) dsp_core.instr_cycle += 2; } -static void dsp_rep_reg(void) +static void emu_rep_reg(void) { uint32_t numreg; @@ -3098,7 +3297,7 @@ static void dsp_rep_reg(void) numreg = (cur_inst>>8) & BITMASK(6); if ((numreg == DSP_REG_A) || (numreg == DSP_REG_B)) { - dsp_pm_read_accu24(numreg, &dsp_core.registers[DSP_REG_LC]); + emu_pm_read_accu24(numreg, &dsp_core.registers[DSP_REG_LC]); } else { dsp_core.registers[DSP_REG_LC] = dsp_core.registers[numreg]; } @@ -3107,13 +3306,13 @@ static void dsp_rep_reg(void) dsp_core.instr_cycle += 2; } -static void dsp_reset(void) +static void emu_reset(void) { /* Reset external peripherals */ dsp_core.instr_cycle += 2; } -static void dsp_rti(void) +static void emu_rti(void) { uint32_t newpc = 0, newsr = 0; @@ -3125,7 +3324,7 @@ static void dsp_rti(void) dsp_core.instr_cycle += 2; } -static void dsp_rts(void) +static void emu_rts(void) { uint32_t newpc = 0, newsr; @@ -3136,18 +3335,18 @@ static void dsp_rts(void) dsp_core.instr_cycle += 2; } -static void dsp_stop(void) +static void emu_stop(void) { DPRINTF("Dsp: STOP instruction\n"); } -static void dsp_swi(void) +static void emu_swi(void) { /* Raise interrupt p:0x0006 */ dsp_core.instr_cycle += 6; } -static void dsp_tcc(void) +static void emu_tcc(void) { uint32_t cc_code, regsrc1, regdest1; uint32_t regsrc2, regdest2; @@ -3198,12 +3397,12 @@ static void dsp_tcc(void) } } -static void dsp_wait(void) +static void emu_wait(void) { DPRINTF("Dsp: WAIT instruction\n"); } -static int dsp_pm_read_accu24(int numreg, uint32_t *dest) +static int emu_pm_read_accu24(int numreg, uint32_t *dest) { uint32_t scaling, value, reg; int got_limited = 0; @@ -3268,7 +3467,7 @@ static int dsp_pm_read_accu24(int numreg, uint32_t *dest) return got_limited; } -static void dsp_pm_0(void) +static void emu_pm_0(void) { uint32_t memspace, numreg, addr, save_accu, save_xy0; /* @@ -3280,7 +3479,7 @@ static void dsp_pm_0(void) dsp_calc_ea((cur_inst>>8) & BITMASK(6), &addr); /* Save A or B */ - dsp_pm_read_accu24(numreg, &save_accu); + emu_pm_read_accu24(numreg, &save_accu); /* Save X0 or Y0 */ save_xy0 = dsp_core.registers[DSP_REG_X0+(memspace<<1)]; @@ -3297,7 +3496,7 @@ static void dsp_pm_0(void) dsp_core.registers[DSP_REG_A2+numreg] = save_xy0 & (1<<23) ? 0xff : 0x0; } -static void dsp_pm_1(void) +static void emu_pm_1(void) { uint32_t memspace, numreg1, numreg2, value, xy_addr, retour, save_1, save_2; /* @@ -3340,7 +3539,7 @@ static void dsp_pm_1(void) } else { /* Read S1 */ if ((numreg1==DSP_REG_A) || (numreg1==DSP_REG_B)) - dsp_pm_read_accu24(numreg1, &save_1); + emu_pm_read_accu24(numreg1, &save_1); else save_1 = dsp_core.registers[numreg1]; } @@ -3353,7 +3552,7 @@ static void dsp_pm_1(void) /* X: */ numreg2 = DSP_REG_A + ((cur_inst>>17) & 1); } - dsp_pm_read_accu24(numreg2, &save_2); + emu_pm_read_accu24(numreg2, &save_2); /* Execute parallel instruction */ @@ -3391,7 +3590,7 @@ static void dsp_pm_1(void) dsp_core.registers[numreg2] = save_2; } -static void dsp_pm_2(void) +static void emu_pm_2(void) { uint32_t dummy; /* @@ -3414,14 +3613,14 @@ static void dsp_pm_2(void) } if ((cur_inst & 0xfc0000) == 0x200000) { - dsp_pm_2_2(); + emu_pm_2_2(); return; } - dsp_pm_3(); + emu_pm_3(); } -static void dsp_pm_2_2(void) +static void emu_pm_2_2(void) { /* 0010 00ee eeed dddd S,D @@ -3433,7 +3632,7 @@ static void dsp_pm_2_2(void) if ((srcreg == DSP_REG_A) || (srcreg == DSP_REG_B)) /* Accu to register: limited 24 bits */ - dsp_pm_read_accu24(srcreg, &save_reg); + emu_pm_read_accu24(srcreg, &save_reg); else save_reg = dsp_core.registers[srcreg]; @@ -3456,7 +3655,7 @@ static void dsp_pm_2_2(void) } } -static void dsp_pm_3(void) +static void emu_pm_3(void) { uint32_t dstreg, srcvalue; /* @@ -3496,7 +3695,7 @@ static void dsp_pm_3(void) } } -static void dsp_pm_4(void) +static void emu_pm_4(void) { /* 0100 l0ll w0aa aaaa l:aa,D @@ -3515,14 +3714,14 @@ static void dsp_pm_4(void) #xxxxxx,D */ if ((cur_inst & 0xf40000)==0x400000) { - dsp_pm_4x(); + emu_pm_4x(); return; } - dsp_pm_5(); + emu_pm_5(); } -static void dsp_pm_4x(void) +static void emu_pm_4x(void) { uint32_t value, numreg, l_addr, save_lx, save_ly; /* @@ -3571,7 +3770,7 @@ static void dsp_pm_4x(void) break; case 4: /* A */ - if (dsp_pm_read_accu24(DSP_REG_A, &save_lx)) { + if (emu_pm_read_accu24(DSP_REG_A, &save_lx)) { /* Was limited, set lower part */ save_ly = (save_lx & (1<<23) ? 0 : 0xffffff); } else { @@ -3581,7 +3780,7 @@ static void dsp_pm_4x(void) break; case 5: /* B */ - if (dsp_pm_read_accu24(DSP_REG_B, &save_lx)) { + if (emu_pm_read_accu24(DSP_REG_B, &save_lx)) { /* Was limited, set lower part */ save_ly = (save_lx & (1<<23) ? 0 : 0xffffff); } else { @@ -3591,13 +3790,13 @@ static void dsp_pm_4x(void) break; case 6: /* AB */ - dsp_pm_read_accu24(DSP_REG_A, &save_lx); - dsp_pm_read_accu24(DSP_REG_B, &save_ly); + emu_pm_read_accu24(DSP_REG_A, &save_lx); + emu_pm_read_accu24(DSP_REG_B, &save_ly); break; case 7: /* BA */ - dsp_pm_read_accu24(DSP_REG_B, &save_lx); - dsp_pm_read_accu24(DSP_REG_A, &save_ly); + emu_pm_read_accu24(DSP_REG_B, &save_lx); + emu_pm_read_accu24(DSP_REG_A, &save_ly); break; } } @@ -3660,7 +3859,7 @@ static void dsp_pm_4x(void) } } -static void dsp_pm_5(void) +static void emu_pm_5(void) { uint32_t memspace, numreg, value, xy_addr, retour; /* @@ -3699,7 +3898,7 @@ static void dsp_pm_5(void) else { /* Read S */ if ((numreg==DSP_REG_A) || (numreg==DSP_REG_B)) - dsp_pm_read_accu24(numreg, &value); + emu_pm_read_accu24(numreg, &value); else value = dsp_core.registers[numreg]; } @@ -3730,7 +3929,7 @@ static void dsp_pm_5(void) } } -static void dsp_pm_8(void) +static void emu_pm_8(void) { uint32_t ea1, ea2; uint32_t numreg1, numreg2; @@ -3778,7 +3977,7 @@ static void dsp_pm_8(void) } else { /* Read S1 */ if ((numreg1==DSP_REG_A) || (numreg1==DSP_REG_B)) - dsp_pm_read_accu24(numreg1, &save_reg1); + emu_pm_read_accu24(numreg1, &save_reg1); else save_reg1 = dsp_core.registers[numreg1]; } @@ -3789,7 +3988,7 @@ static void dsp_pm_8(void) } else { /* Read S2 */ if ((numreg2==DSP_REG_A) || (numreg2==DSP_REG_B)) - dsp_pm_read_accu24(numreg2, &save_reg2); + emu_pm_read_accu24(numreg2, &save_reg2); else save_reg2 = dsp_core.registers[numreg2]; } @@ -4076,7 +4275,7 @@ static void dsp_rnd56(uint32_t *dest) * Parallel moves instructions **********************************/ -static void dsp_abs_a(void) +static void emu_abs_a(void) { uint32_t dest[3], overflowed; @@ -4098,7 +4297,7 @@ static void dsp_abs_a(void) dsp_ccr_update_e_u_n_z(dest[0], dest[1], dest[2]); } -static void dsp_abs_b(void) +static void emu_abs_b(void) { uint32_t dest[3], overflowed; @@ -4120,7 +4319,7 @@ static void dsp_abs_b(void) dsp_ccr_update_e_u_n_z(dest[0], dest[1], dest[2]); } -static void dsp_adc_x_a(void) +static void emu_adc_x_a(void) { uint32_t source[3], dest[3], curcarry; uint16_t newsr; @@ -4152,7 +4351,7 @@ static void dsp_adc_x_a(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_adc_x_b(void) +static void emu_adc_x_b(void) { uint32_t source[3], dest[3], curcarry; uint16_t newsr; @@ -4184,7 +4383,7 @@ static void dsp_adc_x_b(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_adc_y_a(void) +static void emu_adc_y_a(void) { uint32_t source[3], dest[3], curcarry; uint16_t newsr; @@ -4216,7 +4415,7 @@ static void dsp_adc_y_a(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_adc_y_b(void) +static void emu_adc_y_b(void) { uint32_t source[3], dest[3], curcarry; uint16_t newsr; @@ -4248,7 +4447,7 @@ static void dsp_adc_y_b(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_add_b_a(void) +static void emu_add_b_a(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4273,7 +4472,7 @@ static void dsp_add_b_a(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_add_a_b(void) +static void emu_add_a_b(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4298,7 +4497,7 @@ static void dsp_add_a_b(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_add_x_a(void) +static void emu_add_x_a(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4323,7 +4522,7 @@ static void dsp_add_x_a(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_add_x_b(void) +static void emu_add_x_b(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4348,7 +4547,7 @@ static void dsp_add_x_b(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_add_y_a(void) +static void emu_add_y_a(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4373,7 +4572,7 @@ static void dsp_add_y_a(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_add_y_b(void) +static void emu_add_y_b(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4398,7 +4597,7 @@ static void dsp_add_y_b(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_add_x0_a(void) +static void emu_add_x0_a(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4423,7 +4622,7 @@ static void dsp_add_x0_a(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_add_x0_b(void) +static void emu_add_x0_b(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4448,7 +4647,7 @@ static void dsp_add_x0_b(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_add_y0_a(void) +static void emu_add_y0_a(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4473,7 +4672,7 @@ static void dsp_add_y0_a(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_add_y0_b(void) +static void emu_add_y0_b(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4498,7 +4697,7 @@ static void dsp_add_y0_b(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_add_x1_a(void) +static void emu_add_x1_a(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4523,7 +4722,7 @@ static void dsp_add_x1_a(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_add_x1_b(void) +static void emu_add_x1_b(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4548,7 +4747,7 @@ static void dsp_add_x1_b(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_add_y1_a(void) +static void emu_add_y1_a(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4573,7 +4772,7 @@ static void dsp_add_y1_a(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_add_y1_b(void) +static void emu_add_y1_b(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4598,7 +4797,7 @@ static void dsp_add_y1_b(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_addl_b_a(void) +static void emu_addl_b_a(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4623,7 +4822,7 @@ static void dsp_addl_b_a(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_addl_a_b(void) +static void emu_addl_a_b(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4648,7 +4847,7 @@ static void dsp_addl_a_b(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_addr_b_a(void) +static void emu_addr_b_a(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4673,7 +4872,7 @@ static void dsp_addr_b_a(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_addr_a_b(void) +static void emu_addr_a_b(void) { uint32_t source[3], dest[3]; uint16_t newsr; @@ -4698,7 +4897,7 @@ static void dsp_addr_a_b(void) dsp_core.registers[DSP_REG_SR] |= newsr; } -static void dsp_and_x0_a(void) +static void emu_and_x0_a(void) { dsp_core.registers[DSP_REG_A1] &= dsp_core.registers[DSP_REG_X0]; @@ -4707,7 +4906,7 @@ static void dsp_and_x0_a(void) dsp_core.registers[DSP_REG_SR] |= (dsp_core.registers[DSP_REG_A1]==0)<>23) & 1; @@ -5406,7 +5605,7 @@ static void dsp_lsl_a(void) dsp_core.registers[DSP_REG_SR] |= (dsp_core.registers[DSP_REG_A1]==0)<>23) & 1; @@ -5419,7 +5618,7 @@ static void dsp_lsl_b(void) dsp_core.registers[DSP_REG_SR] |= (dsp_core.registers[DSP_REG_B1]==0)<>= 1; @@ -5429,7 +5628,7 @@ static void dsp_lsr_a(void) dsp_core.registers[DSP_REG_SR] |= (dsp_core.registers[DSP_REG_A1]==0)<>= 1; @@ -5439,7 +5638,7 @@ static void dsp_lsr_b(void) dsp_core.registers[DSP_REG_SR] |= (dsp_core.registers[DSP_REG_B1]==0)<> 11) & (BITMASK(6) << 3); - value += (cur_inst >> 5) & BITMASK(3); - opcodes8h[value](); - } else { - dsp_pm(); - sprintf(str_instr, "%s %s", opcodes_alu[cur_inst & BITMASK(8)], parallelmove_name); - } - return disasm_cur_inst_len; -} - /** * dsp56k_getInstrText : return the disasembled instructions */ @@ -551,9 +334,9 @@ const char* dsp56k_get_instruction_text(void) *str_instr2 = 0; } if (disasm_cur_inst_len == 1) { - offset = sprintf(str_instr2, "p:%04x %06x (%02d cyc) %-*s\n", prev_inst_pc, cur_inst, dsp_core.instr_cycle, len, str_instr); + offset = sprintf(str_instr2, "p:%04x %06x (%02d cyc) %-*s\n", prev_inst_pc, disasm_cur_inst, dsp_core.instr_cycle, len, str_instr); } else { - offset = sprintf(str_instr2, "p:%04x %06x %06x (%02d cyc) %-*s\n", prev_inst_pc, cur_inst, read_memory(prev_inst_pc + 1), dsp_core.instr_cycle, len, str_instr); + offset = sprintf(str_instr2, "p:%04x %06x %06x (%02d cyc) %-*s\n", prev_inst_pc, disasm_cur_inst, read_memory(prev_inst_pc + 1), dsp_core.instr_cycle, len, str_instr); } // if (offset > 2 && Profile_DspAddressData(prev_inst_pc, &percentage, &count, &cycles, &cycle_diff)) { // offset -= 2; @@ -563,9 +346,9 @@ const char* dsp56k_get_instruction_text(void) return str_instr2; } -static void dsp_pm_class2(void) { - dsp_pm(); - sprintf(str_instr, "%s %s", opcodes_alu[cur_inst & BITMASK(8)], parallelmove_name); +void dis_pm_class2(void) { + dis_pm(); + sprintf(str_instr, "%s %s", opcodes_alu[disasm_cur_inst & BITMASK(8)], parallelmove_name); } static uint32_t read_memory(uint32_t currPc) @@ -577,7 +360,7 @@ static uint32_t read_memory(uint32_t currPc) * Conditions code calculation **********************************/ -static void dsp_calc_cc(uint32_t cc_mode, char *dest) +void dis_calc_cc(uint32_t cc_mode, char *dest) { strcpy(dest, cc_name[cc_mode & BITMASK(4)]); } @@ -586,7 +369,7 @@ static void dsp_calc_cc(uint32_t cc_mode, char *dest) * Effective address calculation **********************************/ -static int dsp_calc_ea(uint32_t ea_mode, char *dest) +static int dis_calc_ea(uint32_t ea_mode, char *dest) { int value, retour, numreg; @@ -640,80 +423,79 @@ static int dsp_calc_ea(uint32_t ea_mode, char *dest) return retour; } -static void opcode8h_0(void) -{ - switch(cur_inst) { - case 0x000000: - dsp_nop(); - break; - case 0x000004: - dsp_rti(); - break; - case 0x000005: - dsp_illegal(); - break; - case 0x000006: - dsp_swi(); - break; - case 0x00000c: - dsp_rts(); - break; - case 0x000084: - dsp_reset(); - break; - case 0x000086: - dsp_wait(); - break; - case 0x000087: - dsp_stop(); - break; - case 0x00008c: - dsp_enddo(); - break; - } -} - /********************************** * Non-parallel moves instructions **********************************/ -static void dsp_undefined(void) +void dis_undefined(void) { /* In Disasm mode, display dc instruction_opcode */ if (isInDisasmMode) - sprintf(str_instr, "dc $%06x", cur_inst); + sprintf(str_instr, "dc $%06x", disasm_cur_inst); /* In trace mode, display unknown instruction */ else - sprintf(str_instr, "$%06x unknown instruction", cur_inst); + sprintf(str_instr, "$%06x unknown instruction", disasm_cur_inst); } -static void dsp_andi(void) +void dis_add_long(void) { - switch(cur_inst & BITMASK(2)) { + disasm_cur_inst_len++; + uint32_t xxxx = read_memory(dsp_core.pc+1); + uint32_t accname = ((disasm_cur_inst >> 3) & 1) ? DSP_REG_B : DSP_REG_A; + sprintf(str_instr, "add #$%04x,%s", xxxx, registers_name[accname]); +} + +void dis_andi(void) +{ + switch(disasm_cur_inst & BITMASK(2)) { case 0: - sprintf(str_instr, "andi #$%02x,mr", (cur_inst>>8) & BITMASK(8)); + sprintf(str_instr, "andi #$%02x,mr", (disasm_cur_inst>>8) & BITMASK(8)); break; case 1: - sprintf(str_instr, "andi #$%02x,ccr", (cur_inst>>8) & BITMASK(8)); + sprintf(str_instr, "andi #$%02x,ccr", (disasm_cur_inst>>8) & BITMASK(8)); break; case 2: - sprintf(str_instr, "andi #$%02x,omr", (cur_inst>>8) & BITMASK(8)); + sprintf(str_instr, "andi #$%02x,omr", (disasm_cur_inst>>8) & BITMASK(8)); break; default: break; } } -static void dsp_bchg_aa(void) +void dis_bcc_long(void) { + disasm_cur_inst_len++; + + uint32_t cc_code = disasm_cur_inst & BITMASK(4); + uint32_t xxxx = read_memory(dsp_core.pc+1); + + char cond_name[16]; + dis_calc_cc(cc_code, cond_name); + + sprintf(str_instr, "b%s p:$%06x", cond_name, xxxx); +} + +void dis_bcc_imm(void) { + char cond_name[16]; + + uint32_t cc_code = (disasm_cur_inst >> 12) & BITMASK(4); + uint32_t xxx = (disasm_cur_inst & BITMASK(5)) + + ((disasm_cur_inst & (BITMASK(4) << 6)) >> 1); + + dis_calc_cc(cc_code, cond_name); + + sprintf(str_instr,"b%s p:$%04x", cond_name, xxx); +} + +void dis_bchg_aa(void) { /* bchg #n,x:aa */ /* bchg #n,y:aa */ char name[16]; uint32_t memspace, value, numbit; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); if (memspace) { sprintf(name,"y:$%04x",value); @@ -724,18 +506,18 @@ static void dsp_bchg_aa(void) sprintf(str_instr,"bchg #%d,%s", numbit, name); } -static void dsp_bchg_ea(void) +void dis_bchg_ea(void) { /* bchg #n,x:ea */ /* bchg #n,y:ea */ char name[16], addr_name[16]; uint32_t memspace, value, numbit; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); - dsp_calc_ea(value, addr_name); + dis_calc_ea(value, addr_name); if (memspace) { sprintf(name,"y:%s",addr_name); } else { @@ -745,16 +527,16 @@ static void dsp_bchg_ea(void) sprintf(str_instr,"bchg #%d,%s", numbit, name); } -static void dsp_bchg_pp(void) +void dis_bchg_pp(void) { /* bchg #n,x:pp */ /* bchg #n,y:pp */ char name[16]; uint32_t memspace, value, numbit; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); if (memspace) { sprintf(name,"y:$%06x",value+0xffffc0); @@ -765,27 +547,27 @@ static void dsp_bchg_pp(void) sprintf(str_instr,"bchg #%d,%s", numbit, name); } -static void dsp_bchg_reg(void) +void dis_bchg_reg(void) { /* bchg #n,R */ uint32_t value, numbit; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); sprintf(str_instr,"bchg #%d,%s", numbit, registers_name[value]); } -static void dsp_bclr_aa(void) +void dis_bclr_aa(void) { /* bclr #n,x:aa */ /* bclr #n,y:aa */ char name[16]; uint32_t memspace, value, numbit; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); if (memspace) { sprintf(name,"y:$%04x",value); @@ -796,18 +578,18 @@ static void dsp_bclr_aa(void) sprintf(str_instr,"bclr #%d,%s", numbit, name); } -static void dsp_bclr_ea(void) +void dis_bclr_ea(void) { /* bclr #n,x:ea */ /* bclr #n,y:ea */ char name[16], addr_name[16]; uint32_t memspace, value, numbit; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); - dsp_calc_ea(value, addr_name); + dis_calc_ea(value, addr_name); if (memspace) { sprintf(name,"y:%s",addr_name); } else { @@ -817,16 +599,16 @@ static void dsp_bclr_ea(void) sprintf(str_instr,"bclr #%d,%s", numbit, name); } -static void dsp_bclr_pp(void) +void dis_bclr_pp(void) { /* bclr #n,x:pp */ /* bclr #n,y:pp */ char name[16]; uint32_t memspace, value, numbit; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); if (memspace) { sprintf(name,"y:$%06x",value+0xffffc0); @@ -837,27 +619,35 @@ static void dsp_bclr_pp(void) sprintf(str_instr,"bclr #%d,%s", numbit, name); } -static void dsp_bclr_reg(void) +void dis_bclr_reg(void) { /* bclr #n,R */ uint32_t value, numbit; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); sprintf(str_instr,"bclr #%d,%s", numbit, registers_name[value]); } -static void dsp_bset_aa(void) +void dis_bra_imm(void) +{ + // QQQ - sign-extend + uint32_t xxx = (disasm_cur_inst & BITMASK(5)) + + ((disasm_cur_inst & (BITMASK(4) << 6)) >> 1); + sprintf(str_instr, "bra p:$%04x", xxx); +} + +void dis_bset_aa(void) { /* bset #n,x:aa */ /* bset #n,y:aa */ char name[16]; uint32_t memspace, value, numbit; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); if (memspace) { sprintf(name,"y:$%04x",value); @@ -868,18 +658,18 @@ static void dsp_bset_aa(void) sprintf(str_instr,"bset #%d,%s", numbit, name); } -static void dsp_bset_ea(void) +void dis_bset_ea(void) { /* bset #n,x:ea */ /* bset #n,y:ea */ char name[16], addr_name[16]; uint32_t memspace, value, numbit; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); - dsp_calc_ea(value, addr_name); + dis_calc_ea(value, addr_name); if (memspace) { sprintf(name,"y:%s",addr_name); } else { @@ -889,16 +679,16 @@ static void dsp_bset_ea(void) sprintf(str_instr,"bset #%d,%s", numbit, name); } -static void dsp_bset_pp(void) +void dis_bset_pp(void) { /* bset #n,x:pp */ /* bset #n,y:pp */ char name[16]; uint32_t memspace, value, numbit; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); if (memspace) { sprintf(name,"y:$%06x",value+0xffffc0); @@ -909,27 +699,27 @@ static void dsp_bset_pp(void) sprintf(str_instr,"bset #%d,%s", numbit, name); } -static void dsp_bset_reg(void) +void dis_bset_reg(void) { /* bset #n,R */ uint32_t value, numbit; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); sprintf(str_instr,"bset #%d,%s", numbit, registers_name[value]); } -static void dsp_btst_aa(void) +void dis_btst_aa(void) { /* btst #n,x:aa */ /* btst #n,y:aa */ char name[16]; uint32_t memspace, value, numbit; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); if (memspace) { sprintf(name,"y:$%04x",value); @@ -940,18 +730,18 @@ static void dsp_btst_aa(void) sprintf(str_instr,"btst #%d,%s", numbit, name); } -static void dsp_btst_ea(void) +void dis_btst_ea(void) { /* btst #n,x:ea */ /* btst #n,y:ea */ char name[16], addr_name[16]; uint32_t memspace, value, numbit; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); - dsp_calc_ea(value, addr_name); + dis_calc_ea(value, addr_name); if (memspace) { sprintf(name,"y:%s",addr_name); } else { @@ -961,16 +751,16 @@ static void dsp_btst_ea(void) sprintf(str_instr,"btst #%d,%s", numbit, name); } -static void dsp_btst_pp(void) +void dis_btst_pp(void) { /* btst #n,x:pp */ /* btst #n,y:pp */ char name[16]; uint32_t memspace, value, numbit; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); if (memspace) { sprintf(name,"y:$%06x",value+0xffffc0); @@ -981,22 +771,39 @@ static void dsp_btst_pp(void) sprintf(str_instr,"btst #%d,%s", numbit, name); } -static void dsp_btst_reg(void) +void dis_btst_reg(void) { /* btst #n,R */ uint32_t value, numbit; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); sprintf(str_instr,"btst #%d,%s", numbit, registers_name[value]); } -static void dsp_div(void) +void dis_cmpu(void) { + uint32_t ggg = (disasm_cur_inst >> 1) & BITMASK(3); + uint32_t d = disasm_cur_inst & 1; + + uint32_t srcreg = DSP_REG_NULL; + uint32_t srcacc = d ? DSP_REG_B : DSP_REG_A; + switch (ggg) { + case 0: srcreg = d ? DSP_REG_A : DSP_REG_B; break; + case 4: srcreg = DSP_REG_X0; break; + case 5: srcreg = DSP_REG_Y0; break; + case 6: srcreg = DSP_REG_X1; break; + case 7: srcreg = DSP_REG_Y1; break; + } + + sprintf(str_instr, "cmpu %s,%s", registers_name[srcreg], registers_name[srcacc]); +} + +void dis_div(void) { uint32_t srcreg=DSP_REG_NULL, destreg; - switch((cur_inst>>4) & BITMASK(2)) { + switch((disasm_cur_inst>>4) & BITMASK(2)) { case 0: srcreg = DSP_REG_X0; break; @@ -1010,21 +817,21 @@ static void dsp_div(void) srcreg = DSP_REG_Y1; break; } - destreg = DSP_REG_A+((cur_inst>>3) & 1); + destreg = DSP_REG_A+((disasm_cur_inst>>3) & 1); sprintf(str_instr,"div %s,%s", registers_name[srcreg],registers_name[destreg]); } -static void dsp_do_aa(void) +void dis_do_aa(void) { char name[16]; disasm_cur_inst_len++; - if (cur_inst & (1<<6)) { - sprintf(name, "y:$%04x", (cur_inst>>8) & BITMASK(6)); + if (disasm_cur_inst & (1<<6)) { + sprintf(name, "y:$%04x", (disasm_cur_inst>>8) & BITMASK(6)); } else { - sprintf(name, "x:$%04x", (cur_inst>>8) & BITMASK(6)); + sprintf(name, "x:$%04x", (disasm_cur_inst>>8) & BITMASK(6)); } sprintf(str_instr,"do %s,p:$%04x", @@ -1033,27 +840,27 @@ static void dsp_do_aa(void) ); } -static void dsp_do_imm(void) +void dis_do_imm(void) { disasm_cur_inst_len++; sprintf(str_instr,"do #$%04x,p:$%04x", - ((cur_inst>>8) & BITMASK(8))|((cur_inst & BITMASK(4))<<8), + ((disasm_cur_inst>>8) & BITMASK(8))|((disasm_cur_inst & BITMASK(4))<<8), read_memory(dsp_core.pc+1) ); } -static void dsp_do_ea(void) +void dis_do_ea(void) { char addr_name[16], name[16]; uint32_t ea_mode; disasm_cur_inst_len++; - ea_mode = (cur_inst>>8) & BITMASK(6); - dsp_calc_ea(ea_mode, addr_name); + ea_mode = (disasm_cur_inst>>8) & BITMASK(6); + dis_calc_ea(ea_mode, addr_name); - if (cur_inst & (1<<6)) { + if (disasm_cur_inst & (1<<6)) { sprintf(name, "y:%s", addr_name); } else { sprintf(name, "x:%s", addr_name); @@ -1065,51 +872,51 @@ static void dsp_do_ea(void) ); } -static void dsp_do_reg(void) +void dis_do_reg(void) { disasm_cur_inst_len++; sprintf(str_instr,"do %s,p:$%04x", - registers_name[(cur_inst>>8) & BITMASK(6)], + registers_name[(disasm_cur_inst>>8) & BITMASK(6)], read_memory(dsp_core.pc+1) ); } -static void dsp_enddo(void) +void dis_dor_imm(void) { - sprintf(str_instr,"enddo"); + disasm_cur_inst_len++; + + sprintf(str_instr,"dor #$%04x,p:$%04x", + ((disasm_cur_inst>>8) & BITMASK(8))|((disasm_cur_inst & BITMASK(4))<<8), + read_memory(dsp_core.pc+1) + ); } -static void dsp_illegal(void) -{ - sprintf(str_instr,"illegal"); -} - -static void dsp_jcc_ea(void) +void dis_jcc_ea(void) { char cond_name[16], addr_name[16]; uint32_t cc_code=0; - dsp_calc_ea((cur_inst >>8) & BITMASK(6), addr_name); - cc_code=cur_inst & BITMASK(4); - dsp_calc_cc(cc_code, cond_name); + dis_calc_ea((disasm_cur_inst >>8) & BITMASK(6), addr_name); + cc_code=disasm_cur_inst & BITMASK(4); + dis_calc_cc(cc_code, cond_name); sprintf(str_instr,"j%s p:%s", cond_name, addr_name); } -static void dsp_jcc_imm(void) +void dis_jcc_imm(void) { char cond_name[16], addr_name[16]; uint32_t cc_code=0; - sprintf(addr_name, "$%04x", cur_inst & BITMASK(12)); - cc_code=(cur_inst>>12) & BITMASK(4); - dsp_calc_cc(cc_code, cond_name); + sprintf(addr_name, "$%04x", disasm_cur_inst & BITMASK(12)); + cc_code=(disasm_cur_inst>>12) & BITMASK(4); + dis_calc_cc(cc_code, cond_name); sprintf(str_instr,"j%s p:%s", cond_name, addr_name); } -static void dsp_jclr_aa(void) +void dis_jclr_aa(void) { /* jclr #n,x:aa,p:xx */ /* jclr #n,y:aa,p:xx */ @@ -1118,9 +925,9 @@ static void dsp_jclr_aa(void) disasm_cur_inst_len++; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); if (memspace) { sprintf(srcname, "y:$%04x", value); @@ -1135,7 +942,7 @@ static void dsp_jclr_aa(void) ); } -static void dsp_jclr_ea(void) +void dis_jclr_ea(void) { /* jclr #n,x:ea,p:xx */ /* jclr #n,y:ea,p:xx */ @@ -1144,11 +951,11 @@ static void dsp_jclr_ea(void) disasm_cur_inst_len++; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); - dsp_calc_ea(value, addr_name); + dis_calc_ea(value, addr_name); if (memspace) { sprintf(srcname, "y:%s", addr_name); } else { @@ -1162,7 +969,7 @@ static void dsp_jclr_ea(void) ); } -static void dsp_jclr_pp(void) +void dis_jclr_pp(void) { /* jclr #n,x:pp,p:xx */ /* jclr #n,y:pp,p:xx */ @@ -1171,9 +978,9 @@ static void dsp_jclr_pp(void) disasm_cur_inst_len++; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); value += 0xffffc0; if (memspace) { @@ -1189,15 +996,15 @@ static void dsp_jclr_pp(void) ); } -static void dsp_jclr_reg(void) +void dis_jclr_reg(void) { /* jclr #n,R,p:xx */ uint32_t value, numbit; disasm_cur_inst_len++; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); sprintf(str_instr,"jclr #%d,%s,p:$%04x", numbit, @@ -1206,45 +1013,45 @@ static void dsp_jclr_reg(void) ); } -static void dsp_jmp_imm(void) +void dis_jmp_imm(void) { - sprintf(str_instr,"jmp p:$%04x", cur_inst & BITMASK(12)); + sprintf(str_instr,"jmp p:$%04x", disasm_cur_inst & BITMASK(12)); } -static void dsp_jmp_ea(void) +void dis_jmp_ea(void) { char dstname[16]; - dsp_calc_ea((cur_inst >>8) & BITMASK(6), dstname); + dis_calc_ea((disasm_cur_inst >>8) & BITMASK(6), dstname); sprintf(str_instr,"jmp p:%s", dstname); } -static void dsp_jscc_ea(void) +void dis_jscc_ea(void) { char cond_name[16], addr_name[16]; uint32_t cc_code=0; - dsp_calc_ea((cur_inst>>8) & BITMASK(6), addr_name); - cc_code=cur_inst & BITMASK(4); - dsp_calc_cc(cc_code, cond_name); + dis_calc_ea((disasm_cur_inst>>8) & BITMASK(6), addr_name); + cc_code=disasm_cur_inst & BITMASK(4); + dis_calc_cc(cc_code, cond_name); sprintf(str_instr,"js%s p:%s", cond_name, addr_name); } -static void dsp_jscc_imm(void) +void dis_jscc_imm(void) { char cond_name[16], addr_name[16]; uint32_t cc_code=0; - sprintf(addr_name, "$%04x", cur_inst & BITMASK(12)); - cc_code=(cur_inst>>12) & BITMASK(4); - dsp_calc_cc(cc_code, cond_name); + sprintf(addr_name, "$%04x", disasm_cur_inst & BITMASK(12)); + cc_code=(disasm_cur_inst>>12) & BITMASK(4); + dis_calc_cc(cc_code, cond_name); sprintf(str_instr,"js%s p:%s", cond_name, addr_name); } -static void dsp_jsclr_aa(void) +void dis_jsclr_aa(void) { /* jsclr #n,x:aa,p:xx */ /* jsclr #n,y:aa,p:xx */ @@ -1253,9 +1060,9 @@ static void dsp_jsclr_aa(void) disasm_cur_inst_len++; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); if (memspace) { sprintf(srcname, "y:$%04x", value); @@ -1270,7 +1077,7 @@ static void dsp_jsclr_aa(void) ); } -static void dsp_jsclr_ea(void) +void dis_jsclr_ea(void) { /* jsclr #n,x:ea,p:xx */ /* jsclr #n,y:ea,p:xx */ @@ -1279,11 +1086,11 @@ static void dsp_jsclr_ea(void) disasm_cur_inst_len++; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); - dsp_calc_ea(value, addr_name); + dis_calc_ea(value, addr_name); if (memspace) { sprintf(srcname, "y:%s", addr_name); } else { @@ -1297,7 +1104,7 @@ static void dsp_jsclr_ea(void) ); } -static void dsp_jsclr_pp(void) +void dis_jsclr_pp(void) { /* jsclr #n,x:pp,p:xx */ /* jsclr #n,y:pp,p:xx */ @@ -1306,9 +1113,9 @@ static void dsp_jsclr_pp(void) disasm_cur_inst_len++; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); value += 0xffffc0; if (memspace) { @@ -1324,15 +1131,15 @@ static void dsp_jsclr_pp(void) ); } -static void dsp_jsclr_reg(void) +void dis_jsclr_reg(void) { /* jsclr #n,R,p:xx */ uint32_t value, numbit; disasm_cur_inst_len++; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); sprintf(str_instr,"jsclr #%d,%s,p:$%04x", numbit, @@ -1341,7 +1148,7 @@ static void dsp_jsclr_reg(void) ); } -static void dsp_jset_aa(void) +void dis_jset_aa(void) { /* jset #n,x:aa,p:xx */ /* jset #n,y:aa,p:xx */ @@ -1350,9 +1157,9 @@ static void dsp_jset_aa(void) disasm_cur_inst_len++; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); if (memspace) { sprintf(srcname, "y:$%04x", value); @@ -1367,7 +1174,7 @@ static void dsp_jset_aa(void) ); } -static void dsp_jset_ea(void) +void dis_jset_ea(void) { /* jset #n,x:ea,p:xx */ /* jset #n,y:ea,p:xx */ @@ -1376,11 +1183,11 @@ static void dsp_jset_ea(void) disasm_cur_inst_len++; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); - dsp_calc_ea(value, addr_name); + dis_calc_ea(value, addr_name); if (memspace) { sprintf(srcname, "y:%s", addr_name); } else { @@ -1394,7 +1201,7 @@ static void dsp_jset_ea(void) ); } -static void dsp_jset_pp(void) +void dis_jset_pp(void) { /* jset #n,x:pp,p:xx */ /* jset #n,y:pp,p:xx */ @@ -1403,9 +1210,9 @@ static void dsp_jset_pp(void) disasm_cur_inst_len++; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); value += 0xffffc0; if (memspace) { @@ -1421,15 +1228,15 @@ static void dsp_jset_pp(void) ); } -static void dsp_jset_reg(void) +void dis_jset_reg(void) { /* jset #n,R,p:xx */ uint32_t value, numbit; disasm_cur_inst_len++; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); sprintf(str_instr,"jset #%d,%s,p:$%04x", numbit, @@ -1438,21 +1245,21 @@ static void dsp_jset_reg(void) ); } -static void dsp_jsr_imm(void) +void dis_jsr_imm(void) { - sprintf(str_instr,"jsr p:$%04x", cur_inst & BITMASK(12)); + sprintf(str_instr,"jsr p:$%04x", disasm_cur_inst & BITMASK(12)); } -static void dsp_jsr_ea(void) +void dis_jsr_ea(void) { char dstname[16]; - dsp_calc_ea((cur_inst>>8) & BITMASK(6),dstname); + dis_calc_ea((disasm_cur_inst>>8) & BITMASK(6),dstname); sprintf(str_instr,"jsr p:%s", dstname); } -static void dsp_jsset_aa(void) +void dis_jsset_aa(void) { /* jsset #n,x:aa,p:xx */ /* jsset #n,y:aa,p:xx */ @@ -1461,9 +1268,9 @@ static void dsp_jsset_aa(void) disasm_cur_inst_len++; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); if (memspace) { sprintf(srcname, "y:$%04x", value); @@ -1478,7 +1285,7 @@ static void dsp_jsset_aa(void) ); } -static void dsp_jsset_ea(void) +void dis_jsset_ea(void) { /* jsset #n,x:ea,p:xx */ /* jsset #n,y:ea,p:xx */ @@ -1487,11 +1294,11 @@ static void dsp_jsset_ea(void) disasm_cur_inst_len++; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); - dsp_calc_ea(value, addr_name); + dis_calc_ea(value, addr_name); if (memspace) { sprintf(srcname, "y:%s", addr_name); } else { @@ -1505,7 +1312,7 @@ static void dsp_jsset_ea(void) ); } -static void dsp_jsset_pp(void) +void dis_jsset_pp(void) { /* jsset #n,x:pp,p:xx */ /* jsset #n,y:pp,p:xx */ @@ -1514,9 +1321,9 @@ static void dsp_jsset_pp(void) disasm_cur_inst_len++; - memspace = (cur_inst>>6) & 1; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + memspace = (disasm_cur_inst>>6) & 1; + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); value += 0xffffc0; if (memspace) { @@ -1532,15 +1339,15 @@ static void dsp_jsset_pp(void) ); } -static void dsp_jsset_reg(void) +void dis_jsset_reg(void) { /* jsset #n,r,p:xx */ uint32_t value, numbit; disasm_cur_inst_len++; - value = (cur_inst>>8) & BITMASK(6); - numbit = cur_inst & BITMASK(5); + value = (disasm_cur_inst>>8) & BITMASK(6); + numbit = disasm_cur_inst & BITMASK(5); sprintf(str_instr,"jsset #%d,%s,p:$%04x", numbit, @@ -1549,30 +1356,30 @@ static void dsp_jsset_reg(void) ); } -static void dsp_lua(void) +void dis_lua(void) { char addr_name[16], numreg; - dsp_calc_ea((cur_inst>>8) & BITMASK(5), addr_name); - numreg = cur_inst & BITMASK(3); + dis_calc_ea((disasm_cur_inst>>8) & BITMASK(5), addr_name); + numreg = disasm_cur_inst & BITMASK(3); - if (cur_inst & (1<<3)) + if (disasm_cur_inst & (1<<3)) sprintf(str_instr,"lua %s,n%d", addr_name, numreg); else sprintf(str_instr,"lua %s,r%d", addr_name, numreg); } -static void dsp_movec_reg(void) +void dis_movec_reg(void) { uint32_t numreg1, numreg2; /* S1,D2 */ /* S2,D1 */ - numreg2 = (cur_inst>>8) & BITMASK(6); - numreg1 = cur_inst & BITMASK(6); + numreg2 = (disasm_cur_inst>>8) & BITMASK(6); + numreg1 = disasm_cur_inst & BITMASK(6); - if (cur_inst & (1<<15)) { + if (disasm_cur_inst & (1<<15)) { /* Write D1 */ sprintf(str_instr,"movec %s,%s", registers_name[numreg2], registers_name[numreg1]); } else { @@ -1581,7 +1388,7 @@ static void dsp_movec_reg(void) } } -static void dsp_movec_aa(void) +void dis_movec_aa(void) { const char *spacename; char srcname[16],dstname[16]; @@ -1592,16 +1399,16 @@ static void dsp_movec_aa(void) /* y:aa,D1 */ /* S1,y:aa */ - numreg = cur_inst & BITMASK(6); - addr = (cur_inst>>8) & BITMASK(6); + numreg = disasm_cur_inst & BITMASK(6); + addr = (disasm_cur_inst>>8) & BITMASK(6); - if (cur_inst & (1<<6)) { + if (disasm_cur_inst & (1<<6)) { spacename="y"; } else { spacename="x"; } - if (cur_inst & (1<<15)) { + if (disasm_cur_inst & (1<<15)) { /* Write D1 */ sprintf(srcname, "%s:$%04x", spacename, addr); strcpy(dstname, registers_name[numreg]); @@ -1614,18 +1421,18 @@ static void dsp_movec_aa(void) sprintf(str_instr,"movec %s,%s", srcname, dstname); } -static void dsp_movec_imm(void) +void dis_movec_imm(void) { uint32_t numreg; /* #xx,D1 */ - numreg = cur_inst & BITMASK(6); + numreg = disasm_cur_inst & BITMASK(6); - sprintf(str_instr,"movec #$%02x,%s", (cur_inst>>8) & BITMASK(8), registers_name[numreg]); + sprintf(str_instr,"movec #$%02x,%s", (disasm_cur_inst>>8) & BITMASK(8), registers_name[numreg]); } -static void dsp_movec_ea(void) +void dis_movec_ea(void) { const char *spacename; char srcname[16], dstname[16], addr_name[16]; @@ -1638,17 +1445,17 @@ static void dsp_movec_ea(void) /* S1,y:ea */ /* #xxxx,D1 */ - numreg = cur_inst & BITMASK(6); - ea_mode = (cur_inst>>8) & BITMASK(6); - retour = dsp_calc_ea(ea_mode, addr_name); + numreg = disasm_cur_inst & BITMASK(6); + ea_mode = (disasm_cur_inst>>8) & BITMASK(6); + retour = dis_calc_ea(ea_mode, addr_name); - if (cur_inst & (1<<6)) { + if (disasm_cur_inst & (1<<6)) { spacename="y"; } else { spacename="x"; } - if (cur_inst & (1<<15)) { + if (disasm_cur_inst & (1<<15)) { /* Write D1 */ if (retour) { sprintf(srcname, "#%s", addr_name); @@ -1665,16 +1472,16 @@ static void dsp_movec_ea(void) sprintf(str_instr,"movec %s,%s", srcname, dstname); } -static void dsp_movem_aa(void) +void dis_movem_aa(void) { /* S,p:aa */ /* p:aa,D */ char addr_name[16], srcname[16], dstname[16]; uint32_t numreg; - sprintf(addr_name, "$%04x",(cur_inst>>8) & BITMASK(6)); - numreg = cur_inst & BITMASK(6); - if (cur_inst & (1<<15)) { + sprintf(addr_name, "$%04x",(disasm_cur_inst>>8) & BITMASK(6)); + numreg = disasm_cur_inst & BITMASK(6); + if (disasm_cur_inst & (1<<15)) { /* Write D */ sprintf(srcname, "p:%s", addr_name); strcpy(dstname, registers_name[numreg]); @@ -1687,17 +1494,17 @@ static void dsp_movem_aa(void) sprintf(str_instr,"movem %s,%s", srcname, dstname); } -static void dsp_movem_ea(void) +void dis_movem_ea(void) { /* S,p:ea */ /* p:ea,D */ char addr_name[16], srcname[16], dstname[16]; uint32_t ea_mode, numreg; - ea_mode = (cur_inst>>8) & BITMASK(6); - dsp_calc_ea(ea_mode, addr_name); - numreg = cur_inst & BITMASK(6); - if (cur_inst & (1<<15)) { + ea_mode = (disasm_cur_inst>>8) & BITMASK(6); + dis_calc_ea(ea_mode, addr_name); + numreg = disasm_cur_inst & BITMASK(6); + if (disasm_cur_inst & (1<<15)) { /* Write D */ sprintf(srcname, "p:%s", addr_name); strcpy(dstname, registers_name[numreg]); @@ -1710,7 +1517,7 @@ static void dsp_movem_ea(void) sprintf(str_instr,"movem %s,%s", srcname, dstname); } -static void dsp_movep_0(void) +void dis_movep_0(void) { char srcname[16]="",dstname[16]=""; uint32_t addr, memspace, numreg; @@ -1720,11 +1527,11 @@ static void dsp_movep_0(void) /* S,y:pp */ /* y:pp,D */ - addr = 0xffffc0 + (cur_inst & BITMASK(6)); - memspace = (cur_inst>>16) & 1; - numreg = (cur_inst>>8) & BITMASK(6); + addr = 0xffffc0 + (disasm_cur_inst & BITMASK(6)); + memspace = (disasm_cur_inst>>16) & 1; + numreg = (disasm_cur_inst>>8) & BITMASK(6); - if (cur_inst & (1<<15)) { + if (disasm_cur_inst & (1<<15)) { /* Write pp */ strcpy(srcname, registers_name[numreg]); @@ -1749,7 +1556,7 @@ static void dsp_movep_0(void) sprintf(str_instr,"movep %s,%s", srcname, dstname); } -static void dsp_movep_1(void) +void dis_movep_1(void) { char srcname[16]="",dstname[16]="",name[16]=""; uint32_t addr, memspace; @@ -1759,11 +1566,11 @@ static void dsp_movep_1(void) /* p:ea,y:pp */ /* y:pp,p:ea */ - addr = 0xffffc0 + (cur_inst & BITMASK(6)); - dsp_calc_ea((cur_inst>>8) & BITMASK(6), name); - memspace = (cur_inst>>16) & 1; + addr = 0xffffc0 + (disasm_cur_inst & BITMASK(6)); + dis_calc_ea((disasm_cur_inst>>8) & BITMASK(6), name); + memspace = (disasm_cur_inst>>16) & 1; - if (cur_inst & (1<<15)) { + if (disasm_cur_inst & (1<<15)) { /* Write pp */ sprintf(srcname, "p:%s", name); @@ -1788,7 +1595,7 @@ static void dsp_movep_1(void) sprintf(str_instr,"movep %s,%s", srcname, dstname); } -static void dsp_movep_23(void) +void dis_movep_23(void) { char srcname[16]="",dstname[16]="",name[16]=""; uint32_t addr, memspace, easpace, retour; @@ -1805,12 +1612,12 @@ static void dsp_movep_23(void) /* y:pp,y:ea */ /* y:pp,x:ea */ - addr = 0xffffc0 + (cur_inst & BITMASK(6)); - retour = dsp_calc_ea((cur_inst>>8) & BITMASK(6), name); - memspace = (cur_inst>>16) & 1; - easpace = (cur_inst>>6) & 1; + addr = 0xffffc0 + (disasm_cur_inst & BITMASK(6)); + retour = dis_calc_ea((disasm_cur_inst>>8) & BITMASK(6), name); + memspace = (disasm_cur_inst>>16) & 1; + easpace = (disasm_cur_inst>>6) & 1; - if (cur_inst & (1<<15)) { + if (disasm_cur_inst & (1<<15)) { /* Write pp */ if (retour) { @@ -1847,17 +1654,17 @@ static void dsp_movep_23(void) sprintf(str_instr,"movep %s,%s", srcname, dstname); } -static void dsp_movep_x_low(void) { +void dis_movep_x_low(void) { // 00000111W1MMMRRR0Sqqqqqq char srcname[16]="",dstname[16]="",name[16]=""; uint32_t addr, easpace, retour; - addr = 0xffff80 + (cur_inst & BITMASK(6)); - retour = dsp_calc_ea((cur_inst>>8) & BITMASK(6), name); - easpace = (cur_inst>>6) & 1; + addr = 0xffff80 + (disasm_cur_inst & BITMASK(6)); + retour = dis_calc_ea((disasm_cur_inst>>8) & BITMASK(6), name); + easpace = (disasm_cur_inst>>6) & 1; - if (cur_inst & (1<<15)) { + if (disasm_cur_inst & (1<<15)) { /* Write pp */ if (retour) { @@ -1887,11 +1694,11 @@ static void dsp_movep_x_low(void) { } -static void dsp_movex_a(void) { +void dis_move_x_aa(void) { // 0000001aaaaaaRRR1a0WDDDD - int W = (cur_inst >> 4) & 1; - int a = (((cur_inst >> 11) & BITMASK(6)) << 1) - + ((cur_inst >> 6) & 1); + int W = (disasm_cur_inst >> 4) & 1; + int a = (((disasm_cur_inst >> 11) & BITMASK(6)) << 1) + + ((disasm_cur_inst >> 6) & 1); if (W) { sprintf(str_instr, "move x:(?? + %d), ??", a); } else { @@ -1899,32 +1706,27 @@ static void dsp_movex_a(void) { } } -static void dsp_nop(void) -{ - sprintf(str_instr,"nop"); -} - -static void dsp_norm(void) +void dis_norm(void) { uint32_t srcreg, destreg; - srcreg = DSP_REG_R0+((cur_inst>>8) & BITMASK(3)); - destreg = DSP_REG_A+((cur_inst>>3) & 1); + srcreg = DSP_REG_R0+((disasm_cur_inst>>8) & BITMASK(3)); + destreg = DSP_REG_A+((disasm_cur_inst>>3) & 1); sprintf(str_instr,"norm %s,%s", registers_name[srcreg], registers_name[destreg]); } -static void dsp_ori(void) +void dis_ori(void) { - switch(cur_inst & BITMASK(2)) { + switch(disasm_cur_inst & BITMASK(2)) { case 0: - sprintf(str_instr,"ori #$%02x,mr", (cur_inst>>8) & BITMASK(8)); + sprintf(str_instr,"ori #$%02x,mr", (disasm_cur_inst>>8) & BITMASK(8)); break; case 1: - sprintf(str_instr,"ori #$%02x,ccr", (cur_inst>>8) & BITMASK(8)); + sprintf(str_instr,"ori #$%02x,ccr", (disasm_cur_inst>>8) & BITMASK(8)); break; case 2: - sprintf(str_instr,"ori #$%02x,omr", (cur_inst>>8) & BITMASK(8)); + sprintf(str_instr,"ori #$%02x,omr", (disasm_cur_inst>>8) & BITMASK(8)); break; default: break; @@ -1932,38 +1734,38 @@ static void dsp_ori(void) } -static void dsp_rep_aa(void) +void dis_rep_aa(void) { char name[16]; /* x:aa */ /* y:aa */ - if (cur_inst & (1<<6)) { - sprintf(name, "y:$%04x",(cur_inst>>8) & BITMASK(6)); + if (disasm_cur_inst & (1<<6)) { + sprintf(name, "y:$%04x",(disasm_cur_inst>>8) & BITMASK(6)); } else { - sprintf(name, "x:$%04x",(cur_inst>>8) & BITMASK(6)); + sprintf(name, "x:$%04x",(disasm_cur_inst>>8) & BITMASK(6)); } sprintf(str_instr,"rep %s", name); } -static void dsp_rep_imm(void) +void dis_rep_imm(void) { /* #xxx */ - sprintf(str_instr,"rep #$%02x", ((cur_inst>>8) & BITMASK(8)) - + ((cur_inst & BITMASK(4))<<8)); + sprintf(str_instr,"rep #$%02x", ((disasm_cur_inst>>8) & BITMASK(8)) + + ((disasm_cur_inst & BITMASK(4))<<8)); } -static void dsp_rep_ea(void) +void dis_rep_ea(void) { char name[16],addr_name[16]; /* x:ea */ /* y:ea */ - dsp_calc_ea((cur_inst>>8) & BITMASK(6), addr_name); - if (cur_inst & (1<<6)) { + dis_calc_ea((disasm_cur_inst>>8) & BITMASK(6), addr_name); + if (disasm_cur_inst & (1<<6)) { sprintf(name, "y:%s",addr_name); } else { sprintf(name, "x:%s",addr_name); @@ -1972,50 +1774,25 @@ static void dsp_rep_ea(void) sprintf(str_instr,"rep %s", name); } -static void dsp_rep_reg(void) +void dis_rep_reg(void) { /* R */ - sprintf(str_instr,"rep %s", registers_name[(cur_inst>>8) & BITMASK(6)]); + sprintf(str_instr,"rep %s", registers_name[(disasm_cur_inst>>8) & BITMASK(6)]); } -static void dsp_reset(void) -{ - sprintf(str_instr,"reset"); -} - -static void dsp_rti(void) -{ - sprintf(str_instr,"rti"); -} - -static void dsp_rts(void) -{ - sprintf(str_instr,"rts"); -} - -static void dsp_stop(void) -{ - sprintf(str_instr,"stop"); -} - -static void dsp_swi(void) -{ - sprintf(str_instr,"swi"); -} - -static void dsp_tcc(void) +void dis_tcc(void) { char ccname[16]; uint32_t src1reg, dst1reg, src2reg, dst2reg; - dsp_calc_cc((cur_inst>>12) & BITMASK(4), ccname); - src1reg = registers_tcc[(cur_inst>>3) & BITMASK(4)][0]; - dst1reg = registers_tcc[(cur_inst>>3) & BITMASK(4)][1]; + dis_calc_cc((disasm_cur_inst>>12) & BITMASK(4), ccname); + src1reg = registers_tcc[(disasm_cur_inst>>3) & BITMASK(4)][0]; + dst1reg = registers_tcc[(disasm_cur_inst>>3) & BITMASK(4)][1]; - if (cur_inst & (1<<16)) { - src2reg = DSP_REG_R0+((cur_inst>>8) & BITMASK(3)); - dst2reg = DSP_REG_R0+(cur_inst & BITMASK(3)); + if (disasm_cur_inst & (1<<16)) { + src2reg = DSP_REG_R0+((disasm_cur_inst>>8) & BITMASK(3)); + dst2reg = DSP_REG_R0+(disasm_cur_inst & BITMASK(3)); sprintf(str_instr,"t%s %s,%s %s,%s", ccname, @@ -2033,24 +1810,20 @@ static void dsp_tcc(void) } } -static void dsp_wait(void) -{ - sprintf(str_instr,"wait"); -} /********************************** * Parallel moves **********************************/ -static void dsp_pm(void) +void dis_pm(void) { uint32_t value; - value = (cur_inst >> 20) & BITMASK(4); + value = (disasm_cur_inst >> 20) & BITMASK(4); opcodes_parmove[value](); } -static void dsp_pm_0(void) +void dis_pm_0(void) { char space_name[16], addr_name[16]; uint32_t memspace, numreg1, numreg2; @@ -2058,9 +1831,9 @@ static void dsp_pm_0(void) 0000 100d 00mm mrrr S,x:ea x0,D 0000 100d 10mm mrrr S,y:ea y0,D */ - memspace = (cur_inst>>15) & 1; - numreg1 = DSP_REG_A+((cur_inst>>16) & 1); - dsp_calc_ea((cur_inst>>8) & BITMASK(6), addr_name); + memspace = (disasm_cur_inst>>15) & 1; + numreg1 = DSP_REG_A+((disasm_cur_inst>>16) & 1); + dis_calc_ea((disasm_cur_inst>>8) & BITMASK(6), addr_name); if (memspace) { strcpy(space_name,"y"); @@ -2080,7 +1853,7 @@ static void dsp_pm_0(void) ); } -static void dsp_pm_1(void) +void dis_pm_1(void) { /* 0001 ffdf w0mm mrrr x:ea,D1 S2,D2 @@ -2094,21 +1867,21 @@ static void dsp_pm_1(void) char addr_name[16]; uint32_t memspace, write_flag, retour, s1reg, s2reg, d1reg, d2reg; - memspace = (cur_inst>>14) & 1; - write_flag = (cur_inst>>15) & 1; - retour = dsp_calc_ea((cur_inst>>8) & BITMASK(6), addr_name); + memspace = (disasm_cur_inst>>14) & 1; + write_flag = (disasm_cur_inst>>15) & 1; + retour = dis_calc_ea((disasm_cur_inst>>8) & BITMASK(6), addr_name); if (memspace==DSP_SPACE_Y) { s2reg = d2reg = DSP_REG_Y0; - switch((cur_inst>>16) & BITMASK(2)) { + switch((disasm_cur_inst>>16) & BITMASK(2)) { case 0: s2reg = d2reg = DSP_REG_Y0; break; case 1: s2reg = d2reg = DSP_REG_Y1; break; case 2: s2reg = d2reg = DSP_REG_A; break; case 3: s2reg = d2reg = DSP_REG_B; break; } - s1reg = DSP_REG_A+((cur_inst>>19) & 1); - d1reg = DSP_REG_X0+((cur_inst>>18) & 1); + s1reg = DSP_REG_A+((disasm_cur_inst>>19) & 1); + d1reg = DSP_REG_X0+((disasm_cur_inst>>18) & 1); if (write_flag) { /* Write D2 */ @@ -2140,15 +1913,15 @@ static void dsp_pm_1(void) } else { s1reg = d1reg = DSP_REG_X0; - switch((cur_inst>>18) & BITMASK(2)) { + switch((disasm_cur_inst>>18) & BITMASK(2)) { case 0: s1reg = d1reg = DSP_REG_X0; break; case 1: s1reg = d1reg = DSP_REG_X1; break; case 2: s1reg = d1reg = DSP_REG_A; break; case 3: s1reg = d1reg = DSP_REG_B; break; } - s2reg = DSP_REG_A+((cur_inst>>17) & 1); - d2reg = DSP_REG_Y0+((cur_inst>>16) & 1); + s2reg = DSP_REG_A+((disasm_cur_inst>>17) & 1); + d2reg = DSP_REG_Y0+((disasm_cur_inst>>16) & 1); if (write_flag) { /* Write D1 */ @@ -2181,7 +1954,7 @@ static void dsp_pm_1(void) } } -static void dsp_pm_2(void) +void dis_pm_2(void) { char addr_name[16]; uint32_t numreg1, numreg2; @@ -2191,28 +1964,28 @@ static void dsp_pm_2(void) 0010 00ee eeed dddd S,D 001d dddd iiii iiii #xx,D */ - if (((cur_inst >> 8) & 0xffff) == 0x2000) { + if (((disasm_cur_inst >> 8) & 0xffff) == 0x2000) { return; } - if (((cur_inst >> 8) & 0xffe0) == 0x2040) { - dsp_calc_ea((cur_inst>>8) & BITMASK(5), addr_name); - sprintf(parallelmove_name, "%s,r%d",addr_name, (cur_inst>>8) & BITMASK(3)); + if (((disasm_cur_inst >> 8) & 0xffe0) == 0x2040) { + dis_calc_ea((disasm_cur_inst>>8) & BITMASK(5), addr_name); + sprintf(parallelmove_name, "%s,r%d",addr_name, (disasm_cur_inst>>8) & BITMASK(3)); return; } - if (((cur_inst >> 8) & 0xfc00) == 0x2000) { - numreg1 = (cur_inst>>13) & BITMASK(5); - numreg2 = (cur_inst>>8) & BITMASK(5); + if (((disasm_cur_inst >> 8) & 0xfc00) == 0x2000) { + numreg1 = (disasm_cur_inst>>13) & BITMASK(5); + numreg2 = (disasm_cur_inst>>8) & BITMASK(5); sprintf(parallelmove_name, "%s,%s", registers_name[numreg1], registers_name[numreg2]); return; } - numreg1 = (cur_inst>>16) & BITMASK(5); - sprintf(parallelmove_name, "#$%02x,%s", (cur_inst >> 8) & BITMASK(8), registers_name[numreg1]); + numreg1 = (disasm_cur_inst>>16) & BITMASK(5); + sprintf(parallelmove_name, "#$%02x,%s", (disasm_cur_inst >> 8) & BITMASK(8), registers_name[numreg1]); } -static void dsp_pm_4(void) +void dis_pm_4(void) { char addr_name[16]; uint32_t value, retour, ea_mode, memspace; @@ -2232,24 +2005,24 @@ static void dsp_pm_4(void) S,y:ea #xxxxxx,D */ - value = (cur_inst>>16) & BITMASK(3); - value |= (cur_inst>>17) & (BITMASK(2)<<3); + value = (disasm_cur_inst>>16) & BITMASK(3); + value |= (disasm_cur_inst>>17) & (BITMASK(2)<<3); - ea_mode = (cur_inst>>8) & BITMASK(6); + ea_mode = (disasm_cur_inst>>8) & BITMASK(6); if ((value>>2)==0) { /* L: memory move */ - if (cur_inst & (1<<14)) { - retour = dsp_calc_ea(ea_mode, addr_name); + if (disasm_cur_inst & (1<<14)) { + retour = dis_calc_ea(ea_mode, addr_name); } else { sprintf(addr_name,"$%04x", ea_mode); retour = 0; } - value = (cur_inst>>16) & BITMASK(2); - value |= (cur_inst>>17) & (1<<2); + value = (disasm_cur_inst>>16) & BITMASK(2); + value |= (disasm_cur_inst>>17) & (1<<2); - if (cur_inst & (1<<15)) { + if (disasm_cur_inst & (1<<15)) { /* Write D */ if (retour) { @@ -2265,9 +2038,9 @@ static void dsp_pm_4(void) return; } - memspace = (cur_inst>>19) & 1; - if (cur_inst & (1<<14)) { - retour = dsp_calc_ea(ea_mode, addr_name); + memspace = (disasm_cur_inst>>19) & 1; + if (disasm_cur_inst & (1<<14)) { + retour = dis_calc_ea(ea_mode, addr_name); } else { sprintf(addr_name,"$%04x", ea_mode); retour = 0; @@ -2276,7 +2049,7 @@ static void dsp_pm_4(void) if (memspace) { /* Y: */ - if (cur_inst & (1<<15)) { + if (disasm_cur_inst & (1<<15)) { /* Write D */ if (retour) { @@ -2292,7 +2065,7 @@ static void dsp_pm_4(void) } else { /* X: */ - if (cur_inst & (1<<15)) { + if (disasm_cur_inst & (1<<15)) { /* Write D */ if (retour) { @@ -2307,7 +2080,7 @@ static void dsp_pm_4(void) } } -static void dsp_pm_8(void) +void dis_pm_8(void) { char addr1_name[16], addr2_name[16]; uint32_t ea_mode1, ea_mode2, numreg1, numreg2; @@ -2318,7 +2091,7 @@ static void dsp_pm_8(void) S1,x:ea S2,y:ea */ numreg1 = DSP_REG_X0; - switch((cur_inst>>18) & BITMASK(2)) { + switch((disasm_cur_inst>>18) & BITMASK(2)) { case 0: numreg1 = DSP_REG_X0; break; case 1: numreg1 = DSP_REG_X1; break; case 2: numreg1 = DSP_REG_A; break; @@ -2326,19 +2099,19 @@ static void dsp_pm_8(void) } numreg2 = DSP_REG_Y0; - switch((cur_inst>>16) & BITMASK(2)) { + switch((disasm_cur_inst>>16) & BITMASK(2)) { case 0: numreg2 = DSP_REG_Y0; break; case 1: numreg2 = DSP_REG_Y1; break; case 2: numreg2 = DSP_REG_A; break; case 3: numreg2 = DSP_REG_B; break; } - ea_mode1 = (cur_inst>>8) & BITMASK(5); + ea_mode1 = (disasm_cur_inst>>8) & BITMASK(5); if ((ea_mode1>>3) == 0) { ea_mode1 |= (1<<5); } - ea_mode2 = (cur_inst>>13) & BITMASK(2); - ea_mode2 |= ((cur_inst>>20) & BITMASK(2))<<3; + ea_mode2 = (disasm_cur_inst>>13) & BITMASK(2); + ea_mode2 |= ((disasm_cur_inst>>20) & BITMASK(2))<<3; if ((ea_mode1 & (1<<2))==0) { ea_mode2 |= 1<<2; } @@ -2346,11 +2119,11 @@ static void dsp_pm_8(void) ea_mode2 |= (1<<5); } - dsp_calc_ea(ea_mode1, addr1_name); - dsp_calc_ea(ea_mode2, addr2_name); + dis_calc_ea(ea_mode1, addr1_name); + dis_calc_ea(ea_mode2, addr2_name); - if (cur_inst & (1<<15)) { - if (cur_inst & (1<<22)) { + if (disasm_cur_inst & (1<<15)) { + if (disasm_cur_inst & (1<<22)) { sprintf(parallelmove_name, "x:%s,%s y:%s,%s", addr1_name, registers_name[numreg1], @@ -2366,7 +2139,7 @@ static void dsp_pm_8(void) ); } } else { - if (cur_inst & (1<<22)) { + if (disasm_cur_inst & (1<<22)) { sprintf(parallelmove_name, "%s,x:%s y:%s,%s", registers_name[numreg1], addr1_name, diff --git a/hw/xbox/dsp/dsp_disasm.h b/hw/xbox/dsp/dsp_disasm.h index 36071398e1..0edcbeae3f 100644 --- a/hw/xbox/dsp/dsp_disasm.h +++ b/hw/xbox/dsp/dsp_disasm.h @@ -25,19 +25,121 @@ #define DSP_DISASM_H #include +#include + +extern uint32_t prev_inst_pc; +extern bool isLooping; + +/* Used to display dc instead of unknown instruction for illegal opcodes */ +extern bool isInDisasmMode; + +extern uint32_t disasm_cur_inst; +extern uint16_t disasm_cur_inst_len; +extern char str_instr[50]; +extern char parallelmove_name[64]; -typedef enum { - DSP_TRACE_MODE, - DSP_DISASM_MODE -} dsp_trace_disasm_t; /* Functions */ -void dsp56k_disasm_init(void); -uint16_t dsp56k_disasm(dsp_trace_disasm_t value); const char* dsp56k_get_instruction_text(void); /* Registers change */ void dsp56k_disasm_reg_save(void); void dsp56k_disasm_reg_compare(void); + +typedef void (*dis_func_t)(void); + +void dis_undefined(void); + +/* Instructions without parallel moves */ +void dis_add_long(void); +void dis_andi(void); +void dis_bcc_long(void); +void dis_bcc_imm(void); +void dis_bchg_aa(void); +void dis_bchg_ea(void); +void dis_bchg_pp(void); +void dis_bchg_reg(void); +void dis_bclr_aa(void); +void dis_bclr_ea(void); +void dis_bclr_pp(void); +void dis_bclr_reg(void); +void dis_bra_imm(void); +void dis_bset_aa(void); +void dis_bset_ea(void); +void dis_bset_pp(void); +void dis_bset_reg(void); +void dis_btst_aa(void); +void dis_btst_ea(void); +void dis_btst_pp(void); +void dis_btst_reg(void); +void dis_cmpu(void); +void dis_div(void); +void dis_enddo(void); +void dis_illegal(void); +void dis_jcc_imm(void); +void dis_jcc_ea(void); +void dis_jclr_aa(void); +void dis_jclr_ea(void); +void dis_jclr_pp(void); +void dis_jclr_reg(void); +void dis_jmp_ea(void); +void dis_jmp_imm(void); +void dis_jscc_ea(void); +void dis_jscc_imm(void); +void dis_jsclr_aa(void); +void dis_jsclr_ea(void); +void dis_jsclr_pp(void); +void dis_jsclr_reg(void); +void dis_jset_aa(void); +void dis_jset_ea(void); +void dis_jset_pp(void); +void dis_jset_reg(void); +void dis_jsr_ea(void); +void dis_jsr_imm(void); +void dis_jsset_aa(void); +void dis_jsset_ea(void); +void dis_jsset_pp(void); +void dis_jsset_reg(void); +void dis_lua(void); +void dis_movem_ea(void); +void dis_movem_aa(void); +void dis_norm(void); +void dis_ori(void); +void dis_reset(void); +void dis_rti(void); +void dis_rts(void); +void dis_stop(void); +void dis_swi(void); +void dis_tcc(void); +void dis_wait(void); +void dis_do_ea(void); +void dis_do_aa(void); +void dis_do_imm(void); +void dis_do_reg(void); +void dis_dor_imm(void); +void dis_rep_aa(void); +void dis_rep_ea(void); +void dis_rep_imm(void); +void dis_rep_reg(void); +void dis_movec_aa(void); +void dis_movec_ea(void); +void dis_movec_imm(void); +void dis_movec_reg(void); +void dis_movep_0(void); +void dis_movep_1(void); +void dis_movep_23(void); + +void dis_movep_x_low(void); +void dis_move_x_aa(void); + +/* Parallel moves */ +void dis_pm_class2(void); +void dis_pm(void); +void dis_pm_0(void); +void dis_pm_1(void); +void dis_pm_2(void); +void dis_pm_4(void); +void dis_pm_8(void); + #endif /* DSP_DISASM_H */ diff --git a/hw/xbox/dsp/dsp_int.h b/hw/xbox/dsp/dsp_int.h index da027f77ca..eecabde226 100644 --- a/hw/xbox/dsp/dsp_int.h +++ b/hw/xbox/dsp/dsp_int.h @@ -143,40 +143,39 @@ typedef struct dsp_interrupt_s { } dsp_interrupt_t; typedef struct dsp_core_s { - /* DSP executing instructions ? */ int running; /* DSP instruction Cycle counter */ - uint16_t instr_cycle; + uint16_t instr_cycle; /* Registers */ - uint32_t pc; - uint32_t registers[DSP_REG_MAX]; + uint32_t pc; + uint32_t registers[DSP_REG_MAX]; /* stack[0=ssh], stack[1=ssl] */ - uint32_t stack[2][16]; + uint32_t stack[2][16]; uint32_t xram[DSP_XRAM_SIZE]; uint32_t yram[DSP_YRAM_SIZE]; uint32_t pram[DSP_PRAM_SIZE]; /* peripheral space, x:0xffff80-0xffffff */ - uint32_t periph[DSP_PERIPH_SIZE]; + uint32_t periph[DSP_PERIPH_SIZE]; /* Misc */ uint32_t loop_rep; /* executing rep ? */ uint32_t pc_on_rep; /* True if PC is on REP instruction */ /* Interruptions */ - uint16_t interrupt_state; /* NONE, FAST or LONG interrupt */ - uint16_t interrupt_instr_fetch; /* vector of the current interrupt */ - uint16_t interrupt_save_pc; /* save next pc value before interrupt */ - uint16_t interrupt_counter; /* count number of pending interrupts */ - uint16_t interrupt_IplToRaise; /* save the IPL level to save in the SR register */ - uint16_t interrupt_pipeline_count; /* used to prefetch correctly the 2 inter instructions */ - int16_t interrupt_ipl[12]; /* store the current IPL for each interrupt */ - uint16_t interrupt_isPending[12]; /* store if interrupt is pending for each interrupt */ + uint16_t interrupt_state; /* NONE, FAST or LONG interrupt */ + uint16_t interrupt_instr_fetch; /* vector of the current interrupt */ + uint16_t interrupt_save_pc; /* save next pc value before interrupt */ + uint16_t interrupt_counter; /* count number of pending interrupts */ + uint16_t interrupt_IplToRaise; /* save the IPL level to save in the SR register */ + uint16_t interrupt_pipeline_count; /* used to prefetch correctly the 2 inter instructions */ + int16_t interrupt_ipl[12]; /* store the current IPL for each interrupt */ + uint16_t interrupt_isPending[12]; /* store if interrupt is pending for each interrupt */ } dsp_core_t; /* DSP */