Home
last modified time | relevance | path

Searched refs:vga_gdc_write (Results 1 – 2 of 2) sorted by relevance

/mirbsd/src/sys/dev/ic/
Dvga_subr.c59 vga_gdc_write(vh, rdplanesel, 0x02); /* select map 2 for cpu reads */
60 vga_gdc_write(vh, mode, 0x00); /* disable odd-even addressing */
61 vga_gdc_write(vh, misc, 0x04); /* map starts at 0xA000 */
77 vga_gdc_write(vh, rdplanesel, 0x00); /* select map 0 for cpu reads */
78 vga_gdc_write(vh, mode, 0x10); /* enable odd-even addressing */
80 vga_gdc_write(vh, misc, (vh->vh_mono ? 0x0a : 0x0e));
Dvgavar.h155 #define vga_gdc_write(vh, reg, val) \ macro