src/chipset

This commit is contained in:
Jasmine Iwanek
2022-03-13 09:21:08 -04:00
parent 66a687d68d
commit a52f0cca79
49 changed files with 1268 additions and 1214 deletions

View File

@@ -1542,33 +1542,44 @@ scat_init(const device_t *info)
return(dev);
}
const device_t scat_device = {
"C&T SCAT (v1)",
"scat",
0,
0,
scat_init, scat_close, NULL,
{ NULL }, NULL, NULL,
NULL
.name = "C&T SCAT (v1)",
.internal_name = "scat",
.flags = 0,
.local = 0,
.init = scat_init,
.close = scat_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};
const device_t scat_4_device = {
"C&T SCAT (v4)",
"scat_4",
0,
4,
scat_init, scat_close, NULL,
{ NULL }, NULL, NULL,
NULL
.name = "C&T SCAT (v4)",
.internal_name = "scat_4",
.flags = 0,
.local = 4,
.init = scat_init,
.close = scat_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};
const device_t scat_sx_device = {
"C&T SCATsx",
"scat_sx",
0,
32,
scat_init, scat_close, NULL,
{ NULL }, NULL, NULL,
NULL
.name = "C&T SCATsx",
.internal_name = "scat_sx",
.flags = 0,
.local = 32,
.init = scat_init,
.close = scat_close,
.reset = NULL,
{ .available = NULL },
.speed_changed = NULL,
.force_redraw = NULL,
.config = NULL
};