diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2010-03-20 17:53:40 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2010-03-20 17:53:40 -0400 |
commit | 7415270ed16175e443ac1b10205ccabbc964a309 (patch) | |
tree | ec7aaf744153161f581c2b6256bbd9659340e143 | |
parent | 9dc243e3fd1476af9e4c1044d741f8546da12cd7 (diff) | |
download | seabios-7415270ed16175e443ac1b10205ccabbc964a309.tar.gz |
Call to int1552 (from int1346) should set regs->dl.
-rw-r--r-- | src/disk.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -481,6 +481,7 @@ disk_1346(struct bregs *regs, struct drive_s *drive_g) struct bregs br; memset(&br, 0, sizeof(br)); br.ah = 0x52; + br.dl = regs->dl; call16_int(0x15, &br); if (br.ah || br.flags & F_CF) { |