diff options
author | Michael Pavone <pavone@retrodev.com> | 2017-04-03 20:48:13 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2017-04-03 20:48:13 -0700 |
commit | 80a1591669c0d33075853af54ce8d3b9af615435 (patch) | |
tree | d3d249c0b749facd81c5235989a64090543f1f3d /backend.h | |
parent | f432cdc78abbb00074341824fd4b2b248f5d8a55 (diff) |
Improved printing of word at absolute address to support reading from all address types. Implemented support for printing the value pointed to by a register. Removed abuse of read_dma_value in internal debugger.
Diffstat (limited to 'backend.h')
-rw-r--r-- | backend.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -125,6 +125,7 @@ void log_address(cpu_options *opts, uint32_t address, char * format); code_ptr gen_mem_fun(cpu_options * opts, memmap_chunk const * memmap, uint32_t num_chunks, ftype fun_type, code_ptr *after_inc); void * get_native_pointer(uint32_t address, void ** mem_pointers, cpu_options * opts); +uint16_t read_word(uint32_t address, void **mem_pointers, cpu_options *opts, void *context); memmap_chunk const *find_map_chunk(uint32_t address, cpu_options *opts, uint16_t flags, uint32_t *size_sum); uint32_t chunk_size(cpu_options *opts, memmap_chunk const *chunk); uint32_t ram_size(cpu_options *opts); |