Search
lxdream.org :: lxdream/src/mem.h :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename src/mem.h
changeset 669:ab344e42bca9
prev586:2a3ba82cf243
next736:a02d1475ccfd
author nkeynes
date Sun Jun 01 00:47:45 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change First cut of the Cocoa GUI implementation
file annotate diff log raw
1.1 --- a/src/mem.h Tue Jan 15 20:50:23 2008 +0000
1.2 +++ b/src/mem.h Sun Jun 01 00:47:45 2008 +0000
1.3 @@ -69,6 +69,13 @@
1.4 void mem_copy_from_sh4( sh4ptr_t dest, sh4addr_t src, size_t count );
1.5 void mem_copy_to_sh4( sh4addr_t dest, sh4ptr_t src, size_t count );
1.6
1.7 +/**
1.8 + * Write a long value directly to SH4-addressable memory.
1.9 + * @param dest a valid, writable physical memory address, relative to the SH4
1.10 + * @param value the value to write.
1.11 + */
1.12 +void mem_write_long( sh4addr_t dest, uint32_t value );
1.13 +
1.14 #define ENABLE_DEBUG_MODE 1
1.15
1.16 typedef enum { BREAK_NONE=0, BREAK_ONESHOT=1, BREAK_KEEP=2 } breakpoint_type_t;
.