SVP stubs
[picodrive.git] / Pico / carthw / svp / Memory.c
1 #include "../../PicoInt.h"
2
3 unsigned int PicoSVPRead16(unsigned int a, int realsize)
4 {
5   unsigned int d = 0;
6
7   elprintf(EL_UIO, "SVP r%i: [%06x] %04x @%06x", realsize, a&0xffffff, d, SekPc);
8
9   return d;
10 }
11
12 void PicoSVPWrite8(unsigned int a, unsigned int d, int realsize)
13 {
14   elprintf(EL_UIO, "SVP w%i: %06x, %08x @%06x", realsize, a&0xffffff, d, SekPc);
15 }
16