X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=pico%2Fmisc_arm.s;h=260094ec9d6ca1f6c8b0d4d7adca8ed5687cb636;hb=bee555aeac5dae1cd0567606eb6d42cd1ca0ddc4;hp=1ef2e58fca414bc726319ff7b91a636a8f82e8fc;hpb=1cfc5cc4ce06642b9bc45ca3b9d32793718e9455;p=picodrive.git diff --git a/pico/misc_arm.s b/pico/misc_arm.s index 1ef2e58..260094e 100644 --- a/pico/misc_arm.s +++ b/pico/misc_arm.s @@ -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