Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / asm-arm / vga.h
blob1e0b913c3d71ce9be96847b128b3965da2672f21
1 #ifndef ASMARM_VGA_H
2 #define ASMARM_VGA_H
4 #include <asm/hardware.h>
5 #include <asm/io.h>
7 #define VGA_MAP_MEM(x,s) (PCIMEM_BASE + (x))
9 #define vga_readb(x) (*((volatile unsigned char *)x))
10 #define vga_writeb(x,y) (*((volatile unsigned char *)y) = (x))
12 #endif