# HG changeset patch # User nkeynes # Date 1142253426 0 # Node ID 5a22f3699b67cfdb9ed5c48d7100b76296341ac4 # Parent 995e42e96cc9ea3e4f92e41083777a86970bfe59 Add sh4addr_t type, need to start propagating it instead of uint32_t --- a/src/mem.h Wed Feb 15 13:11:50 2006 +0000 +++ b/src/mem.h Mon Mar 13 12:37:06 2006 +0000 @@ -1,5 +1,5 @@ /** - * $Id: mem.h,v 1.6 2005-12-26 11:47:12 nkeynes Exp $ + * $Id: mem.h,v 1.7 2006-03-13 12:37:06 nkeynes Exp $ * * mem is responsible for creating and maintaining the overall system memory * map, as visible from the SH4 processor. (Note the ARM has a different map) @@ -83,6 +83,8 @@ void mem_delete_watch( watch_point_t watch ); watch_point_t mem_is_watched( uint32_t addr, int size, int op ); +typedef uint32_t sh4addr_t; + extern char **page_map; #ifdef __cplusplus }