Search
lxdream.org :: lxdream/src/mem.h
lxdream 0.9.1
released Jun 29
Download Now
filename src/mem.h
changeset 510:41ce7a074f4e
prev502:c4ecae2b1b5e
next543:361ec0a70cf2
author nkeynes
date Wed Nov 14 10:21:33 2007 +0000 (16 years ago)
permissions -rw-r--r--
last change Use an explicit 32-bit type for region flags (save-file compatibility)
Ensure page map is fully cleared
view annotate diff log raw
     1 /**
     2  * $Id: mem.h,v 1.17 2007-11-14 10:21:33 nkeynes Exp $
     3  *
     4  * mem is responsible for creating and maintaining the overall system memory
     5  * map, as visible from the SH4 processor. (Note the ARM has a different map)
     6  *
     7  * Copyright (c) 2005 Nathan Keynes.
     8  *
     9  * This program is free software; you can redistribute it and/or modify
    10  * it under the terms of the GNU General Public License as published by
    11  * the Free Software Foundation; either version 2 of the License, or
    12  * (at your option) any later version.
    13  *
    14  * This program is distributed in the hope that it will be useful,
    15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
    16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    17  * GNU General Public License for more details.
    18  */
    20 #ifndef dream_mem_H
    21 #define dream_mem_H
    23 #include <stdint.h>
    24 #include "lxdream.h"
    26 #ifdef __cplusplus
    27 extern "C" {
    28 #endif
    30 typedef struct mem_region {
    31     uint32_t base;
    32     uint32_t size;
    33     const char *name;
    34     sh4ptr_t mem;
    35     uint32_t flags;
    36 } *mem_region_t;
    38 #define MAX_IO_REGIONS 24
    39 #define MAX_MEM_REGIONS 8
    41 #define MEM_REGION_BIOS "Bios ROM"
    42 #define MEM_REGION_MAIN "System RAM"
    43 #define MEM_REGION_VIDEO "Video RAM"
    44 #define MEM_REGION_AUDIO "Audio RAM"
    45 #define MEM_REGION_AUDIO_SCRATCH "Audio Scratch RAM"
    46 #define MEM_REGION_FLASH "System Flash"
    48 void *mem_create_ram_region( uint32_t base, uint32_t size, const char *name );
    49 void *mem_create_repeating_ram_region( uint32_t base, uint32_t size, const char *name, 
    50 				       uint32_t repeat_offset, uint32_t last_repeat );
    51 void *mem_load_rom( const gchar *name, uint32_t base, uint32_t size, uint32_t crc,
    52 		    const gchar *region_name );
    53 void *mem_alloc_pages( int n );
    54 sh4ptr_t mem_get_region( uint32_t addr );
    55 sh4ptr_t mem_get_region_by_name( const char *name );
    56 int mem_has_page( uint32_t addr );
    57 sh4ptr_t mem_get_page( uint32_t addr );
    58 int mem_load_block( const gchar *filename, uint32_t base, uint32_t size );
    59 int mem_save_block( const gchar *filename, uint32_t base, uint32_t size );
    60 void mem_set_trace( uint32_t addr, int flag );
    61 void mem_init( void );
    62 void mem_reset( void );
    63 void mem_copy_from_sh4( sh4ptr_t dest, sh4addr_t src, size_t count );
    64 void mem_copy_to_sh4( sh4addr_t dest, sh4ptr_t src, size_t count );
    66 #define ENABLE_DEBUG_MODE 1
    68 struct breakpoint_struct {
    69     uint32_t address;
    70     int type;
    71 };
    73 #define MAX_BREAKPOINTS 32
    74 #define BREAK_NONE 0
    75 #define BREAK_ONESHOT 1
    76 #define BREAK_KEEP 2
    78 #undef ENABLE_WATCH
    80 #define WATCH_WRITE 1
    81 #define WATCH_READ  2
    82 #define WATCH_EXEC  3  /* AKA Breakpoint :) */
    84 #define MEM_FLAG_ROM 4 /* Mem region is ROM-based */
    85 #define MEM_FLAG_RAM 6 
    87 typedef struct watch_point *watch_point_t;
    89 watch_point_t mem_new_watch( uint32_t start, uint32_t end, int flags );
    90 void mem_delete_watch( watch_point_t watch );
    91 watch_point_t mem_is_watched( uint32_t addr, int size, int op );
    93 extern sh4ptr_t *page_map;
    94 #ifdef __cplusplus
    95 }
    96 #endif
    97 #endif
.