SVP stubs
[picodrive.git] / Pico / carthw / svp / Memory.c
diff --git a/Pico/carthw/svp/Memory.c b/Pico/carthw/svp/Memory.c
new file mode 100644 (file)
index 0000000..0462d7f
--- /dev/null
@@ -0,0 +1,16 @@
+#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);
+}
+