comparison genesis.h @ 1649:b500e971da75

Allow closing VDP debug windows with the close button in the window title bar
author Michael Pavone <pavone@retrodev.com>
date Tue, 18 Dec 2018 19:58:00 -0800
parents 360d5bab199f
children 319d90025d50 5dacaef602a7
comparison
equal deleted inserted replaced
1647:5a662692c215 1649:b500e971da75
58 }; 58 };
59 59
60 #define RAM_WORDS 32 * 1024 60 #define RAM_WORDS 32 * 1024
61 #define Z80_RAM_BYTES 8 * 1024 61 #define Z80_RAM_BYTES 8 * 1024
62 62
63 uint16_t read_dma_value(uint32_t address);
64 m68k_context * sync_components(m68k_context *context, uint32_t address); 63 m68k_context * sync_components(m68k_context *context, uint32_t address);
65 genesis_context *alloc_config_genesis(void *rom, uint32_t rom_size, void *lock_on, uint32_t lock_on_size, uint32_t system_opts, uint8_t force_region); 64 genesis_context *alloc_config_genesis(void *rom, uint32_t rom_size, void *lock_on, uint32_t lock_on_size, uint32_t system_opts, uint8_t force_region);
66 void genesis_serialize(genesis_context *gen, serialize_buffer *buf, uint32_t m68k_pc); 65 void genesis_serialize(genesis_context *gen, serialize_buffer *buf, uint32_t m68k_pc);
67 void genesis_deserialize(deserialize_buffer *buf, genesis_context *gen); 66 void genesis_deserialize(deserialize_buffer *buf, genesis_context *gen);
68 67