Changeset 64369 in vbox for trunk/src/VBox/Devices/PC/BIOS
- Timestamp:
- Oct 22, 2016 6:19:08 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 111474
- Location:
- trunk/src/VBox/Devices/PC/BIOS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/logo.c
r63562 r64369 31 31 /** 32 32 * Set video mode (VGA). 33 * @param sNew video mode.33 * @param mode New video mode. 34 34 */ 35 35 void set_mode(uint8_t mode); … … 42 42 /** 43 43 * Set VESA video mode. 44 * @param sNew video mode.44 * @param mode New video mode. 45 45 */ 46 46 uint16_t vesa_set_mode(uint16_t mode); … … 52 52 /** 53 53 * Get current VESA video mode. 54 * @param sNew video mode.54 * @param mode New video mode. 55 55 */ 56 56 uint16_t vesa_get_mode(uint16_t __far *mode); -
trunk/src/VBox/Devices/PC/BIOS/scsi.c
r63562 r64369 304 304 * 305 305 * @returns status code. 306 * @param bios_dsk Pointer to disk request packet (in the 307 * EBDA). 306 * @param device_id ID of the device to access. 307 * @param cmdlen Length of the CDB. 308 * @param cmdbuf The CDB buffer. 309 * @param before How much to skip before reading into the provided data buffer. 310 * @param length How much to transfer. 311 * @param inout Read/Write direction indicator. 312 * @param buffer Data buffer to store the data from the device in. 308 313 */ 309 314 uint16_t scsi_cmd_packet(uint16_t device_id, uint8_t cmdlen, char __far *cmdbuf,
Note:
See TracChangeset
for help on using the changeset viewer.