get some gp2x stuff out of the way for others
[picodrive.git] / pico / misc_arm.s
index 1ef2e58..260094e 100644 (file)
@@ -1,12 +1,14 @@
-@ vim:filetype=armasm
-
-@ Generic memory routines.
-@ (c) Copyright 2007, Grazvydas "notaz" Ignotas
-
+/*
+ * Generic memory routines.
+ * (C) notaz, 2007-2008
+ *
+ * This work is licensed under the terms of MAME license.
+ * See COPYING file in the top-level directory.
+ */
 
-.global memcpy16 @ unsigned short *dest, unsigned short *src, int count
+.global pmemcpy16 @ unsigned short *dest, unsigned short *src, int count
 
-memcpy16:
+pmemcpy16:
     eor     r3, r0, r1
     tst     r3, #2
     bne     mcp16_cant_align
@@ -177,5 +179,4 @@ mst32_fin:
     ldmfd   sp!, {lr}
     bx      lr
 
-
-
+@ vim:filetype=armasm