drop legacy save support
[picodrive.git] / pico / memory_amips.s
index 4ff400b..b11c2e2 100644 (file)
@@ -1,13 +1,13 @@
-# vim:filetype=mips
+#*
+#* memory handlers with banking support
+#* (C) notaz, 2007-2008
+#*
+#* This work is licensed under the terms of MAME license.
+#* See COPYING file in the top-level directory.
+#*
 
-# memory handlers with banking support for SSF II - The New Challengers
-# mostly based on Gens code
 # OUT OF DATE
 
-# (c) Copyright 2007, Grazvydas "notaz" Ignotas
-# All Rights Reserved
-
-
 .set noreorder
 .set noat
 
@@ -468,7 +468,7 @@ m_read8_vdp:
     or      $t0, $t1
     bnez    $t0, m_read_null # invalid address
     nop
-    j       PicoVideoRead8
+    j       PicoRead8_vdp
     nop
 
 m_read8_ram:
@@ -787,3 +787,4 @@ pwr_banking:
     jr      $ra
     nop
 
+# vim:filetype=mips