style, build

This commit is contained in:
espes 2015-04-05 16:03:25 -07:00
parent 6f22e7679b
commit 537edc85f3
10 changed files with 8329 additions and 8651 deletions

View File

@ -6,3 +6,5 @@ obj-y += nv2a.o nv2a_vsh.o nv2a_psh.o swizzle.o
obj-y += mcpx_apu.o mcpx_aci.o
obj-y += lpc47m157.o
obj-y += xid.o
obj-y += dsp/

View File

@ -0,0 +1 @@
obj-y += dsp.o dsp_core.o dsp_cpu.o dsp_disasm.o

File diff suppressed because it is too large Load Diff

View File

@ -1,77 +1,49 @@
/*
DSP M56001 emulation
Dummy emulation, Hatari glue
DSP56300 emulation
(C) 2001-2008 ARAnyM developer team
Adaption to Hatari (C) 2008 by Thomas Huth
Based on Hatari DSP M56001 emulation
(C) 2001-2008 ARAnyM developer team
Adaption to Hatari (C) 2008 by Thomas Huth
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef DSP_H
#define DSP_H
#if ENABLE_DSP_EMU
# include "dsp_core.h"
#endif
#define DSP_FREQ (CPU_FREQ*4)
extern bool bDspEnabled;
extern bool bDspHostInterruptPending;
#include <stdint.h>
#include <stdbool.h>
/* Dsp commands */
extern bool DSP_ProcessIRQ(void);
extern void DSP_Init(void);
extern void DSP_UnInit(void);
extern void DSP_Reset(void);
extern void DSP_Run(int nHostCycles);
/* Save Dsp state to snapshot */
extern void DSP_MemorySnapShot_Capture(bool bSave);
bool dsp_process_irq(void);
void dsp_init(void);
void dsp_uninit(void);
void dsp_reset(void);
void dsp_run(int nHostCycles);
/* Dsp Debugger commands */
extern void DSP_SetDebugging(bool enabled);
extern Uint16 DSP_GetPC(void);
extern Uint16 DSP_GetNextPC(Uint16 pc);
extern Uint16 DSP_GetInstrCycles(void);
extern Uint32 DSP_ReadMemory(Uint16 addr, char space, const char **mem_str);
extern Uint16 DSP_DisasmMemory(Uint16 dsp_memdump_addr, Uint16 dsp_memdump_upper, char space);
extern Uint16 DSP_DisasmAddress(FILE *out, Uint16 lowerAdr, Uint16 UpperAdr);
extern void DSP_Info(Uint32 dummy);
extern void DSP_DisasmRegisters(void);
extern int DSP_GetRegisterAddress(const char *arg, Uint32 **addr, Uint32 *mask);
extern bool DSP_Disasm_SetRegister(const char *arg, Uint32 value);
/* Dsp SSI commands */
extern Uint32 DSP_SsiReadTxValue(void);
extern void DSP_SsiWriteRxValue(Uint32 value);
extern void DSP_SsiReceive_SC0(void);
extern void DSP_SsiReceive_SC1(Uint32 value);
extern void DSP_SsiReceive_SC2(Uint32 value);
extern void DSP_SsiReceive_SCK(void);
extern void DSP_SsiTransmit_SC0(void);
extern void DSP_SsiTransmit_SC1(void);
extern void DSP_SsiTransmit_SC2(Uint32 frame);
extern void DSP_SsiTransmit_SCK(void);
/* Dsp Host interface commands */
extern void DSP_HandleReadAccess(void);
extern void DSP_HandleWriteAccess(void);
extern Uint16 DSP_Get_HREQ(void);
uint16_t dsp_get_pc(void);
uint16_t dsp_get_next_pc(uint16_t pc);
uint16_t dsp_get_instr_cycles(void);
uint32_t dsp_read_memory(uint16_t addr, char space, const char **mem_str);
uint16_t dsp_disasm_memory(uint16_t dsp_memdump_addr, uint16_t dsp_memdump_upper, char space);
uint16_t dsp_disasm_address(FILE *out, uint16_t lowerAdr, uint16_t UpperAdr);
void dsp_info(uint32_t dummy);
void dsp_print_registers(void);
int dsp_get_register_address(const char *arg, uint32_t **addr, uint32_t *mask);
bool dsp_disasm_set_register(const char *arg, uint32_t value);
#endif /* DSP_H */

File diff suppressed because it is too large Load Diff

View File

@ -1,153 +1,149 @@
/*
DSP M56001 emulation
Core of DSP emulation
DSP56300 emulation
(C) 2003-2008 ARAnyM developer team
Based on Hatari DSP M56001 emulation
(C) 2003-2008 ARAnyM developer team
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifndef DSP_CORE_H
#define DSP_CORE_H
#include <SDL.h>
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
#define DSP_RAMSIZE 32768
/* Host port, CPU side */
#define CPU_HOST_ICR 0x00
#define CPU_HOST_CVR 0x01
#define CPU_HOST_ISR 0x02
#define CPU_HOST_IVR 0x03
#define CPU_HOST_TRX0 0x04
#define CPU_HOST_TRXH 0x05
#define CPU_HOST_TRXM 0x06
#define CPU_HOST_TRXL 0x07
#define CPU_HOST_RX0 0x04
#define CPU_HOST_RXH 0x05
#define CPU_HOST_RXM 0x06
#define CPU_HOST_RXL 0x07
#define CPU_HOST_TXH 0x09
#define CPU_HOST_TXM 0x0a
#define CPU_HOST_TXL 0x0b
#define CPU_HOST_ICR 0x00
#define CPU_HOST_CVR 0x01
#define CPU_HOST_ISR 0x02
#define CPU_HOST_IVR 0x03
#define CPU_HOST_TRX0 0x04
#define CPU_HOST_TRXH 0x05
#define CPU_HOST_TRXM 0x06
#define CPU_HOST_TRXL 0x07
#define CPU_HOST_RX0 0x04
#define CPU_HOST_RXH 0x05
#define CPU_HOST_RXM 0x06
#define CPU_HOST_RXL 0x07
#define CPU_HOST_TXH 0x09
#define CPU_HOST_TXM 0x0a
#define CPU_HOST_TXL 0x0b
#define CPU_HOST_ICR_RREQ 0x00
#define CPU_HOST_ICR_TREQ 0x01
#define CPU_HOST_ICR_HF0 0x03
#define CPU_HOST_ICR_HF1 0x04
#define CPU_HOST_ICR_HM0 0x05
#define CPU_HOST_ICR_HM1 0x06
#define CPU_HOST_ICR_INIT 0x07
#define CPU_HOST_ICR_RREQ 0x00
#define CPU_HOST_ICR_TREQ 0x01
#define CPU_HOST_ICR_HF0 0x03
#define CPU_HOST_ICR_HF1 0x04
#define CPU_HOST_ICR_HM0 0x05
#define CPU_HOST_ICR_HM1 0x06
#define CPU_HOST_ICR_INIT 0x07
#define CPU_HOST_CVR_HC 0x07
#define CPU_HOST_CVR_HC 0x07
#define CPU_HOST_ISR_RXDF 0x00
#define CPU_HOST_ISR_TXDE 0x01
#define CPU_HOST_ISR_TRDY 0x02
#define CPU_HOST_ISR_HF2 0x03
#define CPU_HOST_ISR_HF3 0x04
#define CPU_HOST_ISR_DMA 0x06
#define CPU_HOST_ISR_HREQ 0x07
#define CPU_HOST_ISR_RXDF 0x00
#define CPU_HOST_ISR_TXDE 0x01
#define CPU_HOST_ISR_TRDY 0x02
#define CPU_HOST_ISR_HF2 0x03
#define CPU_HOST_ISR_HF3 0x04
#define CPU_HOST_ISR_DMA 0x06
#define CPU_HOST_ISR_HREQ 0x07
/* Host port, DSP side, DSP addresses are 0xffc0+value */
#define DSP_PBC 0x20 /* Port B control register */
#define DSP_PCC 0x21 /* Port C control register */
#define DSP_PBDDR 0x22 /* Port B data direction register */
#define DSP_PCDDR 0x23 /* Port C data direction register */
#define DSP_PBD 0x24 /* Port B data register */
#define DSP_PCD 0x25 /* Port C data register */
#define DSP_HOST_HCR 0x28 /* Host control register */
#define DSP_HOST_HSR 0x29 /* Host status register */
#define DSP_HOST_HRX 0x2b /* Host receive register */
#define DSP_HOST_HTX 0x2b /* Host transmit register */
#define DSP_SSI_CRA 0x2c /* Ssi control register A */
#define DSP_SSI_CRB 0x2d /* Ssi control register B */
#define DSP_SSI_SR 0x2e /* Ssi status register */
#define DSP_SSI_TSR 0x2e /* Ssi time slot register */
#define DSP_SSI_RX 0x2f /* Ssi receive register */
#define DSP_SSI_TX 0x2f /* Ssi transmit register */
#define DSP_BCR 0x3e /* Port A bus control register */
#define DSP_IPR 0x3f /* Interrupt priority register */
#define DSP_PBC 0x20 /* Port B control register */
#define DSP_PCC 0x21 /* Port C control register */
#define DSP_PBDDR 0x22 /* Port B data direction register */
#define DSP_PCDDR 0x23 /* Port C data direction register */
#define DSP_PBD 0x24 /* Port B data register */
#define DSP_PCD 0x25 /* Port C data register */
#define DSP_HOST_HCR 0x28 /* Host control register */
#define DSP_HOST_HSR 0x29 /* Host status register */
#define DSP_HOST_HRX 0x2b /* Host receive register */
#define DSP_HOST_HTX 0x2b /* Host transmit register */
#define DSP_SSI_CRA 0x2c /* Ssi control register A */
#define DSP_SSI_CRB 0x2d /* Ssi control register B */
#define DSP_SSI_SR 0x2e /* Ssi status register */
#define DSP_SSI_TSR 0x2e /* Ssi time slot register */
#define DSP_SSI_RX 0x2f /* Ssi receive register */
#define DSP_SSI_TX 0x2f /* Ssi transmit register */
#define DSP_BCR 0x3e /* Port A bus control register */
#define DSP_IPR 0x3f /* Interrupt priority register */
#define DSP_HOST_HCR_HRIE 0x00
#define DSP_HOST_HCR_HTIE 0x01
#define DSP_HOST_HCR_HCIE 0x02
#define DSP_HOST_HCR_HF2 0x03
#define DSP_HOST_HCR_HF3 0x04
#define DSP_HOST_HCR_HRIE 0x00
#define DSP_HOST_HCR_HTIE 0x01
#define DSP_HOST_HCR_HCIE 0x02
#define DSP_HOST_HCR_HF2 0x03
#define DSP_HOST_HCR_HF3 0x04
#define DSP_HOST_HSR_HRDF 0x00
#define DSP_HOST_HSR_HTDE 0x01
#define DSP_HOST_HSR_HCP 0x02
#define DSP_HOST_HSR_HF0 0x03
#define DSP_HOST_HSR_HF1 0x04
#define DSP_HOST_HSR_DMA 0x07
#define DSP_HOST_HSR_HRDF 0x00
#define DSP_HOST_HSR_HTDE 0x01
#define DSP_HOST_HSR_HCP 0x02
#define DSP_HOST_HSR_HF0 0x03
#define DSP_HOST_HSR_HF1 0x04
#define DSP_HOST_HSR_DMA 0x07
#define DSP_SSI_CRA_DC0 0x8
#define DSP_SSI_CRA_DC1 0x9
#define DSP_SSI_CRA_DC2 0xa
#define DSP_SSI_CRA_DC3 0xb
#define DSP_SSI_CRA_DC4 0xc
#define DSP_SSI_CRA_WL0 0xd
#define DSP_SSI_CRA_WL1 0xe
#define DSP_SSI_CRA_DC0 0x8
#define DSP_SSI_CRA_DC1 0x9
#define DSP_SSI_CRA_DC2 0xa
#define DSP_SSI_CRA_DC3 0xb
#define DSP_SSI_CRA_DC4 0xc
#define DSP_SSI_CRA_WL0 0xd
#define DSP_SSI_CRA_WL1 0xe
#define DSP_SSI_CRB_OF0 0x0
#define DSP_SSI_CRB_OF1 0x1
#define DSP_SSI_CRB_SCD0 0x2
#define DSP_SSI_CRB_SCD1 0x3
#define DSP_SSI_CRB_SCD2 0x4
#define DSP_SSI_CRB_SCKD 0x5
#define DSP_SSI_CRB_SHFD 0x6
#define DSP_SSI_CRB_FSL0 0x7
#define DSP_SSI_CRB_FSL1 0x8
#define DSP_SSI_CRB_SYN 0x9
#define DSP_SSI_CRB_GCK 0xa
#define DSP_SSI_CRB_MOD 0xb
#define DSP_SSI_CRB_TE 0xc
#define DSP_SSI_CRB_RE 0xd
#define DSP_SSI_CRB_TIE 0xe
#define DSP_SSI_CRB_RIE 0xf
#define DSP_SSI_CRB_OF0 0x0
#define DSP_SSI_CRB_OF1 0x1
#define DSP_SSI_CRB_SCD0 0x2
#define DSP_SSI_CRB_SCD1 0x3
#define DSP_SSI_CRB_SCD2 0x4
#define DSP_SSI_CRB_SCKD 0x5
#define DSP_SSI_CRB_SHFD 0x6
#define DSP_SSI_CRB_FSL0 0x7
#define DSP_SSI_CRB_FSL1 0x8
#define DSP_SSI_CRB_SYN 0x9
#define DSP_SSI_CRB_GCK 0xa
#define DSP_SSI_CRB_MOD 0xb
#define DSP_SSI_CRB_TE 0xc
#define DSP_SSI_CRB_RE 0xd
#define DSP_SSI_CRB_TIE 0xe
#define DSP_SSI_CRB_RIE 0xf
#define DSP_SSI_SR_IF0 0x0
#define DSP_SSI_SR_IF1 0x1
#define DSP_SSI_SR_TFS 0x2
#define DSP_SSI_SR_RFS 0x3
#define DSP_SSI_SR_TUE 0x4
#define DSP_SSI_SR_ROE 0x5
#define DSP_SSI_SR_TDE 0x6
#define DSP_SSI_SR_RDF 0x7
#define DSP_SSI_SR_IF0 0x0
#define DSP_SSI_SR_IF1 0x1
#define DSP_SSI_SR_TFS 0x2
#define DSP_SSI_SR_RFS 0x3
#define DSP_SSI_SR_TUE 0x4
#define DSP_SSI_SR_ROE 0x5
#define DSP_SSI_SR_TDE 0x6
#define DSP_SSI_SR_RDF 0x7
#define DSP_INTERRUPT_NONE 0x0
#define DSP_INTERRUPT_DISABLED 0x1
#define DSP_INTERRUPT_LONG 0x2
#define DSP_INTER_RESET 0x0
#define DSP_INTER_ILLEGAL 0x1
#define DSP_INTER_STACK_ERROR 0x2
#define DSP_INTER_TRACE 0x3
#define DSP_INTER_SWI 0x4
#define DSP_INTER_HOST_COMMAND 0x5
#define DSP_INTER_HOST_RCV_DATA 0x6
#define DSP_INTER_HOST_TRX_DATA 0x7
#define DSP_INTER_SSI_RCV_DATA_E 0x8
#define DSP_INTER_SSI_RCV_DATA 0x9
#define DSP_INTER_SSI_TRX_DATA_E 0xa
#define DSP_INTER_SSI_TRX_DATA 0xb
#define DSP_INTER_RESET 0x0
#define DSP_INTER_ILLEGAL 0x1
#define DSP_INTER_STACK_ERROR 0x2
#define DSP_INTER_TRACE 0x3
#define DSP_INTER_SWI 0x4
#define DSP_INTER_HOST_COMMAND 0x5
#define DSP_INTER_HOST_RCV_DATA 0x6
#define DSP_INTER_HOST_TRX_DATA 0x7
#define DSP_INTER_SSI_RCV_DATA_E 0x8
#define DSP_INTER_SSI_RCV_DATA 0x9
#define DSP_INTER_SSI_TRX_DATA_E 0xa
#define DSP_INTER_SSI_TRX_DATA 0xb
typedef struct dsp_core_ssi_s dsp_core_ssi_t;
@ -155,89 +151,89 @@ typedef struct dsp_core_s dsp_core_t;
typedef struct dsp_interrupt_s dsp_interrupt_t;
struct dsp_core_ssi_s {
Uint16 cra_word_length;
Uint32 cra_word_mask;
Uint16 cra_frame_rate_divider;
uint16_t cra_word_length;
uint32_t cra_word_mask;
uint16_t cra_frame_rate_divider;
Uint16 crb_src_clock;
Uint16 crb_shifter;
Uint16 crb_synchro;
Uint16 crb_mode;
Uint16 crb_te;
Uint16 crb_re;
Uint16 crb_tie;
Uint16 crb_rie;
uint16_t crb_src_clock;
uint16_t crb_shifter;
uint16_t crb_synchro;
uint16_t crb_mode;
uint16_t crb_te;
uint16_t crb_re;
uint16_t crb_tie;
uint16_t crb_rie;
Uint32 TX;
Uint32 RX;
Uint32 transmit_value; /* DSP Transmit --> SSI */
Uint32 received_value; /* DSP Receive --> SSI */
Uint16 waitFrameTX;
Uint16 waitFrameRX;
Uint32 dspPlay_handshakeMode_frame;
uint32_t TX;
uint32_t RX;
uint32_t transmit_value; /* DSP Transmit --> SSI */
uint32_t received_value; /* DSP Receive --> SSI */
uint16_t waitFrameTX;
uint16_t waitFrameRX;
uint32_t dspPlay_handshakeMode_frame;
};
struct dsp_interrupt_s {
const Uint16 inter;
const Uint16 vectorAddr;
const Uint16 periph;
const char *name;
const uint16_t inter;
const uint16_t vectorAddr;
const uint16_t periph;
const char *name;
};
struct dsp_core_s {
/* DSP executing instructions ? */
volatile int running;
/* DSP instruction Cycle counter */
Uint16 instr_cycle;
/* DSP executing instructions ? */
int running;
/* DSP instruction Cycle counter */
uint16_t instr_cycle;
/* Registers */
Uint16 pc;
Uint32 registers[64];
/* Registers */
uint16_t pc;
uint32_t registers[64];
/* stack[0=ssh], stack[1=ssl] */
Uint16 stack[2][16];
/* stack[0=ssh], stack[1=ssl] */
uint16_t stack[2][16];
/* External ram[] (mapped to p:) */
Uint32 ramext[DSP_RAMSIZE];
/* External ram[] (mapped to p:) */
uint32_t ramext[DSP_RAMSIZE];
/* rom[0] is x:, rom[1] is y: */
Uint32 rom[2][512];
/* rom[0] is x:, rom[1] is y: */
uint32_t rom[2][512];
/* Internal ram[0] is x:, ram[1] is y:, ram[2] is p: */
Uint32 ramint[3][512];
/* Internal ram[0] is x:, ram[1] is y:, ram[2] is p: */
uint32_t ramint[3][512];
/* peripheral space, [x|y]:0xffc0-0xffff */
volatile Uint32 periph[2][64];
volatile Uint32 dsp_host_htx;
volatile Uint32 dsp_host_rtx;
Uint16 dsp_host_isr_HREQ;
/* peripheral space, [x|y]:0xffc0-0xffff */
uint32_t periph[2][64];
uint32_t dsp_host_htx;
uint32_t dsp_host_rtx;
uint16_t dsp_host_isr_HREQ;
/* host port, CPU side */
volatile Uint8 hostport[12];
/* host port, CPU side */
uint8_t hostport[12];
/* SSI */
dsp_core_ssi_t ssi;
/* SSI */
dsp_core_ssi_t ssi;
/* Misc */
Uint32 loop_rep; /* executing rep ? */
Uint32 pc_on_rep; /* True if PC is on REP instruction */
/* Misc */
uint32_t loop_rep; /* executing rep ? */
uint32_t pc_on_rep; /* True if PC is on REP instruction */
/* For bootstrap routine */
Uint16 bootstrap_pos;
/* For bootstrap routine */
uint16_t bootstrap_pos;
/* Interruptions */
Uint16 interrupt_state; /* NONE, FAST or LONG interrupt */
Uint16 interrupt_instr_fetch; /* vector of the current interrupt */
Uint16 interrupt_save_pc; /* save next pc value before interrupt */
Uint16 interrupt_counter; /* count number of pending interrupts */
Uint16 interrupt_IplToRaise; /* save the IPL level to save in the SR register */
Uint16 interrupt_pipeline_count; /* used to prefetch correctly the 2 inter instructions */
Sint16 interrupt_ipl[12]; /* store the current IPL for each interrupt */
Uint16 interrupt_isPending[12]; /* store if interrupt is pending for each interrupt */
/* 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 */
};
@ -245,31 +241,27 @@ struct dsp_core_s {
extern dsp_core_t dsp_core;
/* Emulator call these to init/stop/reset DSP emulation */
extern void dsp_core_init(void (*host_interrupt)(void));
extern void dsp_core_shutdown(void);
extern void dsp_core_reset(void);
void dsp_core_init(void (*host_interrupt)(void));
void dsp_core_shutdown(void);
void dsp_core_reset(void);
/* host port read/write by emulator, addr is 0-7, not 0xffa200-0xffa207 */
extern Uint8 dsp_core_read_host(int addr);
extern void dsp_core_write_host(int addr, Uint8 value);
uint8_t dsp_core_read_host(int addr);
void dsp_core_write_host(int addr, uint8_t value);
/* dsp_cpu call these to read/write host port */
extern void dsp_core_hostport_dspread(void);
extern void dsp_core_hostport_dspwrite(void);
void dsp_core_hostport_dspread(void);
void dsp_core_hostport_dspwrite(void);
/* dsp_cpu call these to read/write/configure SSI port */
extern void dsp_core_ssi_configure(Uint32 address, Uint32 value);
extern void dsp_core_ssi_writeTX(Uint32 value);
extern void dsp_core_ssi_writeTSR(void);
extern Uint32 dsp_core_ssi_readRX(void);
extern void dsp_core_ssi_Receive_SC0(void);
extern void dsp_core_ssi_Receive_SC1(Uint32 value);
extern void dsp_core_ssi_Receive_SC2(Uint32 value);
extern void dsp_core_ssi_Receive_SCK(void);
extern void dsp_core_setPortCDataRegister(Uint32 value);
#ifdef __cplusplus
}
#endif
void dsp_core_ssi_configure(uint32_t address, uint32_t value);
void dsp_core_ssi_writeTX(uint32_t value);
void dsp_core_ssi_writeTSR(void);
uint32_t dsp_core_ssi_readRX(void);
void dsp_core_ssi_Receive_SC0(void);
void dsp_core_ssi_Receive_SC1(uint32_t value);
void dsp_core_ssi_Receive_SC2(uint32_t value);
void dsp_core_ssi_Receive_SCK(void);
void dsp_core_setPortCDataRegister(uint32_t value);
#endif /* DSP_CORE_H */

File diff suppressed because it is too large Load Diff

View File

@ -1,8 +1,8 @@
/*
DSP M56001 emulation
Instructions interpreter, execution thread
DSP56300 emulator
(C) 2003-2008 ARAnyM developer team
Based on Hatari DSP M56001 emulation
(C) 2003-2008 ARAnyM developer team
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@ -22,9 +22,8 @@
#ifndef DSP_CPU_H
#define DSP_CPU_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdio.h>
#include <stdint.h>
/* Defines */
#define BITMASK(x) ((1<<(x))-1)
@ -111,15 +110,11 @@ extern "C" {
#define DSP_SPACE_P 0x02
/* Functions */
extern void dsp56k_init_cpu(void); /* Set dsp_core to use */
extern void dsp56k_execute_instruction(void); /* Execute 1 instruction */
extern Uint16 dsp56k_execute_one_disasm_instruction(FILE *out, Uint16 pc); /* Execute 1 instruction in disasm mode */
void dsp56k_init_cpu(void); /* Set dsp_core to use */
void dsp56k_execute_instruction(void); /* Execute 1 instruction */
uint16_t dsp56k_execute_one_disasm_instruction(FILE *out, uint16_t pc); /* Execute 1 instruction in disasm mode */
/* Interrupt relative functions */
void dsp_add_interrupt(Uint16 inter);
#ifdef __cplusplus
}
#endif
void dsp_add_interrupt(uint16_t inter);
#endif /* DSP_CPU_H */

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
/*
DSP M56001 emulation
Disassembler
DSP56300 Disassembler
Based on Hatari DSP M56001 Disassembler
(C) 2003-2008 ARAnyM developer team
This program is free software; you can redistribute it and/or modify
@ -22,26 +22,18 @@
#ifndef DSP_DISASM_H
#define DSP_DISASM_H
#ifdef __cplusplus
extern "C" {
#endif
typedef enum {
DSP_TRACE_MODE,
DSP_DISASM_MODE
} dsp_trace_disasm_t;
/* Functions */
extern void dsp56k_disasm_init(void);
extern Uint16 dsp56k_disasm(dsp_trace_disasm_t value);
extern const char* dsp56k_getInstructionText(void);
void dsp56k_disasm_init(void);
uint16_t dsp56k_disasm(dsp_trace_disasm_t value);
const char* dsp56k_get_instruction_text(void);
/* Registers change */
extern void dsp56k_disasm_reg_save(void);
extern void dsp56k_disasm_reg_compare(void);
#ifdef __cplusplus
}
#endif
void dsp56k_disasm_reg_save(void);
void dsp56k_disasm_reg_compare(void);
#endif /* DSP_DISASM_H */