summaryrefslogtreecommitdiff
path: root/emulators/gxemul/files/patch-src_devices_dev_wdc.cc
diff options
context:
space:
mode:
Diffstat (limited to 'emulators/gxemul/files/patch-src_devices_dev_wdc.cc')
-rw-r--r--emulators/gxemul/files/patch-src_devices_dev_wdc.cc32
1 files changed, 32 insertions, 0 deletions
diff --git a/emulators/gxemul/files/patch-src_devices_dev_wdc.cc b/emulators/gxemul/files/patch-src_devices_dev_wdc.cc
new file mode 100644
index 000000000000..752e7f318aae
--- /dev/null
+++ b/emulators/gxemul/files/patch-src_devices_dev_wdc.cc
@@ -0,0 +1,32 @@
+--- src/devices/dev_wdc.cc.orig 2013-06-27 18:10:50.000000000 -0700
++++ src/devices/dev_wdc.cc 2013-06-27 18:11:13.000000000 -0700
+@@ -274,12 +274,12 @@
+ + (int64_t)d->head * d->sectors_per_track[d->drive] +
+ (int64_t)d->heads[d->drive] * d->sectors_per_track[d->drive] * cyl);
+
+-#if 0
++#if 1
+ /* LBA: */
+ if (d->lba)
+ offset = 512 * (((d->head & 0xf) << 24) + (cyl << 8)
+ + d->sector);
+- printf("WDC read from offset %lli\n", (long long)offset);
++ debug("WDC read from offset %lli\n", (long long)offset);
+ #endif
+
+ while (count > 0) {
+@@ -320,12 +320,12 @@
+ uint64_t offset = 512 * (d->sector - 1
+ + (int64_t)d->head * d->sectors_per_track[d->drive] +
+ (int64_t)d->heads[d->drive] * d->sectors_per_track[d->drive] * cyl);
+-#if 0
++#if 1
+ /* LBA: */
+ if (d->lba)
+ offset = 512 * (((d->head & 0xf) << 24) +
+ (cyl << 8) + d->sector);
+- printf("WDC write to offset %lli\n", (long long)offset);
++ debug("WDC write to offset %lli\n", (long long)offset);
+ #endif
+
+ d->write_in_progress = d->cur_command;