diff options
author | 2013-02-11 15:41:23 +0000 | |
---|---|---|
committer | 2013-02-11 15:41:23 +0000 | |
commit | 1a0c7eceeaa5838eff7ad6c1956c7ffb0d60a447 (patch) | |
tree | 49d41c5f8018f93bd6368893ae1ab1015af3f7d4 /src/emu/machine/scudsp.h | |
parent | da5163f0a7bb354966ba51a72098f365da1f86a7 (diff) |
Moved some of the saturn code from mame/ into emu/ and made saturn.c & stv.c separately compilable. Still needs work before saturn.c can be moved to mess/ [smf]
Diffstat (limited to 'src/emu/machine/scudsp.h')
-rw-r--r-- | src/emu/machine/scudsp.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/emu/machine/scudsp.h b/src/emu/machine/scudsp.h new file mode 100644 index 00000000000..39127657ad7 --- /dev/null +++ b/src/emu/machine/scudsp.h @@ -0,0 +1,9 @@ +/*SCU DSP stuff*/ + +void dsp_prg_ctrl_w(address_space &space, UINT32 data); +void dsp_prg_data(UINT32 data); +void dsp_ram_addr_ctrl(UINT32 data); +void dsp_ram_addr_w(UINT32 data); +UINT32 dsp_prg_ctrl_r(address_space &space); +UINT32 dsp_ram_addr_r(void); +void dsp_execute_program(address_space &dmaspace); |