X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Pico%2FMemoryCmn.c;h=996a5ae489810b16dbd7d623e39f963b1b2ddd66;hb=65ca3034d455b9934e7ff82813e3df49cf56cf87;hp=422ae2ec816c02c1850f6405dc3ebd8b2269d468;hpb=f53f286a8b48d19c65e83f90d00aa47e8e87c889;p=picodrive.git diff --git a/Pico/MemoryCmn.c b/Pico/MemoryCmn.c index 422ae2e..996a5ae 100644 --- a/Pico/MemoryCmn.c +++ b/Pico/MemoryCmn.c @@ -8,13 +8,6 @@ typedef unsigned int u32; #define UTYPES_DEFINED #endif -#ifdef _ASM_MEMORY_C -u32 OtherRead16End(u32 a, int realsize); -#endif -#ifdef _ASM_CD_MEMORY_C -static void OtherWrite8End(u32 a,u32 d,int realsize); -#endif - #ifndef _ASM_MEMORY_C static @@ -229,8 +222,6 @@ void OtherWrite16(u32 a,u32 d) } #endif - PicoWrite8Hook(a, d>>8, 16); - PicoWrite8Hook(a+1,d&0xff, 16); + PicoWrite16Hook(a, d, 16); } -