diff options
author | mishka <mishka@pkgsrc.org> | 2009-03-20 12:09:38 +0000 |
---|---|---|
committer | mishka <mishka@pkgsrc.org> | 2009-03-20 12:09:38 +0000 |
commit | 8c6b0ed3994ead1e8c8871bffdb4cd3dffa3f370 (patch) | |
tree | de35abc56a6b26ec559da25abd02069239f8598a /emulators | |
parent | ddbecb1f47177dfc864cf4fc9d2b2754ddabfeae (diff) | |
download | pkgsrc-8c6b0ed3994ead1e8c8871bffdb4cd3dffa3f370.tar.gz |
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.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/bochs/patches/patch-af | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/emulators/bochs/patches/patch-af b/emulators/bochs/patches/patch-af new file mode 100644 index 00000000000..ccd774aa277 --- /dev/null +++ b/emulators/bochs/patches/patch-af @@ -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); |