Fix a typo (can be catched with 'debug' option enabled).

The fix is already in bochs repo (iodev/iodebug.h, v1.12),
but no new release was made yet.
This commit is contained in:
mishka 2009-03-20 12:09:38 +00:00
parent ddbecb1f47
commit 8c6b0ed399

View file

@ -0,0 +1,11 @@
--- iodev/iodebug.h.orig 2008-05-01 20:46:58.000000000 +0000
+++ iodev/iodebug.h 2009-03-20 11:58:42.000000000 +0000
@@ -18,7 +18,7 @@
virtual void init(void);
virtual void reset (unsigned type) {}
static void mem_write(BX_CPU_C *cpu, bx_phy_address addr, unsigned len, void *data);
- static void mem_read(BX_CPU_C *cpu, bx_phy_addressu addr, unsigned len, void *data);
+ static void mem_read(BX_CPU_C *cpu, bx_phy_address addr, unsigned len, void *data);
private:
static Bit32u read_handler(void *this_ptr, Bit32u address, unsigned io_len);