1/*****************************************************************************\
2 Snes9x - Portable Super Nintendo Entertainment System (TM) emulator.
3 This file is licensed under the Snes9x License.
4 For further information, consult the LICENSE file in the root directory.
5\*****************************************************************************/
6
7#include "snes9x.h"
8#include "seta.h"
9
10uint8 (*GetSETA) (uint32) = &S9xGetST010;
11void (*SetSETA) (uint32, uint8) = &S9xSetST010;
12
13
14uint8 S9xGetSetaDSP (uint32 Address)
15{
16 return (GetSETA(Address));
17}
18
19void S9xSetSetaDSP (uint8 Byte, uint32 Address)
20{
21 SetSETA (Address, Byte);
22}
23