--- np2/i386c/ia32/cpu_mem.c 2005/03/05 16:47:04 1.19 +++ np2/i386c/ia32/cpu_mem.c 2005/03/12 12:32:54 1.21 @@ -1,4 +1,4 @@ -/* $Id: cpu_mem.c,v 1.19 2005/03/05 16:47:04 monaka Exp $ */ +/* $Id: cpu_mem.c,v 1.21 2005/03/12 12:32:54 monaka Exp $ */ /* * Copyright (c) 2002-2004 NONAKA Kimihiro @@ -12,8 +12,6 @@ * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. - * 3. The name of the author may not be used to endorse or promote products - * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES @@ -401,7 +399,7 @@ cpu_codefetch_d(UINT32 offset) /* * additional physical address memory access functions */ -UINT64 +UINT64 MEMCALL cpu_memoryread_q(UINT32 address) { UINT64 value; @@ -412,7 +410,7 @@ cpu_memoryread_q(UINT32 address) return value; } -REG80 +REG80 MEMCALL cpu_memoryread_f(UINT32 address) { REG80 value; @@ -424,7 +422,7 @@ cpu_memoryread_f(UINT32 address) return value; } -void +void MEMCALL cpu_memorywrite_q(UINT32 address, UINT64 value) { @@ -432,7 +430,7 @@ cpu_memorywrite_q(UINT32 address, UINT64 cpu_memorywrite_d(address + 4, (UINT32)(value >> 32)); } -void +void MEMCALL cpu_memorywrite_f(UINT32 address, const REG80 *value) { UINT i;