Displaying 2 results from an estimated 2 matches for "bios_int13".
Did you mean:
bios_int15
2009 Sep 12
1
[PATCH] Let MEMDISK honor the quiet append option
...ipment byte says count = %d, go with that\n",
+ bios_drives);
pptr->drivecnt = bios_drives;
}
}
@@ -1111,16 +1134,18 @@
}
/* Install the interrupt handlers */
- printf("old: int13 = %08x int15 = %08x int1e = %08x\n",
- rdz_32(BIOS_INT13), rdz_32(BIOS_INT15), rdz_32(BIOS_INT1E));
+ if (!quiet)
+ printf("old: int13 = %08x int15 = %08x int1e = %08x\n",
+ rdz_32(BIOS_INT13), rdz_32(BIOS_INT15), rdz_32(BIOS_INT1E));
wrz_32(BIOS_INT13, driverptr + hptr->int13_offs);
wrz_32(BIOS_INT15, driverptr...
2006 Mar 10
2
unload memdisk+FreeDOS => local boot
Sensei H. Peter Anvin,
I have successfully modified/enhanced memdisk so that one can chainload a
local operating system after running diskless FreeDOS.
I would like your advice regarding the appropriate interface for invoking
this functionality.
In addition, I would like to know what steps to take so that you feel
comfortable considering including this in the standard syslinux
distribution.