summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--hw/ide.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/ide.c b/hw/ide.c
index f5efa8eb1e..0bef2888e3 100644
--- a/hw/ide.c
+++ b/hw/ide.c
@@ -517,7 +517,7 @@ static void ide_set_sector(IDEState *s, int64_t sector_num)
         r = sector_num % (s->heads * s->sectors);
         s->hcyl = cyl >> 8;
         s->lcyl = cyl;
-        s->select = (s->select & 0xf0) | (r / s->sectors);
+        s->select = (s->select & 0xf0) | ((r / s->sectors) & 0x0f);
         s->sector = (r % s->sectors) + 1;
     }
 }