Changeset 83001 in vbox for trunk/src/VBox/Devices/Graphics/BIOS/vgabios.c
- Timestamp:
- Feb 6, 2020 7:38:51 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/BIOS/vgabios.c
r82278 r83001 230 230 #endif 231 231 set_int_vector(0x10, vgabios_int10_handler); 232 set_int_vector(0x6D, vgabios_int10_handler); 232 233 #ifdef CIRRUS 233 234 cirrus_init(); … … 854 855 } 855 856 856 /// @todo Evaluate whether executing INT 10h is the right thing here857 /// Recursive BIOS invocation, uses 857 858 extern void vga_font_set(uint8_t function, uint8_t data); 858 859 #pragma aux vga_font_set = \ 859 860 "mov ah, 11h" \ 860 "int 10h" \861 "int 6Dh" \ 861 862 parm [al] [bl]; 862 863 … … 1070 1071 if(vga_modes[line].class==TEXT) 1071 1072 { 1072 vga_font_set(0x04, 0);/* Load 8x16 font into page 0. */1073 vga_font_set(0x03, 0); /* Select font page mode 0. */1073 biosfn_load_text_8_16_pat(0x04, 0); /* Load 8x16 font into page 0. */ 1074 vga_font_set(0x03, 0); /* Select font page mode 0. */ 1074 1075 } 1075 1076
Note:
See TracChangeset
for help on using the changeset viewer.