28 lines
848 B
C
28 lines
848 B
C
/*
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
* running old operating systems and software designed for IBM
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
* system designs based on the PCI bus.
|
|
*
|
|
* This file is part of the 86Box distribution.
|
|
*
|
|
* Voodoo Graphics, 2, Banshee, 3 emulation.
|
|
*
|
|
*
|
|
*
|
|
* Authors: Sarah Walker, <https://pcem-emulator.co.uk/>
|
|
* leilei
|
|
*
|
|
* Copyright 2008-2020 Sarah Walker.
|
|
*/
|
|
|
|
#ifndef VIDEO_VOODOO_FB_H
|
|
#define VIDEO_VOODOO_FB_H
|
|
|
|
uint16_t voodoo_fb_readw(uint32_t addr, void *priv);
|
|
uint32_t voodoo_fb_readl(uint32_t addr, void *priv);
|
|
void voodoo_fb_writew(uint32_t addr, uint16_t val, void *priv);
|
|
void voodoo_fb_writel(uint32_t addr, uint32_t val, void *priv);
|
|
|
|
#endif /*VIDEO_VOODOO_FB_H*/
|