We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57512e7 commit 8126a21Copy full SHA for 8126a21
source/fdisk/pdiskio.c
@@ -116,6 +116,9 @@ void Check_For_INT13_Extensions( void )
116
r.h.ah = 0x41;
117
r.w.bx = 0x55aa;
118
r.h.dl = drive;
119
+ r.w.ds = 0x40; /* temporarly point to BDA to work around
120
+ Xi8088 and Book8088 BIOS bug, see
121
+ https://github.com/FDOS/kernel/issues/156 */
122
intr( 0x13, &r );
123
124
if ( ( ( r.w.flags & INTR_CF ) == 0 ) && ( r.w.bx == 0xaa55 ) ) {
0 commit comments