aboutsummaryrefslogtreecommitdiff
path: root/source/seta.c
blob: c9ca72f3eaccd3e8fe8e189e5626ccfe406077d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "../copyright"

#include "seta.h"

void (*SetSETA)(uint32_t, uint8_t) = &S9xSetST010;
uint8_t(*GetSETA)(uint32_t) = &S9xGetST010;

uint8_t S9xGetSetaDSP(uint32_t Address)
{
   return GetSETA(Address);
}

void S9xSetSetaDSP(uint8_t Byte, uint32_t Address)
{
   SetSETA(Address, Byte);
}