Changeset 1694 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Mar 26, 2007 8:32:09 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/rombios.c
r1531 r1694 3744 3744 3745 3745 switch (regs.u.r8.ah) { 3746 #ifdef VBOX 3747 case 0x00: /* assorted functions */ 3748 if (regs.u.r8.al != 0xc0) 3749 goto undecoded; 3750 /* GRUB calls int15 with ax=0x00c0 to get the ROM configuration table, 3751 * which we don't support, but logging that event is annoying. */ 3752 SET_CF(); 3753 regs.u.r8.ah = UNSUPPORTED_FUNCTION; 3754 break; 3755 #endif 3746 3756 case 0x24: /* A20 Control */ 3747 3757 switch (regs.u.r8.al) { … … 4028 4038 break; 4029 4039 4040 #ifdef VBOX 4041 undecoded: 4042 #endif /* VBOX */ 4030 4043 default: 4031 4044 BX_INFO("*** int 15h function AX=%04x, BX=%04x not yet supported!\n",
Note:
See TracChangeset
for help on using the changeset viewer.