Changeset 63562 in vbox for trunk/src/VBox/Devices/PC/BIOS/system.c
- Timestamp:
- Aug 16, 2016 2:04:03 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/BIOS/system.c
r60887 r63562 53 53 #define UNSUPPORTED_FUNCTION 0x86 /* Specific to INT 15h. */ 54 54 55 #define BIOS_CONFIG_TABLE 0xe6f5 /* TODO:configurable? put elsewhere? */56 57 #define ACPI_DATA_SIZE 0x00010000L /* TODO:configurable? put elsewhere? */55 #define BIOS_CONFIG_TABLE 0xe6f5 /** @todo configurable? put elsewhere? */ 56 57 #define ACPI_DATA_SIZE 0x00010000L /** @todo configurable? put elsewhere? */ 58 58 59 59 #define BX_CPU 3 … … 266 266 parm [ax] modify nomemory aborts; 267 267 268 // @todo:This method is silly. The RTC should be programmed to fire an interrupt268 /// @todo This method is silly. The RTC should be programmed to fire an interrupt 269 269 // instead of hogging the CPU with inaccurate code. 270 270 void timer_wait(uint32_t usec_wait) … … 328 328 } 329 329 330 // @todo:move elsewhere?330 /// @todo move elsewhere? 331 331 #define AX r.gr.u.r16.ax 332 332 #define BX r.gr.u.r16.bx … … 400 400 break; 401 401 402 // @todo:Why does this need special handling? All we need is to set CF402 /// @todo Why does this need special handling? All we need is to set CF 403 403 // but not handle this as an unknown function (regardless of CPU type). 404 404 case 0x4f: … … 478 478 479 479 // turn off interrupts 480 int_disable(); // @todo:aren't they off already?480 int_disable(); /// @todo aren't they off already? 481 481 482 482 set_enable_a20(1); // enable A20 line; we're supposed to fail if that fails … … 834 834 835 835 // turn off interrupts 836 int_disable(); // @todo:aren't they disabled already?836 int_disable(); /// @todo aren't they disabled already? 837 837 838 838 prev_a20_enable = set_enable_a20(1); // enable A20 line
Note:
See TracChangeset
for help on using the changeset viewer.