Rev 4128 | Go to most recent revision | Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
4127 | decky | 1 | #ifdef CONFIG_FB |
2 | mov $vesa_init, %esi |
||
3 | mov $VESA_INIT_SEGMENT << 4, %edi |
||
4 | mov $e_vesa_init - vesa_init, %ecx |
||
5 | rep movsb |
||
6 | |||
7 | mov $VESA_INIT_SEGMENT << 4, %edi |
||
8 | jmpl *%edi |
||
9 | |||
10 | vesa_meeting_point: |
||
11 | mov %esi, KA2PA(vesa_ph_addr) |
||
12 | mov %di, KA2PA(vesa_height) |
||
13 | shr $16, %edi |
||
14 | mov %di, KA2PA(vesa_width) |
||
15 | mov %bx, KA2PA(vesa_scanline) |
||
16 | shr $16, %ebx |
||
17 | mov %bx, KA2PA(vesa_bpp) |
||
18 | #endif |