mirror of
https://github.com/xcat2/xNBA.git
synced 2025-01-18 21:43:14 +00:00
Always increase number of BIOS drives when registering
This commit is contained in:
parent
b90d321dfb
commit
cd7e296cbe
@ -580,11 +580,9 @@ void register_int13_drive ( struct int13_drive *drive ) {
|
||||
get_real ( num_drives, BDA_SEG, BDA_NUM_DRIVES );
|
||||
if ( ! drive->drive )
|
||||
drive->drive = ( num_drives | 0x80 );
|
||||
num_drives++;
|
||||
if ( num_drives <= ( drive->drive & 0x7f ) )
|
||||
num_drives = ( ( drive->drive & 0x7f ) + 1 );
|
||||
|
||||
num_drives = 2;
|
||||
|
||||
put_real ( num_drives, BDA_SEG, BDA_NUM_DRIVES );
|
||||
|
||||
DBG ( "Registered INT13 drive %02x with C/H/S geometry %d/%d/%d\n",
|
||||
@ -612,6 +610,10 @@ void unregister_int13_drive ( struct int13_drive *drive ) {
|
||||
/* Remove from list of emulated drives */
|
||||
list_del ( &drive->list );
|
||||
|
||||
/* Should adjust BIOS drive count, but it's difficult to do so
|
||||
* reliably.
|
||||
*/
|
||||
|
||||
DBG ( "Unregistered INT13 drive %02x\n", drive->drive );
|
||||
|
||||
/* Unhook INT 13 vector if no more drives */
|
||||
|
Loading…
x
Reference in New Issue
Block a user