Changeset 100456 in vbox for trunk/include
- Timestamp:
- Jul 10, 2023 1:46:21 PM (17 months ago)
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/bios.h
r98103 r100456 42 42 #endif 43 43 44 /** The BIOS shutdown port. 45 * You write "Shutdown" byte by byte to shutdown the VM. 44 /** The BIOS control port. 45 * Write "Shutdown" byte by byte to shutdown the VM. 46 * Write "Bootfail" to indicate no bootable device. 47 * Write "Prochalt" to execute alternative CPU halt. 46 48 * @sa VBOX_BIOS_OLD_SHUTDOWN_PORT */ 47 49 #define VBOX_BIOS_SHUTDOWN_PORT 0x040f 48 50 51 /** Write this value to shut down VM. */ 52 #define VBOX_BIOS_CTL_SHUTDOWN 0x8001 53 /** Write this value to report boot failure. */ 54 #define VBOX_BIOS_CTL_BOOTFAIL 0x8002 55 /** Write this value to halt CPU. */ 56 #define VBOX_BIOS_CTL_PROCHALT 0x8003 57 49 58 /** The old shutdown port number. 50 59 * Older versions of VirtualBox uses this as does Bochs. 51 * @sa VBOX_BIOS_ SHUTDOWN_PORT */60 * @sa VBOX_BIOS_CONTROL_PORT */ 52 61 #define VBOX_BIOS_OLD_SHUTDOWN_PORT 0x8900 53 62 -
trunk/include/VBox/bios.mac
r98103 r100456 41 41 %endif 42 42 %define VBOX_BIOS_SHUTDOWN_PORT 0x040f 43 %define VBOX_BIOS_CTL_SHUTDOWN 0x8001 44 %define VBOX_BIOS_CTL_BOOTFAIL 0x8002 45 %define VBOX_BIOS_CTL_PROCHALT 0x8003 43 46 %define VBOX_BIOS_OLD_SHUTDOWN_PORT 0x8900 44 47 %endif
Note:
See TracChangeset
for help on using the changeset viewer.