]> git.sesse.net Git - pistorm/blobdiff - config_file/config_file.h
Add Meson build files.
[pistorm] / config_file / config_file.h
index 889b0ac0b20cffe4755bf62bbfcced445f251058..cb82603b45b600361d1567f4be78ad2602762f1c 100644 (file)
@@ -18,6 +18,7 @@ typedef enum {
   MAPTYPE_RAM,
   MAPTYPE_REGISTER,
   MAPTYPE_RAM_NOALLOC,
+  MAPTYPE_RAM_WTC,
   MAPTYPE_NUM,
 } map_types;
 
@@ -107,6 +108,7 @@ int handle_mapped_read(struct emulator_config *cfg, unsigned int addr, unsigned
 int handle_mapped_write(struct emulator_config *cfg, unsigned int addr, unsigned int value, unsigned char type);
 int get_named_mapped_item(struct emulator_config *cfg, char *name);
 int get_mapped_item_by_address(struct emulator_config *cfg, uint32_t address);
+uint8_t *get_mapped_data_pointer_by_address(struct emulator_config *cfg, uint32_t address);
 void add_mapping(struct emulator_config *cfg, unsigned int type, unsigned int addr, unsigned int size, int mirr_addr, char *filename, char *map_id, unsigned int autodump);
 unsigned int get_int(char *str);
 #endif