src/sound

This commit is contained in:
Jasmine Iwanek
2022-03-13 10:03:39 -04:00
parent 0d9161016d
commit c195b348a7
22 changed files with 654 additions and 650 deletions

View File

@@ -132,13 +132,13 @@ dss_close(void *p)
}
const lpt_device_t dss_device = {
"Disney Sound Source",
"dss",
dss_init,
dss_close,
dss_write_data,
dss_write_ctrl,
NULL,
dss_read_status,
NULL
.name = "Disney Sound Source",
.internal_name = "dss",
.init = dss_init,
.close = dss_close,
.write_data = dss_write_data,
.write_ctrl = dss_write_ctrl,
.read_data = NULL,
.read_status = dss_read_status,
.read_ctrl = NULL
};