src/video

This commit is contained in:
Jasmine Iwanek
2022-03-13 21:43:45 -04:00
parent 3d0db78ead
commit 3b73ce330c
50 changed files with 2506 additions and 2526 deletions

View File

@@ -653,30 +653,30 @@ const device_config_t ogc_m24_config[] = {
// clang-format on
};
const device_t ogc_m24_device =
{
"Olivetti M21/M24/M28 (GO317/318/380/709) video card",
"ogc_m24",
DEVICE_ISA, 0,
ogc_init,
ogc_close,
NULL,
{ NULL },
ogc_speed_changed,
NULL,
ogc_m24_config
const device_t ogc_m24_device = {
.name = "Olivetti M21/M24/M28 (GO317/318/380/709) video card",
.internal_name = "ogc_m24",
.flags = DEVICE_ISA,
.local = 0,
.init = ogc_init,
.close = ogc_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = ogc_speed_changed,
.force_redraw = NULL,
.config = ogc_m24_config
};
const device_t ogc_device =
{
"Olivetti OGC (GO708)",
"ogc",
DEVICE_ISA, 0,
ogc_init,
ogc_close,
NULL,
{ NULL },
ogc_speed_changed,
NULL,
cga_config
const device_t ogc_device = {
.name = "Olivetti OGC (GO708)",
.internal_name = "ogc",
.flags = DEVICE_ISA,
.local = 0,
.init = ogc_init,
.close = ogc_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = ogc_speed_changed,
.force_redraw = NULL,
.config = cga_config
};