picodrive/Pico/carthw/svp/Memory.c
notaz f53f286a8b SVP stubs
git-svn-id: file:///home/notaz/opt/svn/PicoDrive@317 be3aeb3a-fb24-0410-a615-afba39da0efa
2007-12-22 20:25:17 +00:00

16 lines
359 B
C

#include "../../PicoInt.h"
unsigned int PicoSVPRead16(unsigned int a, int realsize)
{
unsigned int d = 0;
elprintf(EL_UIO, "SVP r%i: [%06x] %04x @%06x", realsize, a&0xffffff, d, SekPc);
return d;
}
void PicoSVPWrite8(unsigned int a, unsigned int d, int realsize)
{
elprintf(EL_UIO, "SVP w%i: %06x, %08x @%06x", realsize, a&0xffffff, d, SekPc);
}