2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* Access to VGA videoram
|
|
|
|
*
|
|
|
|
* (c) 1998 Martin Mares <mj@ucw.cz>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINUX_ASM_VGA_H_
|
|
|
|
#define _LINUX_ASM_VGA_H_
|
|
|
|
|
|
|
|
/*
|
|
|
|
* On the PC, we can just recalculate addresses and then
|
|
|
|
* access the videoram directly without any black magic.
|
|
|
|
*/
|
|
|
|
|
2008-03-23 09:03:57 +01:00
|
|
|
#define VGA_MAP_MEM(x, s) (unsigned long)phys_to_virt(x)
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#define vga_readb(x) (*(x))
|
2008-03-23 09:03:57 +01:00
|
|
|
#define vga_writeb(x, y) (*(y) = (x))
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
#endif
|