src/chipset
This commit is contained in:
@@ -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
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user