24 lines
659 B
C
24 lines
659 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 Banshee and 3 specific emulation.
|
|
*
|
|
*
|
|
*
|
|
* Authors: Sarah Walker, <https://pcem-emulator.co.uk/>
|
|
*
|
|
* Copyright 2008-2020 Sarah Walker.
|
|
*/
|
|
|
|
#ifndef VIDEO_VOODOO_BANSHEE_H
|
|
#define VIDEO_VOODOO_BANSHEE_H
|
|
|
|
void banshee_set_overlay_addr(void *priv, uint32_t addr);
|
|
|
|
#endif /*VIDEO_VOODOO_BANSHEE_H*/
|