Files
86Box/src/include/86box/vid_vga.h

35 lines
935 B
C
Raw Normal View History

2022-01-30 02:11:21 -05:00
/*
2023-01-06 15:36:05 -05:00
* 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.
2022-01-30 02:11:21 -05:00
*
2023-01-06 15:36:05 -05:00
* This file is part of the 86Box distribution.
2022-01-30 02:11:21 -05:00
*
2023-01-06 15:36:05 -05:00
* Emulation of the IBM MDA + VGA graphics cards.
2022-01-30 02:11:21 -05:00
*
*
*
2023-01-06 15:36:29 -05:00
* Authors: Sarah Walker, <https://pcem-emulator.co.uk/>
2023-01-06 15:36:05 -05:00
* Miran Grca, <mgrca8@gmail.com>
* Jasmine Iwanek, <jriwanek@gmail.com>
*
* Copyright 2008-2018 Sarah Walker.
* Copyright 2016-2018 Miran Grca.
* Copyright 2021 Jasmine Iwanek.
2022-01-30 02:11:21 -05:00
*/
2022-02-18 19:42:21 -05:00
2022-01-30 02:11:21 -05:00
#ifndef VIDEO_VGA_H
#define VIDEO_VGA_H
2022-01-30 02:11:21 -05:00
typedef struct vga_t {
svga_t svga;
2022-02-20 02:26:27 -05:00
rom_t bios_rom;
2022-01-30 02:11:21 -05:00
} vga_t;
extern void vga_out(uint16_t addr, uint8_t val, void *priv);
extern uint8_t vga_in(uint16_t addr, void *priv);
2022-01-30 02:11:21 -05:00
#endif /*VIDEO_VGA_H*/