Changeset 60441 in vbox for trunk/src/VBox/Devices/Graphics/BIOS
- Timestamp:
- Apr 11, 2016 9:15:40 PM (9 years ago)
- Location:
- trunk/src/VBox/Devices/Graphics/BIOS
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/BIOS/vberom.asm
r60422 r60441 801 801 endif 802 802 set_palette_data: 803 DO_ PUSHAD803 DO_pushad 804 804 push ds 805 805 push es … … 831 831 loop set_pal_loop 832 832 pop ds 833 DO_ POPAD833 DO_popad 834 834 vbe_09_ok: 835 835 mov ax, 004Fh … … 837 837 838 838 get_palette_data: 839 DO_ PUSHAD839 DO_pushad 840 840 mov al, dl 841 841 mov dx, VGAREG_DAC_READ_ADDRESS … … 864 864 endif 865 865 loop get_pal_loop 866 DO_ POPAD866 DO_popad 867 867 jmp vbe_09_ok 868 868 -
trunk/src/VBox/Devices/Graphics/BIOS/vgarom.asm
r60422 r60441 87 87 push es 88 88 push ds 89 DO_ PUSHA89 DO_pusha 90 90 mov bx, 0C000h 91 91 mov ds, bx 92 92 call _int10_debugmsg 93 DO_ POPA93 DO_popa 94 94 pop ds 95 95 pop es … … 200 200 push es 201 201 push ds 202 DO_ PUSHA202 DO_pusha 203 203 204 204 ;; We have to set ds to access the right data segment … … 207 207 call _int10_func 208 208 209 DO_ POPA209 DO_popa 210 210 pop ds 211 211 pop es
Note:
See TracChangeset
for help on using the changeset viewer.