mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
avoid error if too many sectors in non LBA mode
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@746 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user