18c2ecf20Sopenharmony_ci/* 28c2ecf20Sopenharmony_ci * Information about the Yamaha YRW801 wavetable ROM chip 38c2ecf20Sopenharmony_ci * 48c2ecf20Sopenharmony_ci * Copyright (c) 2003 by Clemens Ladisch <clemens@ladisch.de> 58c2ecf20Sopenharmony_ci * All rights reserved. 68c2ecf20Sopenharmony_ci * 78c2ecf20Sopenharmony_ci * Redistribution and use in source and binary forms, with or without 88c2ecf20Sopenharmony_ci * modification, are permitted provided that the following conditions 98c2ecf20Sopenharmony_ci * are met: 108c2ecf20Sopenharmony_ci * 1. Redistributions of source code must retain the above copyright 118c2ecf20Sopenharmony_ci * notice, this list of conditions, and the following disclaimer, 128c2ecf20Sopenharmony_ci * without modification. 138c2ecf20Sopenharmony_ci * 2. The name of the author may not be used to endorse or promote products 148c2ecf20Sopenharmony_ci * derived from this software without specific prior written permission. 158c2ecf20Sopenharmony_ci * 168c2ecf20Sopenharmony_ci * Alternatively, this software may be distributed and/or modified under the 178c2ecf20Sopenharmony_ci * terms of the GNU General Public License as published by the Free Software 188c2ecf20Sopenharmony_ci * Foundation; either version 2 of the License, or (at your option) any later 198c2ecf20Sopenharmony_ci * version. 208c2ecf20Sopenharmony_ci * 218c2ecf20Sopenharmony_ci * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 228c2ecf20Sopenharmony_ci * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 238c2ecf20Sopenharmony_ci * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 248c2ecf20Sopenharmony_ci * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR 258c2ecf20Sopenharmony_ci * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 268c2ecf20Sopenharmony_ci * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 278c2ecf20Sopenharmony_ci * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 288c2ecf20Sopenharmony_ci * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 298c2ecf20Sopenharmony_ci * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 308c2ecf20Sopenharmony_ci * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 318c2ecf20Sopenharmony_ci * SUCH DAMAGE. 328c2ecf20Sopenharmony_ci */ 338c2ecf20Sopenharmony_ci 348c2ecf20Sopenharmony_ci#include "opl4_local.h" 358c2ecf20Sopenharmony_ci 368c2ecf20Sopenharmony_ciint snd_yrw801_detect(struct snd_opl4 *opl4) 378c2ecf20Sopenharmony_ci{ 388c2ecf20Sopenharmony_ci char buf[15]; 398c2ecf20Sopenharmony_ci 408c2ecf20Sopenharmony_ci snd_opl4_read_memory(opl4, buf, 0x001200, 15); 418c2ecf20Sopenharmony_ci if (memcmp(buf, "CopyrightYAMAHA", 15)) 428c2ecf20Sopenharmony_ci return -ENODEV; 438c2ecf20Sopenharmony_ci snd_opl4_read_memory(opl4, buf, 0x1ffffe, 2); 448c2ecf20Sopenharmony_ci if (buf[0] != 0x01) 458c2ecf20Sopenharmony_ci return -ENODEV; 468c2ecf20Sopenharmony_ci snd_printdd("YRW801 ROM version %02x.%02x\n", buf[0], buf[1]); 478c2ecf20Sopenharmony_ci return 0; 488c2ecf20Sopenharmony_ci} 498c2ecf20Sopenharmony_ci 508c2ecf20Sopenharmony_ci/* 518c2ecf20Sopenharmony_ci * The instrument definitions are stored statically because, in practice, the 528c2ecf20Sopenharmony_ci * OPL4 is always coupled with a YRW801. Dynamic instrument loading would be 538c2ecf20Sopenharmony_ci * required if downloading sample data to external SRAM was actually supported 548c2ecf20Sopenharmony_ci * by this driver. 558c2ecf20Sopenharmony_ci */ 568c2ecf20Sopenharmony_ci 578c2ecf20Sopenharmony_cistatic const struct opl4_region regions_00[] = { /* Acoustic Grand Piano */ 588c2ecf20Sopenharmony_ci {0x14, 0x27, {0x12c,7474,100, 0,0,0x00,0xc8,0x20,0xf2,0x13,0x08,0x0}}, 598c2ecf20Sopenharmony_ci {0x28, 0x2d, {0x12d,6816,100, 0,0,0x00,0xc8,0x20,0xf2,0x14,0x08,0x0}}, 608c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x12e,5899,100, 0,0,0x00,0xc8,0x20,0xf2,0x14,0x08,0x0}}, 618c2ecf20Sopenharmony_ci {0x34, 0x39, {0x12f,5290,100, 0,0,0x00,0xc8,0x20,0xf2,0x14,0x08,0x0}}, 628c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x130,4260,100, 0,0,0x0a,0xc8,0x20,0xf2,0x14,0x08,0x0}}, 638c2ecf20Sopenharmony_ci {0x40, 0x45, {0x131,3625,100, 0,0,0x0a,0xc8,0x20,0xf2,0x14,0x08,0x0}}, 648c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x132,3116,100, 0,0,0x04,0xc8,0x20,0xf2,0x14,0x08,0x0}}, 658c2ecf20Sopenharmony_ci {0x4c, 0x52, {0x133,2081,100, 0,0,0x03,0xc8,0x20,0xf2,0x14,0x18,0x0}}, 668c2ecf20Sopenharmony_ci {0x53, 0x58, {0x134,1444,100, 0,0,0x07,0xc8,0x20,0xf3,0x14,0x18,0x0}}, 678c2ecf20Sopenharmony_ci {0x59, 0x6d, {0x135,1915,100, 0,0,0x00,0xc8,0x20,0xf4,0x15,0x08,0x0}} 688c2ecf20Sopenharmony_ci}; 698c2ecf20Sopenharmony_cistatic const struct opl4_region regions_01[] = { /* Bright Acoustic Piano */ 708c2ecf20Sopenharmony_ci {0x14, 0x2d, {0x12c,7474,100, 0,0,0x00,0xc8,0x20,0xf2,0x13,0x08,0x0}}, 718c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x12d,6816,100, 0,0,0x00,0xc8,0x20,0xf2,0x14,0x08,0x0}}, 728c2ecf20Sopenharmony_ci {0x34, 0x39, {0x12e,5899,100, 0,0,0x00,0xc8,0x20,0xf2,0x14,0x08,0x0}}, 738c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x12f,5290,100, 0,0,0x00,0xc8,0x20,0xf2,0x14,0x08,0x0}}, 748c2ecf20Sopenharmony_ci {0x40, 0x45, {0x130,4260,100, 0,0,0x0a,0xc8,0x20,0xf2,0x14,0x08,0x0}}, 758c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x131,3625,100, 0,0,0x0a,0xc8,0x20,0xf2,0x14,0x08,0x0}}, 768c2ecf20Sopenharmony_ci {0x4c, 0x52, {0x132,3116,100, 0,0,0x04,0xc8,0x20,0xf2,0x14,0x08,0x0}}, 778c2ecf20Sopenharmony_ci {0x53, 0x58, {0x133,2081,100, 0,0,0x07,0xc8,0x20,0xf2,0x14,0x18,0x0}}, 788c2ecf20Sopenharmony_ci {0x59, 0x5e, {0x134,1444,100, 0,0,0x0a,0xc8,0x20,0xf3,0x14,0x18,0x0}}, 798c2ecf20Sopenharmony_ci {0x5f, 0x6d, {0x135,1915,100, 0,0,0x00,0xc8,0x20,0xf4,0x15,0x08,0x0}} 808c2ecf20Sopenharmony_ci}; 818c2ecf20Sopenharmony_cistatic const struct opl4_region regions_02[] = { /* Electric Grand Piano */ 828c2ecf20Sopenharmony_ci {0x14, 0x2d, {0x12c,7476,100, 1,0,0x00,0xae,0x20,0xf2,0x13,0x07,0x0}}, 838c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x12d,6818,100, 1,0,0x00,0xae,0x20,0xf2,0x14,0x07,0x0}}, 848c2ecf20Sopenharmony_ci {0x34, 0x39, {0x12e,5901,100, 1,0,0x00,0xae,0x20,0xf2,0x14,0x07,0x0}}, 858c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x12f,5292,100, 1,0,0x00,0xae,0x20,0xf2,0x14,0x07,0x0}}, 868c2ecf20Sopenharmony_ci {0x40, 0x45, {0x130,4262,100, 1,0,0x00,0xae,0x20,0xf2,0x14,0x07,0x0}}, 878c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x131,3627,100, 1,0,0x00,0xae,0x20,0xf2,0x14,0x07,0x0}}, 888c2ecf20Sopenharmony_ci {0x4c, 0x52, {0x132,3118,100, 1,0,0x00,0xae,0x20,0xf2,0x14,0x07,0x0}}, 898c2ecf20Sopenharmony_ci {0x53, 0x58, {0x133,2083,100, 1,0,0x00,0xae,0x20,0xf2,0x14,0x17,0x0}}, 908c2ecf20Sopenharmony_ci {0x59, 0x5e, {0x134,1446,100, 1,0,0x00,0xae,0x20,0xf3,0x14,0x17,0x0}}, 918c2ecf20Sopenharmony_ci {0x5f, 0x6d, {0x135,1917,100, 1,0,0x00,0xae,0x20,0xf4,0x15,0x07,0x0}}, 928c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x06c,6375,100,-1,0,0x00,0xc2,0x28,0xf4,0x23,0x18,0x0}} 938c2ecf20Sopenharmony_ci}; 948c2ecf20Sopenharmony_cistatic const struct opl4_region regions_03[] = { /* Honky-Tonk Piano */ 958c2ecf20Sopenharmony_ci {0x14, 0x27, {0x12c,7474,100, 0,0,0x00,0xb4,0x20,0xf2,0x13,0x08,0x0}}, 968c2ecf20Sopenharmony_ci {0x28, 0x2d, {0x12d,6816,100, 0,0,0x00,0xb4,0x20,0xf2,0x14,0x08,0x0}}, 978c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x12e,5899,100, 0,0,0x00,0xb4,0x20,0xf2,0x14,0x08,0x0}}, 988c2ecf20Sopenharmony_ci {0x34, 0x39, {0x12f,5290,100, 0,0,0x00,0xb4,0x20,0xf2,0x14,0x08,0x0}}, 998c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x130,4260,100, 0,0,0x0a,0xb4,0x20,0xf2,0x14,0x08,0x0}}, 1008c2ecf20Sopenharmony_ci {0x40, 0x45, {0x131,3625,100, 0,0,0x0a,0xb4,0x20,0xf2,0x14,0x08,0x0}}, 1018c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x132,3116,100, 0,0,0x04,0xb4,0x20,0xf2,0x14,0x08,0x0}}, 1028c2ecf20Sopenharmony_ci {0x4c, 0x52, {0x133,2081,100, 0,0,0x03,0xb4,0x20,0xf2,0x14,0x18,0x0}}, 1038c2ecf20Sopenharmony_ci {0x53, 0x58, {0x134,1444,100, 0,0,0x07,0xb4,0x20,0xf3,0x14,0x18,0x0}}, 1048c2ecf20Sopenharmony_ci {0x59, 0x6d, {0x135,1915,100, 0,0,0x00,0xb4,0x20,0xf4,0x15,0x08,0x0}}, 1058c2ecf20Sopenharmony_ci {0x14, 0x27, {0x12c,7486,100, 0,0,0x00,0xb4,0x20,0xf2,0x13,0x08,0x0}}, 1068c2ecf20Sopenharmony_ci {0x28, 0x2d, {0x12d,6803,100, 0,0,0x00,0xb4,0x20,0xf2,0x14,0x08,0x0}}, 1078c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x12e,5912,100, 0,0,0x00,0xb4,0x20,0xf2,0x14,0x08,0x0}}, 1088c2ecf20Sopenharmony_ci {0x34, 0x39, {0x12f,5275,100, 0,0,0x00,0xb4,0x20,0xf2,0x14,0x08,0x0}}, 1098c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x130,4274,100, 0,0,0x0a,0xb4,0x20,0xf2,0x14,0x08,0x0}}, 1108c2ecf20Sopenharmony_ci {0x40, 0x45, {0x131,3611,100, 0,0,0x0a,0xb4,0x20,0xf2,0x14,0x08,0x0}}, 1118c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x132,3129,100, 0,0,0x04,0xb4,0x20,0xf2,0x14,0x08,0x0}}, 1128c2ecf20Sopenharmony_ci {0x4c, 0x52, {0x133,2074,100, 0,0,0x07,0xb4,0x20,0xf2,0x14,0x18,0x0}}, 1138c2ecf20Sopenharmony_ci {0x53, 0x58, {0x134,1457,100, 0,0,0x01,0xb4,0x20,0xf3,0x14,0x18,0x0}}, 1148c2ecf20Sopenharmony_ci {0x59, 0x6d, {0x135,1903,100, 0,0,0x00,0xb4,0x20,0xf4,0x15,0x08,0x0}} 1158c2ecf20Sopenharmony_ci}; 1168c2ecf20Sopenharmony_cistatic const struct opl4_region regions_04[] = { /* Electric Piano 1 */ 1178c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x00b,6570,100, 0,0,0x00,0x28,0x38,0xf0,0x00,0x0c,0x0}}, 1188c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x06c,6375,100, 0,2,0x00,0xb0,0x22,0xf4,0x23,0x19,0x0}} 1198c2ecf20Sopenharmony_ci}; 1208c2ecf20Sopenharmony_cistatic const struct opl4_region regions_05[] = { /* Electric Piano 2 */ 1218c2ecf20Sopenharmony_ci {0x14, 0x27, {0x12c,7476,100, 0,3,0x00,0xa2,0x1b,0xf2,0x13,0x08,0x0}}, 1228c2ecf20Sopenharmony_ci {0x28, 0x2d, {0x12d,6818,100, 0,3,0x00,0xa2,0x1b,0xf2,0x14,0x08,0x0}}, 1238c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x12e,5901,100, 0,3,0x00,0xa2,0x1b,0xf2,0x14,0x08,0x0}}, 1248c2ecf20Sopenharmony_ci {0x34, 0x39, {0x12f,5292,100, 0,3,0x00,0xa2,0x1b,0xf2,0x14,0x08,0x0}}, 1258c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x130,4262,100, 0,3,0x0a,0xa2,0x1b,0xf2,0x14,0x08,0x0}}, 1268c2ecf20Sopenharmony_ci {0x40, 0x45, {0x131,3627,100, 0,3,0x0a,0xa2,0x1b,0xf2,0x14,0x08,0x0}}, 1278c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x132,3118,100, 0,3,0x04,0xa2,0x1b,0xf2,0x14,0x08,0x0}}, 1288c2ecf20Sopenharmony_ci {0x4c, 0x52, {0x133,2083,100, 0,3,0x03,0xa2,0x1b,0xf2,0x14,0x18,0x0}}, 1298c2ecf20Sopenharmony_ci {0x53, 0x58, {0x134,1446,100, 0,3,0x07,0xa2,0x1b,0xf3,0x14,0x18,0x0}}, 1308c2ecf20Sopenharmony_ci {0x59, 0x6d, {0x135,1917,100, 0,3,0x00,0xa2,0x1b,0xf4,0x15,0x08,0x0}}, 1318c2ecf20Sopenharmony_ci {0x14, 0x2d, {0x12c,7472,100, 0,0,0x00,0xa2,0x18,0xf2,0x13,0x08,0x0}}, 1328c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x12d,6814,100, 0,0,0x00,0xa2,0x18,0xf2,0x14,0x08,0x0}}, 1338c2ecf20Sopenharmony_ci {0x34, 0x39, {0x12e,5897,100, 0,0,0x00,0xa2,0x18,0xf2,0x14,0x08,0x0}}, 1348c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x12f,5288,100, 0,0,0x00,0xa2,0x18,0xf2,0x14,0x08,0x0}}, 1358c2ecf20Sopenharmony_ci {0x40, 0x45, {0x130,4258,100, 0,0,0x0a,0xa2,0x18,0xf2,0x14,0x08,0x0}}, 1368c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x131,3623,100, 0,0,0x0a,0xa2,0x18,0xf2,0x14,0x08,0x0}}, 1378c2ecf20Sopenharmony_ci {0x4c, 0x52, {0x132,3114,100, 0,0,0x04,0xa2,0x18,0xf2,0x14,0x08,0x0}}, 1388c2ecf20Sopenharmony_ci {0x53, 0x58, {0x133,2079,100, 0,0,0x07,0xa2,0x18,0xf2,0x14,0x18,0x0}}, 1398c2ecf20Sopenharmony_ci {0x59, 0x5e, {0x134,1442,100, 0,0,0x0a,0xa2,0x18,0xf3,0x14,0x18,0x0}}, 1408c2ecf20Sopenharmony_ci {0x5f, 0x6d, {0x135,1913,100, 0,0,0x00,0xa2,0x18,0xf4,0x15,0x08,0x0}} 1418c2ecf20Sopenharmony_ci}; 1428c2ecf20Sopenharmony_cistatic const struct opl4_region regions_06[] = { /* Harpsichord */ 1438c2ecf20Sopenharmony_ci {0x15, 0x39, {0x080,5158,100, 0,0,0x00,0xb2,0x20,0xf5,0x24,0x19,0x0}}, 1448c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x081,4408,100, 0,0,0x00,0xb2,0x20,0xf5,0x25,0x09,0x0}}, 1458c2ecf20Sopenharmony_ci {0x40, 0x45, {0x082,3622,100, 0,0,0x00,0xb2,0x20,0xf5,0x25,0x09,0x0}}, 1468c2ecf20Sopenharmony_ci {0x46, 0x4d, {0x083,2843,100, 0,0,0x00,0xb2,0x20,0xf5,0x25,0x19,0x0}}, 1478c2ecf20Sopenharmony_ci {0x4e, 0x6c, {0x084,1307,100, 0,0,0x00,0xb2,0x20,0xf5,0x25,0x29,0x0}} 1488c2ecf20Sopenharmony_ci}; 1498c2ecf20Sopenharmony_cistatic const struct opl4_region regions_07[] = { /* Clavinet */ 1508c2ecf20Sopenharmony_ci {0x15, 0x51, {0x027,5009,100, 0,0,0x00,0xd2,0x28,0xf5,0x13,0x2b,0x0}}, 1518c2ecf20Sopenharmony_ci {0x52, 0x6c, {0x028,3495,100, 0,0,0x00,0xd2,0x28,0xf5,0x13,0x3b,0x0}} 1528c2ecf20Sopenharmony_ci}; 1538c2ecf20Sopenharmony_cistatic const struct opl4_region regions_08[] = { /* Celesta */ 1548c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x02b,3267,100, 0,0,0x00,0xdc,0x20,0xf4,0x15,0x07,0x3}} 1558c2ecf20Sopenharmony_ci}; 1568c2ecf20Sopenharmony_cistatic const struct opl4_region regions_09[] = { /* Glockenspiel */ 1578c2ecf20Sopenharmony_ci {0x15, 0x78, {0x0f3, 285,100, 0,0,0x00,0xc2,0x28,0xf6,0x25,0x25,0x0}} 1588c2ecf20Sopenharmony_ci}; 1598c2ecf20Sopenharmony_cistatic const struct opl4_region regions_0a[] = { /* Music Box */ 1608c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x0f3,3362,100, 0,0,0x00,0xb6,0x20,0xa6,0x25,0x25,0x0}}, 1618c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x101,4773,100, 0,0,0x00,0xaa,0x20,0xd4,0x14,0x16,0x0}} 1628c2ecf20Sopenharmony_ci}; 1638c2ecf20Sopenharmony_cistatic const struct opl4_region regions_0b[] = { /* Vibraphone */ 1648c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x101,4778,100, 0,0,0x00,0xc0,0x28,0xf4,0x14,0x16,0x4}} 1658c2ecf20Sopenharmony_ci}; 1668c2ecf20Sopenharmony_cistatic const struct opl4_region regions_0c[] = { /* Marimba */ 1678c2ecf20Sopenharmony_ci {0x15, 0x3f, {0x0f4,4778,100, 0,0,0x00,0xc4,0x38,0xf7,0x47,0x08,0x0}}, 1688c2ecf20Sopenharmony_ci {0x40, 0x4c, {0x0f5,3217,100, 0,0,0x00,0xc4,0x38,0xf7,0x47,0x08,0x0}}, 1698c2ecf20Sopenharmony_ci {0x4d, 0x5a, {0x0f5,3217,100, 0,0,0x00,0xc4,0x38,0xf7,0x48,0x08,0x0}}, 1708c2ecf20Sopenharmony_ci {0x5b, 0x7f, {0x0f5,3218,100, 0,0,0x00,0xc4,0x38,0xf7,0x48,0x18,0x0}} 1718c2ecf20Sopenharmony_ci}; 1728c2ecf20Sopenharmony_cistatic const struct opl4_region regions_0d[] = { /* Xylophone */ 1738c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x136,1729,100, 0,0,0x00,0xd2,0x38,0xf0,0x06,0x36,0x0}} 1748c2ecf20Sopenharmony_ci}; 1758c2ecf20Sopenharmony_cistatic const struct opl4_region regions_0e[] = { /* Tubular Bell */ 1768c2ecf20Sopenharmony_ci {0x01, 0x7f, {0x0ff,3999,100, 0,1,0x00,0x90,0x21,0xf4,0xa3,0x25,0x1}} 1778c2ecf20Sopenharmony_ci}; 1788c2ecf20Sopenharmony_cistatic const struct opl4_region regions_0f[] = { /* Dulcimer */ 1798c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x03f,4236,100, 0,1,0x00,0xbc,0x29,0xf5,0x16,0x07,0x0}}, 1808c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x040,4236,100, 0,2,0x0e,0x94,0x2a,0xf5,0x16,0x07,0x0}} 1818c2ecf20Sopenharmony_ci}; 1828c2ecf20Sopenharmony_cistatic const struct opl4_region regions_10[] = { /* Drawbar Organ */ 1838c2ecf20Sopenharmony_ci {0x01, 0x7f, {0x08e,4394,100, 0,2,0x14,0xc2,0x3a,0xf0,0x00,0x0a,0x0}} 1848c2ecf20Sopenharmony_ci}; 1858c2ecf20Sopenharmony_cistatic const struct opl4_region regions_11[] = { /* Percussive Organ */ 1868c2ecf20Sopenharmony_ci {0x15, 0x3b, {0x08c,6062,100, 0,3,0x00,0xbe,0x3b,0xf0,0x00,0x09,0x0}}, 1878c2ecf20Sopenharmony_ci {0x3c, 0x6c, {0x08d,2984,100, 0,3,0x00,0xbe,0x3b,0xf0,0x00,0x09,0x0}} 1888c2ecf20Sopenharmony_ci}; 1898c2ecf20Sopenharmony_cistatic const struct opl4_region regions_12[] = { /* Rock Organ */ 1908c2ecf20Sopenharmony_ci {0x15, 0x30, {0x128,6574,100, 0,1,0x00,0xcc,0x39,0xf0,0x00,0x0a,0x0}}, 1918c2ecf20Sopenharmony_ci {0x31, 0x3c, {0x129,5040,100, 0,1,0x00,0xcc,0x39,0xf0,0x00,0x0a,0x0}}, 1928c2ecf20Sopenharmony_ci {0x3d, 0x48, {0x12a,3498,100, 0,1,0x00,0xcc,0x39,0xf0,0x00,0x0a,0x0}}, 1938c2ecf20Sopenharmony_ci {0x49, 0x54, {0x12b,1957,100, 0,1,0x00,0xcc,0x39,0xf0,0x00,0x0a,0x0}}, 1948c2ecf20Sopenharmony_ci {0x55, 0x6c, {0x127, 423,100, 0,1,0x00,0xcc,0x39,0xf0,0x00,0x0a,0x0}} 1958c2ecf20Sopenharmony_ci}; 1968c2ecf20Sopenharmony_cistatic const struct opl4_region regions_13[] = { /* Church Organ */ 1978c2ecf20Sopenharmony_ci {0x15, 0x29, {0x087,7466,100, 0,1,0x00,0xc4,0x11,0xf0,0x00,0x09,0x0}}, 1988c2ecf20Sopenharmony_ci {0x2a, 0x30, {0x088,6456,100, 0,1,0x00,0xc4,0x11,0xf0,0x00,0x09,0x0}}, 1998c2ecf20Sopenharmony_ci {0x31, 0x38, {0x089,5428,100, 0,1,0x00,0xc4,0x11,0xf0,0x00,0x09,0x0}}, 2008c2ecf20Sopenharmony_ci {0x39, 0x41, {0x08a,4408,100, 0,1,0x00,0xc4,0x11,0xf0,0x00,0x09,0x0}}, 2018c2ecf20Sopenharmony_ci {0x42, 0x6c, {0x08b,3406,100, 0,1,0x00,0xc4,0x11,0xf0,0x00,0x09,0x0}} 2028c2ecf20Sopenharmony_ci}; 2038c2ecf20Sopenharmony_cistatic const struct opl4_region regions_14[] = { /* Reed Organ */ 2048c2ecf20Sopenharmony_ci {0x00, 0x53, {0x0ac,5570,100, 0,0,0x06,0xc0,0x38,0xf0,0x00,0x09,0x1}}, 2058c2ecf20Sopenharmony_ci {0x54, 0x7f, {0x0ad,2497,100, 0,0,0x00,0xc0,0x38,0xf0,0x00,0x09,0x1}} 2068c2ecf20Sopenharmony_ci}; 2078c2ecf20Sopenharmony_cistatic const struct opl4_region regions_15[] = { /* Accordion */ 2088c2ecf20Sopenharmony_ci {0x15, 0x4c, {0x006,4261,100, 0,2,0x00,0xa4,0x22,0x90,0x00,0x09,0x0}}, 2098c2ecf20Sopenharmony_ci {0x4d, 0x6c, {0x007,1530,100, 0,2,0x00,0xa4,0x22,0x90,0x00,0x09,0x0}}, 2108c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x070,4391,100, 0,3,0x00,0x8a,0x23,0xa0,0x00,0x09,0x0}} 2118c2ecf20Sopenharmony_ci}; 2128c2ecf20Sopenharmony_cistatic const struct opl4_region regions_16[] = { /* Harmonica */ 2138c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x070,4408,100, 0,0,0x00,0xae,0x30,0xa0,0x00,0x09,0x2}} 2148c2ecf20Sopenharmony_ci}; 2158c2ecf20Sopenharmony_cistatic const struct opl4_region regions_17[] = { /* Tango Accordion */ 2168c2ecf20Sopenharmony_ci {0x00, 0x53, {0x0ac,5573,100, 0,0,0x00,0xae,0x38,0xf0,0x00,0x09,0x0}}, 2178c2ecf20Sopenharmony_ci {0x54, 0x7f, {0x0ad,2500,100, 0,0,0x00,0xae,0x38,0xf0,0x00,0x09,0x0}}, 2188c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x041,8479,100, 0,2,0x00,0x6a,0x3a,0x75,0x20,0x0a,0x0}} 2198c2ecf20Sopenharmony_ci}; 2208c2ecf20Sopenharmony_cistatic const struct opl4_region regions_18[] = { /* Nylon Guitar */ 2218c2ecf20Sopenharmony_ci {0x15, 0x2f, {0x0b3,6964,100, 0,0,0x05,0xca,0x28,0xf5,0x34,0x09,0x0}}, 2228c2ecf20Sopenharmony_ci {0x30, 0x36, {0x0b7,5567,100, 0,0,0x0c,0xca,0x28,0xf5,0x34,0x09,0x0}}, 2238c2ecf20Sopenharmony_ci {0x37, 0x3c, {0x0b5,4653,100, 0,0,0x00,0xca,0x28,0xf6,0x34,0x09,0x0}}, 2248c2ecf20Sopenharmony_ci {0x3d, 0x43, {0x0b4,3892,100, 0,0,0x00,0xca,0x28,0xf6,0x35,0x09,0x0}}, 2258c2ecf20Sopenharmony_ci {0x44, 0x60, {0x0b6,2723,100, 0,0,0x00,0xca,0x28,0xf6,0x35,0x19,0x0}} 2268c2ecf20Sopenharmony_ci}; 2278c2ecf20Sopenharmony_cistatic const struct opl4_region regions_19[] = { /* Steel Guitar */ 2288c2ecf20Sopenharmony_ci {0x15, 0x31, {0x00c,6937,100, 0,0,0x00,0xbc,0x28,0xf0,0x04,0x19,0x0}}, 2298c2ecf20Sopenharmony_ci {0x32, 0x38, {0x00d,5410,100, 0,0,0x00,0xbc,0x28,0xf0,0x05,0x09,0x0}}, 2308c2ecf20Sopenharmony_ci {0x39, 0x47, {0x00e,4379,100, 0,0,0x00,0xbc,0x28,0xf5,0x94,0x09,0x0}}, 2318c2ecf20Sopenharmony_ci {0x48, 0x6c, {0x00f,2843,100, 0,0,0x00,0xbc,0x28,0xf6,0x95,0x09,0x0}} 2328c2ecf20Sopenharmony_ci}; 2338c2ecf20Sopenharmony_cistatic const struct opl4_region regions_1a[] = { /* Jazz Guitar */ 2348c2ecf20Sopenharmony_ci {0x15, 0x31, {0x05a,6832,100, 0,0,0x00,0xca,0x28,0xf6,0x34,0x09,0x0}}, 2358c2ecf20Sopenharmony_ci {0x32, 0x3f, {0x05b,4897,100, 0,0,0x00,0xca,0x28,0xf6,0x34,0x09,0x0}}, 2368c2ecf20Sopenharmony_ci {0x40, 0x6c, {0x05c,3218,100, 0,0,0x00,0xca,0x28,0xf6,0x34,0x09,0x0}} 2378c2ecf20Sopenharmony_ci}; 2388c2ecf20Sopenharmony_cistatic const struct opl4_region regions_1b[] = { /* Clean Guitar */ 2398c2ecf20Sopenharmony_ci {0x15, 0x2c, {0x061,7053,100, 0,1,0x00,0xb4,0x29,0xf5,0x54,0x0a,0x0}}, 2408c2ecf20Sopenharmony_ci {0x2d, 0x31, {0x060,6434,100, 0,1,0x00,0xb4,0x29,0xf5,0x54,0x0a,0x0}}, 2418c2ecf20Sopenharmony_ci {0x32, 0x38, {0x063,5764,100, 0,1,0x00,0xbe,0x29,0xf5,0x55,0x0a,0x0}}, 2428c2ecf20Sopenharmony_ci {0x39, 0x3f, {0x062,4627,100, 0,1,0x00,0xb4,0x29,0xf5,0x55,0x0a,0x0}}, 2438c2ecf20Sopenharmony_ci {0x40, 0x44, {0x065,3963,100, 0,1,0x00,0xb4,0x29,0xf5,0x55,0x1a,0x0}}, 2448c2ecf20Sopenharmony_ci {0x45, 0x4b, {0x064,3313,100, 0,1,0x00,0xb4,0x29,0xf5,0x55,0x1a,0x0}}, 2458c2ecf20Sopenharmony_ci {0x4c, 0x54, {0x066,2462,100, 0,1,0x00,0xb4,0x29,0xf5,0x55,0x2a,0x0}}, 2468c2ecf20Sopenharmony_ci {0x55, 0x6c, {0x067,1307,100, 0,1,0x00,0xb4,0x29,0xf6,0x56,0x0a,0x0}} 2478c2ecf20Sopenharmony_ci}; 2488c2ecf20Sopenharmony_cistatic const struct opl4_region regions_1c[] = { /* Muted Guitar */ 2498c2ecf20Sopenharmony_ci {0x01, 0x7f, {0x068,4408,100, 0,0,0x00,0xcc,0x28,0xf6,0x15,0x09,0x0}} 2508c2ecf20Sopenharmony_ci}; 2518c2ecf20Sopenharmony_cistatic const struct opl4_region regions_1d[] = { /* Overdriven Guitar */ 2528c2ecf20Sopenharmony_ci {0x00, 0x40, {0x0a5,6589,100, 0,1,0x00,0xc0,0x29,0xf2,0x11,0x09,0x0}}, 2538c2ecf20Sopenharmony_ci {0x41, 0x7f, {0x0a6,5428,100, 0,1,0x00,0xc0,0x29,0xf2,0x11,0x09,0x0}} 2548c2ecf20Sopenharmony_ci}; 2558c2ecf20Sopenharmony_cistatic const struct opl4_region regions_1e[] = { /* Distortion Guitar */ 2568c2ecf20Sopenharmony_ci {0x15, 0x2a, {0x051,6928,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}}, 2578c2ecf20Sopenharmony_ci {0x2b, 0x2e, {0x052,6433,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}}, 2588c2ecf20Sopenharmony_ci {0x2f, 0x32, {0x053,5944,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}}, 2598c2ecf20Sopenharmony_ci {0x33, 0x36, {0x054,5391,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}}, 2608c2ecf20Sopenharmony_ci {0x37, 0x3a, {0x055,4897,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}}, 2618c2ecf20Sopenharmony_ci {0x3b, 0x3e, {0x056,4408,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}}, 2628c2ecf20Sopenharmony_ci {0x3f, 0x42, {0x057,3892,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}}, 2638c2ecf20Sopenharmony_ci {0x43, 0x46, {0x058,3361,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}}, 2648c2ecf20Sopenharmony_ci {0x47, 0x6c, {0x059,2784,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}} 2658c2ecf20Sopenharmony_ci}; 2668c2ecf20Sopenharmony_cistatic const struct opl4_region regions_1f[] = { /* Guitar Harmonics */ 2678c2ecf20Sopenharmony_ci {0x15, 0x44, {0x05e,5499,100, 0,0,0x00,0xce,0x28,0xf4,0x24,0x09,0x0}}, 2688c2ecf20Sopenharmony_ci {0x45, 0x49, {0x05d,4850,100, 0,0,0x00,0xe2,0x28,0xf4,0x24,0x09,0x0}}, 2698c2ecf20Sopenharmony_ci {0x4a, 0x6c, {0x05f,4259,100, 0,0,0x00,0xce,0x28,0xf4,0x24,0x09,0x0}} 2708c2ecf20Sopenharmony_ci}; 2718c2ecf20Sopenharmony_cistatic const struct opl4_region regions_20[] = { /* Acoustic Bass */ 2728c2ecf20Sopenharmony_ci {0x15, 0x30, {0x004,8053,100, 0,0,0x00,0xe2,0x18,0xf5,0x15,0x09,0x0}}, 2738c2ecf20Sopenharmony_ci {0x31, 0x6c, {0x005,4754,100, 0,0,0x00,0xe2,0x18,0xf5,0x15,0x09,0x0}} 2748c2ecf20Sopenharmony_ci}; 2758c2ecf20Sopenharmony_cistatic const struct opl4_region regions_21[] = { /* Fingered Bass */ 2768c2ecf20Sopenharmony_ci {0x01, 0x20, {0x04a,8762,100, 0,0,0x00,0xde,0x18,0xf6,0x14,0x09,0x0}}, 2778c2ecf20Sopenharmony_ci {0x21, 0x25, {0x04b,8114,100, 0,0,0x00,0xde,0x18,0xf6,0x14,0x09,0x0}}, 2788c2ecf20Sopenharmony_ci {0x26, 0x2a, {0x04c,7475,100, 0,0,0x00,0xde,0x18,0xf6,0x14,0x09,0x0}}, 2798c2ecf20Sopenharmony_ci {0x2b, 0x7f, {0x04d,6841,100, 0,0,0x00,0xde,0x18,0xf6,0x14,0x09,0x0}} 2808c2ecf20Sopenharmony_ci}; 2818c2ecf20Sopenharmony_cistatic const struct opl4_region regions_22[] = { /* Picked Bass */ 2828c2ecf20Sopenharmony_ci {0x15, 0x23, {0x04f,7954,100, 0,0,0x00,0xcc,0x18,0xf3,0x90,0x0a,0x0}}, 2838c2ecf20Sopenharmony_ci {0x24, 0x2a, {0x050,7318,100, 0,0,0x05,0xcc,0x18,0xf3,0x90,0x1a,0x0}}, 2848c2ecf20Sopenharmony_ci {0x2b, 0x2f, {0x06b,6654,100, 0,0,0x00,0xcc,0x18,0xf3,0x90,0x2a,0x0}}, 2858c2ecf20Sopenharmony_ci {0x30, 0x47, {0x069,6031,100, 0,0,0x00,0xcc,0x18,0xf5,0xb0,0x0a,0x0}}, 2868c2ecf20Sopenharmony_ci {0x48, 0x6c, {0x06a,5393,100, 0,0,0x00,0xcc,0x18,0xf5,0xb0,0x0a,0x0}} 2878c2ecf20Sopenharmony_ci}; 2888c2ecf20Sopenharmony_cistatic const struct opl4_region regions_23[] = { /* Fretless Bass */ 2898c2ecf20Sopenharmony_ci {0x01, 0x7f, {0x04e,5297,100, 0,0,0x00,0xd2,0x10,0xf3,0x63,0x19,0x0}} 2908c2ecf20Sopenharmony_ci}; 2918c2ecf20Sopenharmony_cistatic const struct opl4_region regions_24[] = { /* Slap Bass 1 */ 2928c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x0a3,7606,100, 0,1,0x00,0xde,0x19,0xf5,0x32,0x1a,0x0}} 2938c2ecf20Sopenharmony_ci}; 2948c2ecf20Sopenharmony_cistatic const struct opl4_region regions_25[] = { /* Slap Bass 2 */ 2958c2ecf20Sopenharmony_ci {0x01, 0x7f, {0x0a2,6694,100, 0,0,0x00,0xda,0x20,0xb0,0x02,0x09,0x0}} 2968c2ecf20Sopenharmony_ci}; 2978c2ecf20Sopenharmony_cistatic const struct opl4_region regions_26[] = { /* Synth Bass 1 */ 2988c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x0be,7466,100, 0,1,0x00,0xb8,0x39,0xf4,0x14,0x09,0x0}} 2998c2ecf20Sopenharmony_ci}; 3008c2ecf20Sopenharmony_cistatic const struct opl4_region regions_27[] = { /* Synth Bass 2 */ 3018c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x117,8103,100, 0,1,0x00,0xca,0x39,0xf3,0x50,0x08,0x0}} 3028c2ecf20Sopenharmony_ci}; 3038c2ecf20Sopenharmony_cistatic const struct opl4_region regions_28[] = { /* Violin */ 3048c2ecf20Sopenharmony_ci {0x15, 0x3a, {0x105,5158,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}}, 3058c2ecf20Sopenharmony_ci {0x3b, 0x3f, {0x102,4754,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}}, 3068c2ecf20Sopenharmony_ci {0x40, 0x41, {0x106,4132,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}}, 3078c2ecf20Sopenharmony_ci {0x42, 0x44, {0x107,4033,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}}, 3088c2ecf20Sopenharmony_ci {0x45, 0x47, {0x108,3580,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}}, 3098c2ecf20Sopenharmony_ci {0x48, 0x4a, {0x10a,2957,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}}, 3108c2ecf20Sopenharmony_ci {0x4b, 0x4c, {0x10b,2724,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}}, 3118c2ecf20Sopenharmony_ci {0x4d, 0x4e, {0x10c,2530,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}}, 3128c2ecf20Sopenharmony_ci {0x4f, 0x51, {0x10d,2166,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}}, 3138c2ecf20Sopenharmony_ci {0x52, 0x6c, {0x109,1825,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}} 3148c2ecf20Sopenharmony_ci}; 3158c2ecf20Sopenharmony_cistatic const struct opl4_region regions_29[] = { /* Viola */ 3168c2ecf20Sopenharmony_ci {0x15, 0x32, {0x103,5780,100, 0,3,0x00,0xc4,0x3b,0xa3,0x20,0x09,0x0}}, 3178c2ecf20Sopenharmony_ci {0x33, 0x35, {0x104,5534,100, 0,3,0x00,0xc4,0x3b,0xa3,0x20,0x09,0x0}}, 3188c2ecf20Sopenharmony_ci {0x36, 0x38, {0x105,5158,100, 0,3,0x00,0xc4,0x3b,0xa3,0x20,0x09,0x0}}, 3198c2ecf20Sopenharmony_ci {0x39, 0x3d, {0x102,4754,100, 0,3,0x00,0xca,0x3b,0xa3,0x20,0x09,0x0}}, 3208c2ecf20Sopenharmony_ci {0x3e, 0x3f, {0x106,4132,100, 0,3,0x00,0xc4,0x3b,0xa3,0x20,0x09,0x0}}, 3218c2ecf20Sopenharmony_ci {0x40, 0x42, {0x107,4033,100, 0,3,0x00,0xc4,0x3b,0xa3,0x20,0x09,0x0}}, 3228c2ecf20Sopenharmony_ci {0x43, 0x45, {0x108,3580,100, 0,3,0x00,0xd0,0x3b,0xa3,0x20,0x09,0x0}}, 3238c2ecf20Sopenharmony_ci {0x46, 0x48, {0x10a,2957,100, 0,3,0x00,0xca,0x3b,0xa3,0x20,0x09,0x0}}, 3248c2ecf20Sopenharmony_ci {0x49, 0x4a, {0x10b,2724,100, 0,3,0x00,0xd0,0x3b,0xa3,0x20,0x09,0x0}}, 3258c2ecf20Sopenharmony_ci {0x4b, 0x4c, {0x10c,2530,100, 0,3,0x00,0xca,0x3b,0xa3,0x20,0x09,0x0}}, 3268c2ecf20Sopenharmony_ci {0x4d, 0x4f, {0x10d,2166,100, 0,3,0x00,0xd0,0x3b,0xa3,0x20,0x09,0x0}}, 3278c2ecf20Sopenharmony_ci {0x50, 0x6c, {0x109,1825,100, 0,3,0x00,0xd0,0x3b,0xa3,0x20,0x09,0x0}} 3288c2ecf20Sopenharmony_ci}; 3298c2ecf20Sopenharmony_cistatic const struct opl4_region regions_2a[] = { /* Cello */ 3308c2ecf20Sopenharmony_ci {0x15, 0x2d, {0x112,6545,100, 0,3,0x00,0xc0,0x33,0xa0,0x00,0x08,0x0}}, 3318c2ecf20Sopenharmony_ci {0x2e, 0x37, {0x113,5764,100, 0,3,0x00,0xc0,0x33,0xa0,0x00,0x08,0x0}}, 3328c2ecf20Sopenharmony_ci {0x38, 0x3e, {0x115,4378,100, 0,3,0x00,0xc0,0x33,0xa0,0x00,0x18,0x0}}, 3338c2ecf20Sopenharmony_ci {0x3f, 0x44, {0x116,3998,100, 0,3,0x00,0xc0,0x33,0xa0,0x00,0x18,0x0}}, 3348c2ecf20Sopenharmony_ci {0x45, 0x6c, {0x114,3218,100, 0,3,0x00,0xc0,0x33,0xa0,0x00,0x18,0x0}} 3358c2ecf20Sopenharmony_ci}; 3368c2ecf20Sopenharmony_cistatic const struct opl4_region regions_2b[] = { /* Contrabass */ 3378c2ecf20Sopenharmony_ci {0x15, 0x29, {0x110,7713,100, 0,1,0x00,0xc2,0x19,0x90,0x00,0x09,0x0}}, 3388c2ecf20Sopenharmony_ci {0x2a, 0x6c, {0x111,6162,100, 0,1,0x00,0xc2,0x19,0x90,0x00,0x09,0x0}} 3398c2ecf20Sopenharmony_ci}; 3408c2ecf20Sopenharmony_cistatic const struct opl4_region regions_2c[] = { /* Tremolo Strings */ 3418c2ecf20Sopenharmony_ci {0x15, 0x3b, {0x0b0,4810,100, 0,0,0x0a,0xde,0x38,0xf0,0x00,0x07,0x6}}, 3428c2ecf20Sopenharmony_ci {0x3c, 0x41, {0x035,4035,100, 0,0,0x05,0xde,0x38,0xf0,0x00,0x07,0x6}}, 3438c2ecf20Sopenharmony_ci {0x42, 0x47, {0x033,3129,100, 0,0,0x05,0xde,0x38,0xf0,0x00,0x07,0x6}}, 3448c2ecf20Sopenharmony_ci {0x48, 0x52, {0x034,2625,100, 0,0,0x05,0xde,0x38,0xf0,0x00,0x07,0x6}}, 3458c2ecf20Sopenharmony_ci {0x53, 0x6c, {0x0af, 936,100, 0,0,0x00,0xde,0x38,0xf0,0x00,0x07,0x6}} 3468c2ecf20Sopenharmony_ci}; 3478c2ecf20Sopenharmony_cistatic const struct opl4_region regions_2d[] = { /* Pizzicato Strings */ 3488c2ecf20Sopenharmony_ci {0x15, 0x32, {0x0b8,6186,100, 0,0,0x00,0xbc,0x28,0xf0,0x00,0x05,0x0}}, 3498c2ecf20Sopenharmony_ci {0x33, 0x3b, {0x0b9,5031,100, 0,0,0x00,0xbc,0x28,0xf0,0x00,0x05,0x0}}, 3508c2ecf20Sopenharmony_ci {0x3c, 0x42, {0x0bb,4146,100, 0,0,0x00,0xbc,0x28,0xf0,0x00,0x05,0x0}}, 3518c2ecf20Sopenharmony_ci {0x43, 0x48, {0x0ba,3245,100, 0,0,0x00,0xc2,0x28,0xf0,0x00,0x05,0x0}}, 3528c2ecf20Sopenharmony_ci {0x49, 0x6c, {0x0bc,2352,100, 0,0,0x00,0xbc,0x28,0xf0,0x00,0x05,0x0}} 3538c2ecf20Sopenharmony_ci}; 3548c2ecf20Sopenharmony_cistatic const struct opl4_region regions_2e[] = { /* Harp */ 3558c2ecf20Sopenharmony_ci {0x15, 0x46, {0x07e,3740,100, 0,1,0x00,0xd2,0x29,0xf5,0x25,0x07,0x0}}, 3568c2ecf20Sopenharmony_ci {0x47, 0x6c, {0x07f,2319,100, 0,1,0x00,0xd2,0x29,0xf5,0x25,0x07,0x0}} 3578c2ecf20Sopenharmony_ci}; 3588c2ecf20Sopenharmony_cistatic const struct opl4_region regions_2f[] = { /* Timpani */ 3598c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x100,6570,100, 0,0,0x00,0xf8,0x28,0xf0,0x05,0x16,0x0}} 3608c2ecf20Sopenharmony_ci}; 3618c2ecf20Sopenharmony_cistatic const struct opl4_region regions_30[] = { /* Strings */ 3628c2ecf20Sopenharmony_ci {0x15, 0x3b, {0x13c,4806,100, 0,0,0x00,0xc8,0x20,0x80,0x00,0x07,0x0}}, 3638c2ecf20Sopenharmony_ci {0x3c, 0x41, {0x13e,4035,100, 0,0,0x00,0xc8,0x20,0x80,0x00,0x07,0x0}}, 3648c2ecf20Sopenharmony_ci {0x42, 0x47, {0x13d,3122,100, 0,0,0x00,0xc8,0x20,0x80,0x00,0x07,0x0}}, 3658c2ecf20Sopenharmony_ci {0x48, 0x52, {0x13f,2629,100, 0,0,0x00,0xbe,0x20,0x80,0x00,0x07,0x0}}, 3668c2ecf20Sopenharmony_ci {0x53, 0x6c, {0x140, 950,100, 0,0,0x00,0xbe,0x20,0x80,0x00,0x07,0x0}} 3678c2ecf20Sopenharmony_ci}; 3688c2ecf20Sopenharmony_cistatic const struct opl4_region regions_31[] = { /* Slow Strings */ 3698c2ecf20Sopenharmony_ci {0x15, 0x3b, {0x0b0,4810,100, 0,1,0x0a,0xbe,0x19,0xf0,0x00,0x07,0x0}}, 3708c2ecf20Sopenharmony_ci {0x3c, 0x41, {0x035,4035,100, 0,1,0x05,0xbe,0x19,0xf0,0x00,0x07,0x0}}, 3718c2ecf20Sopenharmony_ci {0x42, 0x47, {0x033,3129,100, 0,1,0x05,0xbe,0x19,0xf0,0x00,0x07,0x0}}, 3728c2ecf20Sopenharmony_ci {0x48, 0x52, {0x034,2625,100, 0,1,0x05,0xbe,0x19,0xf0,0x00,0x07,0x0}}, 3738c2ecf20Sopenharmony_ci {0x53, 0x6c, {0x0af, 936,100, 0,1,0x00,0xbe,0x19,0xf0,0x00,0x07,0x0}} 3748c2ecf20Sopenharmony_ci}; 3758c2ecf20Sopenharmony_cistatic const struct opl4_region regions_32[] = { /* Synth Strings 1 */ 3768c2ecf20Sopenharmony_ci {0x05, 0x71, {0x002,6045,100,-2,0,0x00,0xa6,0x20,0x93,0x22,0x06,0x0}}, 3778c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x0ae,3261,100, 2,0,0x00,0xc6,0x20,0x70,0x01,0x06,0x0}} 3788c2ecf20Sopenharmony_ci}; 3798c2ecf20Sopenharmony_cistatic const struct opl4_region regions_33[] = { /* Synth Strings 2 */ 3808c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x002,4513,100, 5,1,0x00,0xb4,0x19,0x70,0x00,0x06,0x0}}, 3818c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x002,4501,100,-5,1,0x00,0xb4,0x19,0x70,0x00,0x06,0x0}} 3828c2ecf20Sopenharmony_ci}; 3838c2ecf20Sopenharmony_cistatic const struct opl4_region regions_34[] = { /* Choir Aahs */ 3848c2ecf20Sopenharmony_ci {0x15, 0x3a, {0x018,5010,100, 0,2,0x00,0xc2,0x1a,0x70,0x00,0x08,0x0}}, 3858c2ecf20Sopenharmony_ci {0x3b, 0x40, {0x019,4370,100, 0,2,0x00,0xc2,0x1a,0x70,0x00,0x08,0x0}}, 3868c2ecf20Sopenharmony_ci {0x41, 0x47, {0x01a,3478,100, 0,2,0x00,0xc2,0x1a,0x70,0x00,0x08,0x0}}, 3878c2ecf20Sopenharmony_ci {0x48, 0x6c, {0x01b,2197,100, 0,2,0x00,0xc2,0x1a,0x70,0x00,0x08,0x0}} 3888c2ecf20Sopenharmony_ci}; 3898c2ecf20Sopenharmony_cistatic const struct opl4_region regions_35[] = { /* Voice Oohs */ 3908c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x029,3596,100, 0,0,0x00,0xe6,0x20,0xf7,0x20,0x08,0x0}} 3918c2ecf20Sopenharmony_ci}; 3928c2ecf20Sopenharmony_cistatic const struct opl4_region regions_36[] = { /* Synth Voice */ 3938c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x02a,3482,100, 0,1,0x00,0xc2,0x19,0x85,0x21,0x07,0x0}} 3948c2ecf20Sopenharmony_ci}; 3958c2ecf20Sopenharmony_cistatic const struct opl4_region regions_37[] = { /* Orchestra Hit */ 3968c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x049,4394,100, 0,0,0x00,0xfe,0x30,0x80,0x05,0x05,0x0}} 3978c2ecf20Sopenharmony_ci}; 3988c2ecf20Sopenharmony_cistatic const struct opl4_region regions_38[] = { /* Trumpet */ 3998c2ecf20Sopenharmony_ci {0x15, 0x3c, {0x0f6,4706,100, 0,2,0x00,0xd6,0x32,0xf3,0x20,0x0a,0x0}}, 4008c2ecf20Sopenharmony_ci {0x3d, 0x43, {0x0f8,3894,100, 0,2,0x00,0xd6,0x32,0xf3,0x20,0x0a,0x0}}, 4018c2ecf20Sopenharmony_ci {0x44, 0x48, {0x0f7,3118,100, 0,2,0x00,0xd6,0x32,0xf3,0x20,0x0a,0x0}}, 4028c2ecf20Sopenharmony_ci {0x49, 0x4e, {0x0fa,2322,100, 0,2,0x00,0xd6,0x32,0xf3,0x20,0x0a,0x0}}, 4038c2ecf20Sopenharmony_ci {0x4f, 0x55, {0x0f9,1634,100, 0,2,0x00,0xd6,0x32,0xf3,0x20,0x0a,0x0}}, 4048c2ecf20Sopenharmony_ci {0x56, 0x6c, {0x0fb, 786,100, 0,2,0x00,0xd6,0x32,0xf3,0x20,0x0a,0x0}} 4058c2ecf20Sopenharmony_ci}; 4068c2ecf20Sopenharmony_cistatic const struct opl4_region regions_39[] = { /* Trombone */ 4078c2ecf20Sopenharmony_ci {0x15, 0x3a, {0x0f0,5053,100, 0,1,0x00,0xd6,0x21,0xf0,0x00,0x09,0x0}}, 4088c2ecf20Sopenharmony_ci {0x3b, 0x3f, {0x0f1,4290,100, 0,1,0x00,0xd6,0x21,0xf0,0x00,0x09,0x0}}, 4098c2ecf20Sopenharmony_ci {0x40, 0x6c, {0x0f2,3580,100, 0,1,0x00,0xd6,0x21,0xf0,0x00,0x09,0x0}} 4108c2ecf20Sopenharmony_ci}; 4118c2ecf20Sopenharmony_cistatic const struct opl4_region regions_3a[] = { /* Tuba */ 4128c2ecf20Sopenharmony_ci {0x15, 0x2d, {0x085,7096,100, 0,1,0x00,0xde,0x21,0xf5,0x10,0x09,0x0}}, 4138c2ecf20Sopenharmony_ci {0x2e, 0x6c, {0x086,6014,100, 0,1,0x00,0xde,0x21,0xf5,0x10,0x09,0x0}} 4148c2ecf20Sopenharmony_ci}; 4158c2ecf20Sopenharmony_cistatic const struct opl4_region regions_3b[] = { /* Muted Trumpet */ 4168c2ecf20Sopenharmony_ci {0x15, 0x45, {0x0b1,4135,100, 0,0,0x00,0xcc,0x28,0xf3,0x10,0x0a,0x1}}, 4178c2ecf20Sopenharmony_ci {0x46, 0x6c, {0x0b2,2599,100, 0,0,0x00,0xcc,0x28,0x83,0x10,0x0a,0x1}} 4188c2ecf20Sopenharmony_ci}; 4198c2ecf20Sopenharmony_cistatic const struct opl4_region regions_3c[] = { /* French Horns */ 4208c2ecf20Sopenharmony_ci {0x15, 0x49, {0x07c,3624,100, 0,2,0x00,0xd0,0x1a,0xf0,0x00,0x09,0x0}}, 4218c2ecf20Sopenharmony_ci {0x4a, 0x6c, {0x07d,2664,100, 0,2,0x00,0xd0,0x1a,0xf0,0x00,0x09,0x0}} 4228c2ecf20Sopenharmony_ci}; 4238c2ecf20Sopenharmony_cistatic const struct opl4_region regions_3d[] = { /* Brass Section */ 4248c2ecf20Sopenharmony_ci {0x15, 0x42, {0x0fc,4375,100, 0,0,0x00,0xd6,0x28,0xf0,0x00,0x0a,0x0}}, 4258c2ecf20Sopenharmony_ci {0x43, 0x6c, {0x0fd,2854,100, 0,0,0x00,0xd6,0x28,0xf0,0x00,0x0a,0x0}} 4268c2ecf20Sopenharmony_ci}; 4278c2ecf20Sopenharmony_cistatic const struct opl4_region regions_3e[] = { /* Synth Brass 1 */ 4288c2ecf20Sopenharmony_ci {0x01, 0x27, {0x0d3,9094,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}}, 4298c2ecf20Sopenharmony_ci {0x28, 0x2d, {0x0da,8335,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}}, 4308c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x0d4,7558,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}}, 4318c2ecf20Sopenharmony_ci {0x34, 0x39, {0x0db,6785,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}}, 4328c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x0d5,6042,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}}, 4338c2ecf20Sopenharmony_ci {0x40, 0x45, {0x0dc,5257,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}}, 4348c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x0d6,4493,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}}, 4358c2ecf20Sopenharmony_ci {0x4c, 0x51, {0x0dd,3741,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}}, 4368c2ecf20Sopenharmony_ci {0x52, 0x57, {0x0d7,3012,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}}, 4378c2ecf20Sopenharmony_ci {0x58, 0x5d, {0x0de,2167,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}}, 4388c2ecf20Sopenharmony_ci {0x5e, 0x63, {0x0d8,1421,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}}, 4398c2ecf20Sopenharmony_ci {0x64, 0x7f, {0x0d9,-115,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}}, 4408c2ecf20Sopenharmony_ci {0x01, 0x27, {0x118,9103,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}}, 4418c2ecf20Sopenharmony_ci {0x28, 0x2d, {0x119,8340,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}}, 4428c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x11a,7565,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}}, 4438c2ecf20Sopenharmony_ci {0x34, 0x39, {0x11b,6804,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}}, 4448c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x11c,6042,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}}, 4458c2ecf20Sopenharmony_ci {0x40, 0x45, {0x11d,5277,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}}, 4468c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x11e,4520,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}}, 4478c2ecf20Sopenharmony_ci {0x4c, 0x51, {0x11f,3741,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}}, 4488c2ecf20Sopenharmony_ci {0x52, 0x57, {0x120,3012,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}}, 4498c2ecf20Sopenharmony_ci {0x58, 0x5d, {0x121,2166,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}}, 4508c2ecf20Sopenharmony_ci {0x5e, 0x64, {0x122,1421,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}}, 4518c2ecf20Sopenharmony_ci {0x65, 0x7f, {0x123,-115,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}} 4528c2ecf20Sopenharmony_ci}; 4538c2ecf20Sopenharmony_cistatic const struct opl4_region regions_3f[] = { /* Synth Brass 2 */ 4548c2ecf20Sopenharmony_ci {0x01, 0x27, {0x118,9113,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}}, 4558c2ecf20Sopenharmony_ci {0x28, 0x2d, {0x119,8350,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}}, 4568c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x11a,7575,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}}, 4578c2ecf20Sopenharmony_ci {0x34, 0x39, {0x11b,6814,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}}, 4588c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x11c,6052,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}}, 4598c2ecf20Sopenharmony_ci {0x40, 0x45, {0x11d,5287,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}}, 4608c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x11e,4530,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}}, 4618c2ecf20Sopenharmony_ci {0x4c, 0x51, {0x11f,3751,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}}, 4628c2ecf20Sopenharmony_ci {0x52, 0x57, {0x120,3022,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}}, 4638c2ecf20Sopenharmony_ci {0x58, 0x5d, {0x121,2176,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}}, 4648c2ecf20Sopenharmony_ci {0x5e, 0x64, {0x122,1431,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}}, 4658c2ecf20Sopenharmony_ci {0x65, 0x7f, {0x123,-105,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}}, 4668c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x124,4034,100,-3,2,0x00,0xea,0x22,0x85,0x23,0x08,0x0}} 4678c2ecf20Sopenharmony_ci}; 4688c2ecf20Sopenharmony_cistatic const struct opl4_region regions_40[] = { /* Soprano Sax */ 4698c2ecf20Sopenharmony_ci {0x15, 0x3f, {0x0e3,4228,100, 0,1,0x00,0xc8,0x21,0xf5,0x20,0x0a,0x0}}, 4708c2ecf20Sopenharmony_ci {0x40, 0x45, {0x0e4,3495,100, 0,1,0x00,0xc8,0x21,0xf5,0x20,0x0a,0x0}}, 4718c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x0e5,2660,100, 0,1,0x00,0xd6,0x21,0xf5,0x20,0x0a,0x0}}, 4728c2ecf20Sopenharmony_ci {0x4c, 0x51, {0x0e6,2002,100, 0,1,0x00,0xd6,0x21,0xf5,0x20,0x0a,0x0}}, 4738c2ecf20Sopenharmony_ci {0x52, 0x59, {0x0e7,1186,100, 0,1,0x00,0xd6,0x21,0xf5,0x20,0x0a,0x0}}, 4748c2ecf20Sopenharmony_ci {0x59, 0x6c, {0x0e8,1730,100, 0,1,0x00,0xc8,0x21,0xf5,0x20,0x0a,0x0}} 4758c2ecf20Sopenharmony_ci}; 4768c2ecf20Sopenharmony_cistatic const struct opl4_region regions_41[] = { /* Alto Sax */ 4778c2ecf20Sopenharmony_ci {0x15, 0x32, {0x092,6204,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}}, 4788c2ecf20Sopenharmony_ci {0x33, 0x35, {0x096,5812,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}}, 4798c2ecf20Sopenharmony_ci {0x36, 0x3a, {0x099,5318,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}}, 4808c2ecf20Sopenharmony_ci {0x3b, 0x3b, {0x08f,5076,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}}, 4818c2ecf20Sopenharmony_ci {0x3c, 0x3e, {0x093,4706,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}}, 4828c2ecf20Sopenharmony_ci {0x3f, 0x41, {0x097,4321,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}}, 4838c2ecf20Sopenharmony_ci {0x42, 0x44, {0x09a,3893,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}}, 4848c2ecf20Sopenharmony_ci {0x45, 0x47, {0x090,3497,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}}, 4858c2ecf20Sopenharmony_ci {0x48, 0x4a, {0x094,3119,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}}, 4868c2ecf20Sopenharmony_ci {0x4b, 0x4d, {0x098,2726,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}}, 4878c2ecf20Sopenharmony_ci {0x4e, 0x50, {0x09b,2393,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}}, 4888c2ecf20Sopenharmony_ci {0x51, 0x53, {0x091,2088,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}}, 4898c2ecf20Sopenharmony_ci {0x54, 0x6c, {0x095,1732,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}} 4908c2ecf20Sopenharmony_ci}; 4918c2ecf20Sopenharmony_cistatic const struct opl4_region regions_42[] = { /* Tenor Sax */ 4928c2ecf20Sopenharmony_ci {0x24, 0x30, {0x0e9,6301,100, 0,1,0x00,0xbc,0x19,0xf4,0x10,0x0b,0x0}}, 4938c2ecf20Sopenharmony_ci {0x31, 0x34, {0x0ea,5781,100, 0,1,0x00,0xbc,0x19,0xf4,0x10,0x0b,0x0}}, 4948c2ecf20Sopenharmony_ci {0x35, 0x3a, {0x0eb,5053,100, 0,1,0x00,0xbc,0x19,0xf4,0x10,0x0b,0x0}}, 4958c2ecf20Sopenharmony_ci {0x3b, 0x41, {0x0ed,4165,100, 0,1,0x00,0xbc,0x19,0xf4,0x10,0x0b,0x0}}, 4968c2ecf20Sopenharmony_ci {0x42, 0x47, {0x0ec,3218,100, 0,1,0x00,0xbc,0x19,0xf4,0x10,0x0b,0x0}}, 4978c2ecf20Sopenharmony_ci {0x48, 0x51, {0x0ee,2462,100, 0,1,0x00,0xbc,0x19,0xf4,0x10,0x0b,0x0}}, 4988c2ecf20Sopenharmony_ci {0x52, 0x6c, {0x0ef,1421,100, 0,1,0x00,0xbc,0x19,0xf4,0x10,0x0b,0x0}} 4998c2ecf20Sopenharmony_ci}; 5008c2ecf20Sopenharmony_cistatic const struct opl4_region regions_43[] = { /* Baritone Sax */ 5018c2ecf20Sopenharmony_ci {0x15, 0x2d, {0x0df,6714,100, 0,1,0x00,0xce,0x19,0xf0,0x00,0x0a,0x0}}, 5028c2ecf20Sopenharmony_ci {0x2e, 0x34, {0x0e1,5552,100, 0,1,0x00,0xce,0x19,0xf0,0x00,0x0a,0x0}}, 5038c2ecf20Sopenharmony_ci {0x35, 0x39, {0x0e2,5178,100, 0,1,0x00,0xce,0x19,0xf0,0x00,0x0a,0x0}}, 5048c2ecf20Sopenharmony_ci {0x3a, 0x6c, {0x0e0,4437,100, 0,1,0x00,0xce,0x19,0xf0,0x00,0x0a,0x0}} 5058c2ecf20Sopenharmony_ci}; 5068c2ecf20Sopenharmony_cistatic const struct opl4_region regions_44[] = { /* Oboe */ 5078c2ecf20Sopenharmony_ci {0x15, 0x3c, {0x042,4493,100, 0,1,0x00,0xe6,0x39,0xf4,0x10,0x0a,0x0}}, 5088c2ecf20Sopenharmony_ci {0x3d, 0x43, {0x044,3702,100, 0,1,0x00,0xdc,0x39,0xf4,0x10,0x0a,0x0}}, 5098c2ecf20Sopenharmony_ci {0x44, 0x49, {0x043,2956,100, 0,1,0x00,0xdc,0x39,0xf4,0x10,0x0a,0x0}}, 5108c2ecf20Sopenharmony_ci {0x4a, 0x4f, {0x046,2166,100, 0,1,0x00,0xdc,0x39,0xf4,0x10,0x0a,0x0}}, 5118c2ecf20Sopenharmony_ci {0x50, 0x55, {0x045,1420,100, 0,1,0x00,0xdc,0x39,0xf4,0x10,0x0a,0x0}}, 5128c2ecf20Sopenharmony_ci {0x56, 0x6c, {0x047, 630,100, 0,1,0x00,0xe6,0x39,0xf4,0x10,0x0a,0x0}} 5138c2ecf20Sopenharmony_ci}; 5148c2ecf20Sopenharmony_cistatic const struct opl4_region regions_45[] = { /* English Horn */ 5158c2ecf20Sopenharmony_ci {0x15, 0x38, {0x03c,5098,100, 0,1,0x00,0xc4,0x31,0xf0,0x00,0x09,0x0}}, 5168c2ecf20Sopenharmony_ci {0x39, 0x3e, {0x03b,4291,100, 0,1,0x00,0xc4,0x31,0xf0,0x00,0x09,0x0}}, 5178c2ecf20Sopenharmony_ci {0x3f, 0x6c, {0x03d,3540,100, 0,1,0x00,0xc4,0x31,0xf0,0x00,0x09,0x0}} 5188c2ecf20Sopenharmony_ci}; 5198c2ecf20Sopenharmony_cistatic const struct opl4_region regions_46[] = { /* Bassoon */ 5208c2ecf20Sopenharmony_ci {0x15, 0x22, {0x038,7833,100, 0,1,0x00,0xc6,0x31,0xf0,0x00,0x0b,0x0}}, 5218c2ecf20Sopenharmony_ci {0x23, 0x2e, {0x03a,7070,100, 0,1,0x00,0xc6,0x31,0xf0,0x00,0x0b,0x0}}, 5228c2ecf20Sopenharmony_ci {0x2f, 0x6c, {0x039,6302,100, 0,1,0x00,0xc6,0x31,0xf0,0x00,0x0b,0x0}} 5238c2ecf20Sopenharmony_ci}; 5248c2ecf20Sopenharmony_cistatic const struct opl4_region regions_47[] = { /* Clarinet */ 5258c2ecf20Sopenharmony_ci {0x15, 0x3b, {0x09e,5900,100, 0,1,0x00,0xc8,0x29,0xf3,0x20,0x0a,0x0}}, 5268c2ecf20Sopenharmony_ci {0x3c, 0x41, {0x0a0,5158,100, 0,1,0x00,0xc8,0x29,0xf3,0x20,0x0a,0x0}}, 5278c2ecf20Sopenharmony_ci {0x42, 0x4a, {0x09f,4260,100, 0,1,0x00,0xc8,0x29,0xf3,0x20,0x0a,0x0}}, 5288c2ecf20Sopenharmony_ci {0x4b, 0x6c, {0x0a1,2957,100, 0,1,0x00,0xc8,0x29,0xf3,0x20,0x0a,0x0}} 5298c2ecf20Sopenharmony_ci}; 5308c2ecf20Sopenharmony_cistatic const struct opl4_region regions_48[] = { /* Piccolo */ 5318c2ecf20Sopenharmony_ci {0x15, 0x40, {0x071,4803,100, 0,0,0x00,0xe6,0x38,0xf0,0x00,0x0a,0x2}}, 5328c2ecf20Sopenharmony_ci {0x41, 0x4d, {0x072,3314,100, 0,0,0x00,0xe6,0x38,0xf0,0x00,0x0a,0x2}}, 5338c2ecf20Sopenharmony_ci {0x4e, 0x53, {0x073,1731,100, 0,0,0x00,0xe6,0x38,0xf0,0x00,0x0a,0x2}}, 5348c2ecf20Sopenharmony_ci {0x54, 0x5f, {0x074,2085,100, 0,0,0x00,0xe6,0x38,0xf0,0x00,0x0a,0x2}}, 5358c2ecf20Sopenharmony_ci {0x60, 0x6c, {0x075,1421,100, 0,0,0x00,0xe6,0x38,0xf0,0x00,0x0a,0x2}} 5368c2ecf20Sopenharmony_ci}; 5378c2ecf20Sopenharmony_cistatic const struct opl4_region regions_49[] = { /* Flute */ 5388c2ecf20Sopenharmony_ci {0x15, 0x40, {0x071,4803,100, 0,0,0x00,0xdc,0x38,0xf0,0x00,0x0a,0x2}}, 5398c2ecf20Sopenharmony_ci {0x41, 0x4d, {0x072,3314,100, 0,0,0x00,0xdc,0x38,0xf0,0x00,0x0a,0x2}}, 5408c2ecf20Sopenharmony_ci {0x4e, 0x6c, {0x073,1731,100, 0,0,0x00,0xe6,0x38,0xf0,0x00,0x0a,0x2}} 5418c2ecf20Sopenharmony_ci}; 5428c2ecf20Sopenharmony_cistatic const struct opl4_region regions_4a[] = { /* Recorder */ 5438c2ecf20Sopenharmony_ci {0x15, 0x6f, {0x0bd,4897,100, 0,0,0x00,0xec,0x30,0x70,0x00,0x09,0x1}} 5448c2ecf20Sopenharmony_ci}; 5458c2ecf20Sopenharmony_cistatic const struct opl4_region regions_4b[] = { /* Pan Flute */ 5468c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x077,2359,100, 0,0,0x00,0xde,0x38,0xf0,0x00,0x09,0x3}} 5478c2ecf20Sopenharmony_ci}; 5488c2ecf20Sopenharmony_cistatic const struct opl4_region regions_4c[] = { /* Bottle Blow */ 5498c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x077,2359,100, 0,0,0x00,0xc8,0x38,0xf0,0x00,0x09,0x1}}, 5508c2ecf20Sopenharmony_ci {0x01, 0x7f, {0x125,7372,100, 0,0,0x1e,0x80,0x00,0xf0,0x00,0x09,0x0}} 5518c2ecf20Sopenharmony_ci}; 5528c2ecf20Sopenharmony_cistatic const struct opl4_region regions_4d[] = { /* Shakuhachi */ 5538c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x0ab,4548,100, 0,0,0x00,0xd6,0x30,0xf0,0x00,0x0a,0x3}}, 5548c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x076,3716,100, 0,0,0x00,0xa2,0x28,0x70,0x00,0x09,0x2}} 5558c2ecf20Sopenharmony_ci}; 5568c2ecf20Sopenharmony_cistatic const struct opl4_region regions_4e[] = { /* Whistle */ 5578c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x0aa,1731,100, 0,4,0x00,0xd2,0x2c,0x70,0x00,0x0a,0x0}} 5588c2ecf20Sopenharmony_ci}; 5598c2ecf20Sopenharmony_cistatic const struct opl4_region regions_4f[] = { /* Ocarina */ 5608c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x0aa,1731,100, 0,1,0x00,0xce,0x29,0x90,0x00,0x0a,0x1}} 5618c2ecf20Sopenharmony_ci}; 5628c2ecf20Sopenharmony_cistatic const struct opl4_region regions_50[] = { /* Square Lead */ 5638c2ecf20Sopenharmony_ci {0x01, 0x2a, {0x0cc,9853,100, 3,0,0x00,0xac,0x38,0xc6,0x21,0x09,0x0}}, 5648c2ecf20Sopenharmony_ci {0x2b, 0x36, {0x0cd,6785,100, 3,0,0x00,0xac,0x38,0xc6,0x21,0x09,0x0}}, 5658c2ecf20Sopenharmony_ci {0x37, 0x42, {0x0ca,5248,100, 3,0,0x00,0xac,0x38,0xc6,0x21,0x09,0x0}}, 5668c2ecf20Sopenharmony_ci {0x43, 0x4e, {0x0cf,3713,100, 3,0,0x00,0xac,0x38,0xc6,0x21,0x09,0x0}}, 5678c2ecf20Sopenharmony_ci {0x4f, 0x5a, {0x0ce,2176,100, 3,0,0x00,0xac,0x38,0xc6,0x21,0x09,0x0}}, 5688c2ecf20Sopenharmony_ci {0x5b, 0x7f, {0x0cb, 640,100, 3,0,0x00,0xac,0x38,0xc6,0x21,0x09,0x0}}, 5698c2ecf20Sopenharmony_ci {0x01, 0x2a, {0x0cc,9844,100,-3,0,0x00,0xac,0x08,0xc6,0x21,0x09,0x0}}, 5708c2ecf20Sopenharmony_ci {0x2b, 0x36, {0x0cd,6776,100,-3,0,0x00,0xac,0x08,0xc6,0x21,0x09,0x0}}, 5718c2ecf20Sopenharmony_ci {0x37, 0x42, {0x0ca,5239,100,-3,0,0x00,0xac,0x08,0xc6,0x21,0x09,0x0}}, 5728c2ecf20Sopenharmony_ci {0x43, 0x4e, {0x0cf,3704,100,-3,0,0x00,0xac,0x08,0xc6,0x21,0x09,0x0}}, 5738c2ecf20Sopenharmony_ci {0x4f, 0x5a, {0x0ce,2167,100,-3,0,0x00,0xac,0x08,0xc6,0x21,0x09,0x0}}, 5748c2ecf20Sopenharmony_ci {0x5b, 0x7f, {0x0cb, 631,100,-3,0,0x00,0xac,0x08,0xc6,0x21,0x09,0x0}} 5758c2ecf20Sopenharmony_ci}; 5768c2ecf20Sopenharmony_cistatic const struct opl4_region regions_51[] = { /* Sawtooth Lead */ 5778c2ecf20Sopenharmony_ci {0x01, 0x27, {0x118,9108,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5788c2ecf20Sopenharmony_ci {0x28, 0x2d, {0x119,8345,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5798c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x11a,7570,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5808c2ecf20Sopenharmony_ci {0x34, 0x39, {0x11b,6809,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5818c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x11c,6047,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5828c2ecf20Sopenharmony_ci {0x40, 0x45, {0x11d,5282,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5838c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x11e,4525,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5848c2ecf20Sopenharmony_ci {0x4c, 0x51, {0x11f,3746,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5858c2ecf20Sopenharmony_ci {0x52, 0x57, {0x120,3017,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5868c2ecf20Sopenharmony_ci {0x58, 0x5d, {0x121,2171,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5878c2ecf20Sopenharmony_ci {0x5e, 0x66, {0x122,1426,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5888c2ecf20Sopenharmony_ci {0x67, 0x7f, {0x123,-110,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5898c2ecf20Sopenharmony_ci {0x01, 0x27, {0x118,9098,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5908c2ecf20Sopenharmony_ci {0x28, 0x2d, {0x119,8335,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5918c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x11a,7560,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5928c2ecf20Sopenharmony_ci {0x34, 0x39, {0x11b,6799,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5938c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x11c,6037,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5948c2ecf20Sopenharmony_ci {0x40, 0x45, {0x11d,5272,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5958c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x11e,4515,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5968c2ecf20Sopenharmony_ci {0x4c, 0x51, {0x11f,3736,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5978c2ecf20Sopenharmony_ci {0x52, 0x57, {0x120,3007,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5988c2ecf20Sopenharmony_ci {0x58, 0x5d, {0x121,2161,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 5998c2ecf20Sopenharmony_ci {0x5e, 0x66, {0x122,1416,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}, 6008c2ecf20Sopenharmony_ci {0x67, 0x7f, {0x123,-120,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}} 6018c2ecf20Sopenharmony_ci}; 6028c2ecf20Sopenharmony_cistatic const struct opl4_region regions_52[] = { /* Calliope Lead */ 6038c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x0aa,1731,100, 0,0,0x00,0xc2,0x28,0x90,0x00,0x0a,0x2}}, 6048c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x076,3716,100, 0,0,0x00,0xb6,0x28,0xb0,0x00,0x09,0x2}} 6058c2ecf20Sopenharmony_ci}; 6068c2ecf20Sopenharmony_cistatic const struct opl4_region regions_53[] = { /* Chiffer Lead */ 6078c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x13a,3665,100, 0,2,0x00,0xcc,0x2a,0xf0,0x10,0x09,0x1}}, 6088c2ecf20Sopenharmony_ci {0x01, 0x7f, {0x0fe,3660,100, 0,0,0x00,0xbe,0x28,0xf3,0x10,0x17,0x0}} 6098c2ecf20Sopenharmony_ci}; 6108c2ecf20Sopenharmony_cistatic const struct opl4_region regions_54[] = { /* Charang Lead */ 6118c2ecf20Sopenharmony_ci {0x00, 0x40, {0x0a5,6594,100, 0,3,0x00,0xba,0x33,0xf2,0x11,0x09,0x0}}, 6128c2ecf20Sopenharmony_ci {0x41, 0x7f, {0x0a6,5433,100, 0,3,0x00,0xba,0x33,0xf2,0x11,0x09,0x0}}, 6138c2ecf20Sopenharmony_ci {0x01, 0x27, {0x118,9098,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}}, 6148c2ecf20Sopenharmony_ci {0x28, 0x2d, {0x119,8335,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}}, 6158c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x11a,7560,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}}, 6168c2ecf20Sopenharmony_ci {0x34, 0x39, {0x11b,6799,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}}, 6178c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x11c,6037,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}}, 6188c2ecf20Sopenharmony_ci {0x40, 0x45, {0x11d,5272,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}}, 6198c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x11e,4515,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}}, 6208c2ecf20Sopenharmony_ci {0x4c, 0x51, {0x11f,3736,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}}, 6218c2ecf20Sopenharmony_ci {0x52, 0x57, {0x120,3007,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}}, 6228c2ecf20Sopenharmony_ci {0x58, 0x5d, {0x121,2161,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}}, 6238c2ecf20Sopenharmony_ci {0x5e, 0x66, {0x122,1416,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}}, 6248c2ecf20Sopenharmony_ci {0x67, 0x7f, {0x123,-120,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}} 6258c2ecf20Sopenharmony_ci}; 6268c2ecf20Sopenharmony_cistatic const struct opl4_region regions_55[] = { /* Voice Lead */ 6278c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x0aa,1739,100, 0,6,0x00,0x8c,0x2e,0x90,0x00,0x0a,0x0}}, 6288c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x02a,3474,100, 0,1,0x00,0xd8,0x29,0xf0,0x05,0x0a,0x0}} 6298c2ecf20Sopenharmony_ci}; 6308c2ecf20Sopenharmony_cistatic const struct opl4_region regions_56[] = { /* 5ths Lead */ 6318c2ecf20Sopenharmony_ci {0x01, 0x27, {0x118,8468,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}}, 6328c2ecf20Sopenharmony_ci {0x28, 0x2d, {0x119,7705,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}}, 6338c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x11a,6930,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}}, 6348c2ecf20Sopenharmony_ci {0x34, 0x39, {0x11b,6169,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}}, 6358c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x11c,5407,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}}, 6368c2ecf20Sopenharmony_ci {0x40, 0x45, {0x11d,4642,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}}, 6378c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x11e,3885,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}}, 6388c2ecf20Sopenharmony_ci {0x4c, 0x51, {0x11f,3106,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}}, 6398c2ecf20Sopenharmony_ci {0x52, 0x57, {0x120,2377,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}}, 6408c2ecf20Sopenharmony_ci {0x58, 0x5d, {0x121,1531,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}}, 6418c2ecf20Sopenharmony_ci {0x5e, 0x64, {0x122, 786,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}}, 6428c2ecf20Sopenharmony_ci {0x65, 0x7f, {0x123,-750,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}}, 6438c2ecf20Sopenharmony_ci {0x05, 0x71, {0x002,4503,100, 0,1,0x00,0xb8,0x31,0xb3,0x20,0x0b,0x0}} 6448c2ecf20Sopenharmony_ci}; 6458c2ecf20Sopenharmony_cistatic const struct opl4_region regions_57[] = { /* Bass & Lead */ 6468c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x117,8109,100, 0,1,0x00,0xbc,0x29,0xf3,0x50,0x08,0x0}}, 6478c2ecf20Sopenharmony_ci {0x01, 0x27, {0x118,9097,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}}, 6488c2ecf20Sopenharmony_ci {0x28, 0x2d, {0x119,8334,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}}, 6498c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x11a,7559,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}}, 6508c2ecf20Sopenharmony_ci {0x34, 0x39, {0x11b,6798,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}}, 6518c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x11c,6036,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}}, 6528c2ecf20Sopenharmony_ci {0x40, 0x45, {0x11d,5271,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}}, 6538c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x11e,4514,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}}, 6548c2ecf20Sopenharmony_ci {0x4c, 0x51, {0x11f,3735,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}}, 6558c2ecf20Sopenharmony_ci {0x52, 0x57, {0x120,3006,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}}, 6568c2ecf20Sopenharmony_ci {0x58, 0x5d, {0x121,2160,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}}, 6578c2ecf20Sopenharmony_ci {0x5e, 0x66, {0x122,1415,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}}, 6588c2ecf20Sopenharmony_ci {0x67, 0x7f, {0x123,-121,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}} 6598c2ecf20Sopenharmony_ci}; 6608c2ecf20Sopenharmony_cistatic const struct opl4_region regions_58[] = { /* New Age Pad */ 6618c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x002,4501,100, 0,4,0x00,0xa4,0x24,0x80,0x01,0x05,0x0}}, 6628c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x0f3,4253,100, 0,3,0x00,0x8c,0x23,0xa2,0x14,0x06,0x1}} 6638c2ecf20Sopenharmony_ci}; 6648c2ecf20Sopenharmony_cistatic const struct opl4_region regions_59[] = { /* Warm Pad */ 6658c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x04e,5306,100, 2,2,0x00,0x92,0x2a,0x34,0x23,0x05,0x2}}, 6668c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x029,3575,100,-2,2,0x00,0xbe,0x22,0x31,0x23,0x06,0x0}} 6678c2ecf20Sopenharmony_ci}; 6688c2ecf20Sopenharmony_cistatic const struct opl4_region regions_5a[] = { /* Polysynth Pad */ 6698c2ecf20Sopenharmony_ci {0x01, 0x27, {0x118,9111,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}}, 6708c2ecf20Sopenharmony_ci {0x28, 0x2d, {0x119,8348,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}}, 6718c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x11a,7573,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}}, 6728c2ecf20Sopenharmony_ci {0x34, 0x39, {0x11b,6812,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}}, 6738c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x11c,6050,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}}, 6748c2ecf20Sopenharmony_ci {0x40, 0x45, {0x11d,5285,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}}, 6758c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x11e,4528,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}}, 6768c2ecf20Sopenharmony_ci {0x4c, 0x51, {0x11f,3749,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}}, 6778c2ecf20Sopenharmony_ci {0x52, 0x57, {0x120,3020,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}}, 6788c2ecf20Sopenharmony_ci {0x58, 0x5d, {0x121,2174,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}}, 6798c2ecf20Sopenharmony_ci {0x5e, 0x66, {0x122,1429,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}}, 6808c2ecf20Sopenharmony_ci {0x67, 0x7f, {0x123,-107,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}}, 6818c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x124,4024,100, 0,2,0x00,0xae,0x22,0xe5,0x20,0x08,0x0}} 6828c2ecf20Sopenharmony_ci}; 6838c2ecf20Sopenharmony_cistatic const struct opl4_region regions_5b[] = { /* Choir Pad */ 6848c2ecf20Sopenharmony_ci {0x15, 0x3a, {0x018,5010,100, 0,5,0x00,0xb0,0x25,0x70,0x00,0x06,0x0}}, 6858c2ecf20Sopenharmony_ci {0x3b, 0x40, {0x019,4370,100, 0,5,0x00,0xb0,0x25,0x70,0x00,0x06,0x0}}, 6868c2ecf20Sopenharmony_ci {0x41, 0x47, {0x01a,3478,100, 0,5,0x00,0xb0,0x25,0x70,0x00,0x06,0x0}}, 6878c2ecf20Sopenharmony_ci {0x48, 0x6c, {0x01b,2197,100, 0,5,0x00,0xb0,0x25,0x70,0x00,0x06,0x0}}, 6888c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x02a,3482,100, 0,4,0x00,0x98,0x24,0x65,0x21,0x06,0x0}} 6898c2ecf20Sopenharmony_ci}; 6908c2ecf20Sopenharmony_cistatic const struct opl4_region regions_5c[] = { /* Bowed Pad */ 6918c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x101,4790,100,-1,1,0x00,0xbe,0x19,0x44,0x14,0x16,0x0}}, 6928c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x0aa,1720,100, 1,1,0x00,0x94,0x19,0x40,0x00,0x06,0x0}} 6938c2ecf20Sopenharmony_ci}; 6948c2ecf20Sopenharmony_cistatic const struct opl4_region regions_5d[] = { /* Metallic Pad */ 6958c2ecf20Sopenharmony_ci {0x15, 0x31, {0x00c,6943,100, 0,2,0x00,0xa0,0x0a,0x60,0x03,0x06,0x0}}, 6968c2ecf20Sopenharmony_ci {0x32, 0x38, {0x00d,5416,100, 0,2,0x00,0xa0,0x0a,0x60,0x03,0x06,0x0}}, 6978c2ecf20Sopenharmony_ci {0x39, 0x47, {0x00e,4385,100, 0,2,0x00,0xa0,0x0a,0x60,0x03,0x06,0x0}}, 6988c2ecf20Sopenharmony_ci {0x48, 0x6c, {0x00f,2849,100, 0,2,0x00,0xa0,0x0a,0x60,0x03,0x06,0x0}}, 6998c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x03f,4224,100, 0,1,0x00,0x9c,0x31,0x65,0x16,0x07,0x0}} 7008c2ecf20Sopenharmony_ci}; 7018c2ecf20Sopenharmony_cistatic const struct opl4_region regions_5e[] = { /* Halo Pad */ 7028c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x124,4038,100, 0,2,0x00,0xa6,0x1a,0x85,0x23,0x08,0x0}}, 7038c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x02a,3471,100, 0,3,0x00,0xc0,0x1b,0xc0,0x05,0x06,0x0}} 7048c2ecf20Sopenharmony_ci}; 7058c2ecf20Sopenharmony_cistatic const struct opl4_region regions_5f[] = { /* Sweep Pad */ 7068c2ecf20Sopenharmony_ci {0x01, 0x27, {0x0d3,9100,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}}, 7078c2ecf20Sopenharmony_ci {0x28, 0x2d, {0x0da,8341,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}}, 7088c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x0d4,7564,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}}, 7098c2ecf20Sopenharmony_ci {0x34, 0x39, {0x0db,6791,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}}, 7108c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x0d5,6048,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}}, 7118c2ecf20Sopenharmony_ci {0x40, 0x45, {0x0dc,5263,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}}, 7128c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x0d6,4499,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}}, 7138c2ecf20Sopenharmony_ci {0x4c, 0x51, {0x0dd,3747,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}}, 7148c2ecf20Sopenharmony_ci {0x52, 0x57, {0x0d7,3018,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}}, 7158c2ecf20Sopenharmony_ci {0x58, 0x5d, {0x0de,2173,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}}, 7168c2ecf20Sopenharmony_ci {0x5e, 0x63, {0x0d8,1427,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}}, 7178c2ecf20Sopenharmony_ci {0x64, 0x7f, {0x0d9,-109,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}}, 7188c2ecf20Sopenharmony_ci {0x01, 0x27, {0x0d3,9088,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}}, 7198c2ecf20Sopenharmony_ci {0x28, 0x2d, {0x0da,8329,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}}, 7208c2ecf20Sopenharmony_ci {0x2e, 0x33, {0x0d4,7552,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}}, 7218c2ecf20Sopenharmony_ci {0x34, 0x39, {0x0db,6779,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}}, 7228c2ecf20Sopenharmony_ci {0x3a, 0x3f, {0x0d5,6036,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}}, 7238c2ecf20Sopenharmony_ci {0x40, 0x45, {0x0dc,5251,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}}, 7248c2ecf20Sopenharmony_ci {0x46, 0x4b, {0x0d6,4487,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}}, 7258c2ecf20Sopenharmony_ci {0x4c, 0x51, {0x0dd,3735,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}}, 7268c2ecf20Sopenharmony_ci {0x52, 0x57, {0x0d7,3006,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}}, 7278c2ecf20Sopenharmony_ci {0x58, 0x5d, {0x0de,2161,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}}, 7288c2ecf20Sopenharmony_ci {0x5e, 0x63, {0x0d8,1415,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}}, 7298c2ecf20Sopenharmony_ci {0x64, 0x7f, {0x0d9,-121,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}} 7308c2ecf20Sopenharmony_ci}; 7318c2ecf20Sopenharmony_cistatic const struct opl4_region regions_60[] = { /* Ice Rain */ 7328c2ecf20Sopenharmony_ci {0x01, 0x7f, {0x04e,9345,100, 0,2,0x00,0xcc,0x22,0xa3,0x63,0x17,0x0}}, 7338c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x143,5586, 20, 0,2,0x00,0x6e,0x2a,0xf0,0x05,0x05,0x0}} 7348c2ecf20Sopenharmony_ci}; 7358c2ecf20Sopenharmony_cistatic const struct opl4_region regions_61[] = { /* Soundtrack */ 7368c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x002,4501,100, 0,2,0x00,0xb6,0x2a,0x60,0x01,0x05,0x0}}, 7378c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x0f3,1160,100, 0,5,0x00,0xa8,0x2d,0x52,0x14,0x06,0x2}} 7388c2ecf20Sopenharmony_ci}; 7398c2ecf20Sopenharmony_cistatic const struct opl4_region regions_62[] = { /* Crystal */ 7408c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x0f3,1826,100, 0,3,0x00,0xb8,0x33,0xf6,0x25,0x25,0x0}}, 7418c2ecf20Sopenharmony_ci {0x15, 0x2c, {0x06d,7454,100, 0,3,0x00,0xac,0x3b,0x85,0x24,0x06,0x0}}, 7428c2ecf20Sopenharmony_ci {0x2d, 0x36, {0x06e,5925,100, 0,3,0x00,0xac,0x3b,0x85,0x24,0x06,0x0}}, 7438c2ecf20Sopenharmony_ci {0x37, 0x6c, {0x06f,4403,100, 0,3,0x09,0xac,0x3b,0x85,0x24,0x06,0x0}} 7448c2ecf20Sopenharmony_ci}; 7458c2ecf20Sopenharmony_cistatic const struct opl4_region regions_63[] = { /* Atmosphere */ 7468c2ecf20Sopenharmony_ci {0x05, 0x71, {0x002,4509,100, 0,2,0x00,0xc8,0x32,0x73,0x22,0x06,0x1}}, 7478c2ecf20Sopenharmony_ci {0x15, 0x2f, {0x0b3,6964,100, 0,2,0x05,0xc2,0x32,0xf5,0x34,0x07,0x2}}, 7488c2ecf20Sopenharmony_ci {0x30, 0x36, {0x0b7,5567,100, 0,2,0x0c,0xc2,0x32,0xf5,0x34,0x07,0x2}}, 7498c2ecf20Sopenharmony_ci {0x37, 0x3c, {0x0b5,4653,100, 0,2,0x00,0xc2,0x32,0xf6,0x34,0x07,0x2}}, 7508c2ecf20Sopenharmony_ci {0x3d, 0x43, {0x0b4,3892,100, 0,2,0x00,0xc2,0x32,0xf6,0x35,0x07,0x2}}, 7518c2ecf20Sopenharmony_ci {0x44, 0x60, {0x0b6,2723,100, 0,2,0x00,0xc2,0x32,0xf6,0x35,0x17,0x2}} 7528c2ecf20Sopenharmony_ci}; 7538c2ecf20Sopenharmony_cistatic const struct opl4_region regions_64[] = { /* Brightness */ 7548c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x137,5285,100, 0,2,0x00,0xbe,0x2a,0xa5,0x18,0x08,0x0}}, 7558c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x02a,3481,100, 0,1,0x00,0xc8,0x29,0x80,0x05,0x05,0x0}} 7568c2ecf20Sopenharmony_ci}; 7578c2ecf20Sopenharmony_cistatic const struct opl4_region regions_65[] = { /* Goblins */ 7588c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x002,4501,100,-1,2,0x00,0xca,0x2a,0x40,0x01,0x05,0x0}}, 7598c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x009,9679, 20, 1,4,0x00,0x3c,0x0c,0x22,0x11,0x06,0x0}} 7608c2ecf20Sopenharmony_ci}; 7618c2ecf20Sopenharmony_cistatic const struct opl4_region regions_66[] = { /* Echoes */ 7628c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x02a,3487,100, 0,3,0x00,0xae,0x2b,0xf5,0x21,0x06,0x0}}, 7638c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x124,4027,100, 0,3,0x00,0xae,0x2b,0x85,0x23,0x07,0x0}} 7648c2ecf20Sopenharmony_ci}; 7658c2ecf20Sopenharmony_cistatic const struct opl4_region regions_67[] = { /* Sci-Fi */ 7668c2ecf20Sopenharmony_ci {0x15, 0x31, {0x00c,6940,100, 0,3,0x00,0xc8,0x2b,0x90,0x05,0x06,0x3}}, 7678c2ecf20Sopenharmony_ci {0x32, 0x38, {0x00d,5413,100, 0,3,0x00,0xc8,0x2b,0x90,0x05,0x06,0x3}}, 7688c2ecf20Sopenharmony_ci {0x39, 0x47, {0x00e,4382,100, 0,3,0x00,0xc8,0x2b,0x90,0x05,0x06,0x3}}, 7698c2ecf20Sopenharmony_ci {0x48, 0x6c, {0x00f,2846,100, 0,3,0x00,0xc8,0x2b,0x90,0x05,0x06,0x3}}, 7708c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x002,4498,100, 0,2,0x00,0xd4,0x22,0x80,0x01,0x05,0x0}} 7718c2ecf20Sopenharmony_ci}; 7728c2ecf20Sopenharmony_cistatic const struct opl4_region regions_68[] = { /* Sitar */ 7738c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x10f,4408,100, 0,2,0x00,0xc4,0x32,0xf4,0x15,0x16,0x1}} 7748c2ecf20Sopenharmony_ci}; 7758c2ecf20Sopenharmony_cistatic const struct opl4_region regions_69[] = { /* Banjo */ 7768c2ecf20Sopenharmony_ci {0x15, 0x34, {0x013,5685,100, 0,0,0x00,0xdc,0x38,0xf6,0x15,0x09,0x0}}, 7778c2ecf20Sopenharmony_ci {0x35, 0x38, {0x014,5009,100, 0,0,0x00,0xdc,0x38,0xf6,0x15,0x09,0x0}}, 7788c2ecf20Sopenharmony_ci {0x39, 0x3c, {0x012,4520,100, 0,0,0x00,0xdc,0x38,0xf6,0x15,0x09,0x0}}, 7798c2ecf20Sopenharmony_ci {0x3d, 0x44, {0x015,3622,100, 0,0,0x00,0xdc,0x38,0xf6,0x15,0x09,0x0}}, 7808c2ecf20Sopenharmony_ci {0x45, 0x4c, {0x017,2661,100, 0,0,0x00,0xdc,0x38,0xf6,0x15,0x09,0x0}}, 7818c2ecf20Sopenharmony_ci {0x4d, 0x6d, {0x016,1632,100, 0,0,0x00,0xdc,0x38,0xf6,0x15,0x09,0x0}} 7828c2ecf20Sopenharmony_ci}; 7838c2ecf20Sopenharmony_cistatic const struct opl4_region regions_6a[] = { /* Shamisen */ 7848c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x10e,3273,100, 0,0,0x00,0xc0,0x28,0xf7,0x76,0x08,0x0}} 7858c2ecf20Sopenharmony_ci}; 7868c2ecf20Sopenharmony_cistatic const struct opl4_region regions_6b[] = { /* Koto */ 7878c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x0a9,4033,100, 0,0,0x00,0xc6,0x20,0xf0,0x06,0x07,0x0}} 7888c2ecf20Sopenharmony_ci}; 7898c2ecf20Sopenharmony_cistatic const struct opl4_region regions_6c[] = { /* Kalimba */ 7908c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x137,3749,100, 0,0,0x00,0xce,0x38,0xf5,0x18,0x08,0x0}} 7918c2ecf20Sopenharmony_ci}; 7928c2ecf20Sopenharmony_cistatic const struct opl4_region regions_6d[] = { /* Bagpipe */ 7938c2ecf20Sopenharmony_ci {0x15, 0x39, {0x0a4,7683,100, 0,4,0x00,0xc0,0x1c,0xf0,0x00,0x09,0x0}}, 7948c2ecf20Sopenharmony_ci {0x15, 0x39, {0x0a7,7680,100, 0,1,0x00,0xaa,0x19,0xf0,0x00,0x09,0x0}}, 7958c2ecf20Sopenharmony_ci {0x3a, 0x6c, {0x0a8,3697,100, 0,1,0x00,0xaa,0x19,0xf0,0x00,0x09,0x0}} 7968c2ecf20Sopenharmony_ci}; 7978c2ecf20Sopenharmony_cistatic const struct opl4_region regions_6e[] = { /* Fiddle */ 7988c2ecf20Sopenharmony_ci {0x15, 0x3a, {0x105,5158,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}}, 7998c2ecf20Sopenharmony_ci {0x3b, 0x3f, {0x102,4754,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}}, 8008c2ecf20Sopenharmony_ci {0x40, 0x41, {0x106,4132,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}}, 8018c2ecf20Sopenharmony_ci {0x42, 0x44, {0x107,4033,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}}, 8028c2ecf20Sopenharmony_ci {0x45, 0x47, {0x108,3580,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}}, 8038c2ecf20Sopenharmony_ci {0x48, 0x4a, {0x10a,2957,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}}, 8048c2ecf20Sopenharmony_ci {0x4b, 0x4c, {0x10b,2724,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}}, 8058c2ecf20Sopenharmony_ci {0x4d, 0x4e, {0x10c,2530,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}}, 8068c2ecf20Sopenharmony_ci {0x4f, 0x51, {0x10d,2166,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}}, 8078c2ecf20Sopenharmony_ci {0x52, 0x6c, {0x109,1825,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}} 8088c2ecf20Sopenharmony_ci}; 8098c2ecf20Sopenharmony_cistatic const struct opl4_region regions_6f[] = { /* Shanai */ 8108c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x041,6946,100, 0,1,0x00,0xc4,0x31,0x95,0x20,0x09,0x0}} 8118c2ecf20Sopenharmony_ci}; 8128c2ecf20Sopenharmony_cistatic const struct opl4_region regions_70[] = { /* Tinkle Bell */ 8138c2ecf20Sopenharmony_ci {0x15, 0x73, {0x0f3,1821,100, 0,3,0x00,0xc8,0x3b,0xd6,0x25,0x25,0x0}}, 8148c2ecf20Sopenharmony_ci {0x00, 0x7f, {0x137,5669,100, 0,3,0x00,0x66,0x3b,0xf5,0x18,0x08,0x0}} 8158c2ecf20Sopenharmony_ci}; 8168c2ecf20Sopenharmony_cistatic const struct opl4_region regions_71[] = { /* Agogo */ 8178c2ecf20Sopenharmony_ci {0x15, 0x74, {0x00b,2474,100, 0,0,0x00,0xd2,0x38,0xf0,0x00,0x09,0x0}} 8188c2ecf20Sopenharmony_ci}; 8198c2ecf20Sopenharmony_cistatic const struct opl4_region regions_72[] = { /* Steel Drums */ 8208c2ecf20Sopenharmony_ci {0x01, 0x7f, {0x0fe,3670,100, 0,0,0x00,0xca,0x38,0xf3,0x06,0x17,0x1}}, 8218c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x100,9602,100, 0,0,0x00,0x54,0x38,0xb0,0x05,0x16,0x1}} 8228c2ecf20Sopenharmony_ci}; 8238c2ecf20Sopenharmony_cistatic const struct opl4_region regions_73[] = { /* Woodblock */ 8248c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x02c,2963, 50, 0,0,0x07,0xd4,0x00,0xf0,0x00,0x09,0x0}} 8258c2ecf20Sopenharmony_ci}; 8268c2ecf20Sopenharmony_cistatic const struct opl4_region regions_74[] = { /* Taiko Drum */ 8278c2ecf20Sopenharmony_ci {0x13, 0x6c, {0x03e,1194, 50, 0,0,0x00,0xaa,0x38,0xf0,0x04,0x04,0x0}} 8288c2ecf20Sopenharmony_ci}; 8298c2ecf20Sopenharmony_cistatic const struct opl4_region regions_75[] = { /* Melodic Tom */ 8308c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x0c7,6418, 50, 0,0,0x00,0xe4,0x38,0xf0,0x05,0x01,0x0}} 8318c2ecf20Sopenharmony_ci}; 8328c2ecf20Sopenharmony_cistatic const struct opl4_region regions_76[] = { /* Synth Drum */ 8338c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x026,3898, 50, 0,0,0x00,0xd0,0x38,0xf0,0x04,0x04,0x0}} 8348c2ecf20Sopenharmony_ci}; 8358c2ecf20Sopenharmony_cistatic const struct opl4_region regions_77[] = { /* Reverse Cymbal */ 8368c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x031,4138, 50, 0,0,0x00,0xfe,0x38,0x3a,0xf0,0x09,0x0}} 8378c2ecf20Sopenharmony_ci}; 8388c2ecf20Sopenharmony_cistatic const struct opl4_region regions_78[] = { /* Guitar Fret Noise */ 8398c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x138,5266,100, 0,0,0x00,0xa0,0x38,0xf0,0x00,0x09,0x0}} 8408c2ecf20Sopenharmony_ci}; 8418c2ecf20Sopenharmony_cistatic const struct opl4_region regions_79[] = { /* Breath Noise */ 8428c2ecf20Sopenharmony_ci {0x01, 0x7f, {0x125,4269,100, 0,0,0x1e,0xd0,0x38,0xf0,0x00,0x09,0x0}} 8438c2ecf20Sopenharmony_ci}; 8448c2ecf20Sopenharmony_cistatic const struct opl4_region regions_7a[] = { /* Seashore */ 8458c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x008,2965, 20,-2,0,0x00,0xfe,0x00,0x20,0x03,0x04,0x0}}, 8468c2ecf20Sopenharmony_ci {0x01, 0x7f, {0x037,4394, 20, 2,0,0x14,0xfe,0x00,0x20,0x04,0x05,0x0}} 8478c2ecf20Sopenharmony_ci}; 8488c2ecf20Sopenharmony_cistatic const struct opl4_region regions_7b[] = { /* Bird Tweet */ 8498c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x009,8078, 5,-4,7,0x00,0xc2,0x0f,0x22,0x12,0x07,0x0}}, 8508c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x009,3583, 5, 4,5,0x00,0xae,0x15,0x72,0x12,0x07,0x0}} 8518c2ecf20Sopenharmony_ci}; 8528c2ecf20Sopenharmony_cistatic const struct opl4_region regions_7c[] = { /* Telephone Ring */ 8538c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x003,3602, 10, 0,0,0x00,0xce,0x00,0xf0,0x00,0x0f,0x0}} 8548c2ecf20Sopenharmony_ci}; 8558c2ecf20Sopenharmony_cistatic const struct opl4_region regions_7d[] = { /* Helicopter */ 8568c2ecf20Sopenharmony_ci {0x0c, 0x7f, {0x001,2965, 10,-2,0,0x00,0xe0,0x08,0x30,0x01,0x07,0x0}}, 8578c2ecf20Sopenharmony_ci {0x01, 0x7f, {0x037,4394, 10, 2,0,0x44,0x76,0x00,0x30,0x01,0x07,0x0}} 8588c2ecf20Sopenharmony_ci}; 8598c2ecf20Sopenharmony_cistatic const struct opl4_region regions_7e[] = { /* Applause */ 8608c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x036,8273, 20,-6,7,0x00,0xc4,0x0f,0x70,0x01,0x05,0x0}}, 8618c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x036,8115, 5, 6,7,0x00,0xc6,0x07,0x70,0x01,0x05,0x0}} 8628c2ecf20Sopenharmony_ci}; 8638c2ecf20Sopenharmony_cistatic const struct opl4_region regions_7f[] = { /* Gun Shot */ 8648c2ecf20Sopenharmony_ci {0x15, 0x6c, {0x139,2858, 20, 0,0,0x00,0xbe,0x38,0xf0,0x03,0x00,0x0}} 8658c2ecf20Sopenharmony_ci}; 8668c2ecf20Sopenharmony_cistatic const struct opl4_region regions_drums[] = { 8678c2ecf20Sopenharmony_ci {0x18, 0x18, {0x0cb,6397,100, 3,0,0x00,0xf4,0x38,0xc9,0x1c,0x0c,0x0}}, 8688c2ecf20Sopenharmony_ci {0x19, 0x19, {0x0c4,3714,100, 0,0,0x00,0xe0,0x00,0x97,0x19,0x09,0x0}}, 8698c2ecf20Sopenharmony_ci {0x1a, 0x1a, {0x0c4,3519,100, 0,0,0x00,0xea,0x00,0x61,0x01,0x07,0x0}}, 8708c2ecf20Sopenharmony_ci {0x1b, 0x1b, {0x0c4,3586,100, 0,0,0x00,0xea,0x00,0xf7,0x19,0x09,0x0}}, 8718c2ecf20Sopenharmony_ci {0x1c, 0x1c, {0x0c4,3586,100, 0,0,0x00,0xea,0x00,0x81,0x01,0x07,0x0}}, 8728c2ecf20Sopenharmony_ci {0x1e, 0x1e, {0x0c3,4783,100, 0,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}}, 8738c2ecf20Sopenharmony_ci {0x1f, 0x1f, {0x0d1,4042,100, 0,0,0x00,0xd6,0x00,0xf0,0x05,0x05,0x0}}, 8748c2ecf20Sopenharmony_ci {0x20, 0x20, {0x0d2,5943,100, 0,0,0x00,0xcc,0x00,0xf0,0x00,0x09,0x0}}, 8758c2ecf20Sopenharmony_ci {0x21, 0x21, {0x011,3842,100, 0,0,0x00,0xea,0x00,0xf0,0x16,0x06,0x0}}, 8768c2ecf20Sopenharmony_ci {0x23, 0x23, {0x011,4098,100, 0,0,0x00,0xea,0x00,0xf0,0x16,0x06,0x0}}, 8778c2ecf20Sopenharmony_ci {0x24, 0x24, {0x011,4370,100, 0,0,0x00,0xea,0x00,0xf0,0x00,0x06,0x0}}, 8788c2ecf20Sopenharmony_ci {0x25, 0x25, {0x0d2,4404,100, 0,0,0x00,0xd6,0x00,0xf0,0x00,0x06,0x0}}, 8798c2ecf20Sopenharmony_ci {0x26, 0x26, {0x0d1,4298,100, 0,0,0x00,0xd6,0x00,0xf0,0x05,0x05,0x0}}, 8808c2ecf20Sopenharmony_ci {0x27, 0x27, {0x00a,4403,100,-1,0,0x00,0xd6,0x00,0xf0,0x00,0x09,0x0}}, 8818c2ecf20Sopenharmony_ci {0x28, 0x28, {0x0d1,4554,100, 0,0,0x00,0xdc,0x00,0xf0,0x07,0x07,0x0}}, 8828c2ecf20Sopenharmony_ci {0x29, 0x29, {0x0c8,4242,100,-4,0,0x00,0xd6,0x00,0xf6,0x16,0x06,0x0}}, 8838c2ecf20Sopenharmony_ci {0x2a, 0x2a, {0x079,6160,100, 2,0,0x00,0xe0,0x00,0xf5,0x19,0x09,0x0}}, 8848c2ecf20Sopenharmony_ci {0x2b, 0x2b, {0x0c8,4626,100,-3,0,0x00,0xd6,0x00,0xf6,0x16,0x06,0x0}}, 8858c2ecf20Sopenharmony_ci {0x2c, 0x2c, {0x07b,6039,100, 2,0,0x00,0xd6,0x00,0xf0,0x00,0x09,0x0}}, 8868c2ecf20Sopenharmony_ci {0x2d, 0x2d, {0x0c8,5394,100,-2,0,0x00,0xd6,0x00,0xf6,0x16,0x06,0x0}}, 8878c2ecf20Sopenharmony_ci {0x2e, 0x2e, {0x07a,5690,100, 2,0,0x00,0xd6,0x00,0xf0,0x00,0x05,0x0}}, 8888c2ecf20Sopenharmony_ci {0x2f, 0x2f, {0x0c7,5185,100, 2,0,0x00,0xe0,0x00,0xf6,0x17,0x07,0x0}}, 8898c2ecf20Sopenharmony_ci {0x30, 0x30, {0x0c7,5650,100, 3,0,0x00,0xe0,0x00,0xf6,0x17,0x07,0x0}}, 8908c2ecf20Sopenharmony_ci {0x31, 0x31, {0x031,4395,100, 2,0,0x00,0xea,0x00,0xf0,0x05,0x05,0x0}}, 8918c2ecf20Sopenharmony_ci {0x32, 0x32, {0x0c7,6162,100, 4,0,0x00,0xe0,0x00,0xf6,0x17,0x07,0x0}}, 8928c2ecf20Sopenharmony_ci {0x33, 0x33, {0x02e,4391,100,-2,0,0x00,0xea,0x00,0xf0,0x05,0x05,0x0}}, 8938c2ecf20Sopenharmony_ci {0x34, 0x34, {0x07a,3009,100,-2,0,0x00,0xea,0x00,0xf2,0x15,0x05,0x0}}, 8948c2ecf20Sopenharmony_ci {0x35, 0x35, {0x021,4522,100,-3,0,0x00,0xd6,0x00,0xf0,0x05,0x05,0x0}}, 8958c2ecf20Sopenharmony_ci {0x36, 0x36, {0x025,5163,100, 1,0,0x00,0xe0,0x00,0xf0,0x00,0x09,0x0}}, 8968c2ecf20Sopenharmony_ci {0x37, 0x37, {0x031,5287,100,-1,0,0x00,0xea,0x00,0xf5,0x16,0x06,0x0}}, 8978c2ecf20Sopenharmony_ci {0x38, 0x38, {0x01d,4395,100, 2,0,0x00,0xe0,0x00,0xf0,0x00,0x09,0x0}}, 8988c2ecf20Sopenharmony_ci {0x39, 0x39, {0x031,4647,100,-2,0,0x00,0xea,0x00,0xf4,0x16,0x06,0x0}}, 8998c2ecf20Sopenharmony_ci {0x3a, 0x3a, {0x09d,4426,100,-4,0,0x00,0xe0,0x00,0xf4,0x17,0x07,0x0}}, 9008c2ecf20Sopenharmony_ci {0x3b, 0x3b, {0x02e,4659,100,-2,0,0x00,0xea,0x00,0xf0,0x06,0x06,0x0}}, 9018c2ecf20Sopenharmony_ci {0x3c, 0x3c, {0x01c,4769,100, 4,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}}, 9028c2ecf20Sopenharmony_ci {0x3d, 0x3d, {0x01c,4611,100, 4,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}}, 9038c2ecf20Sopenharmony_ci {0x3e, 0x3e, {0x01e,4402,100,-3,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}}, 9048c2ecf20Sopenharmony_ci {0x3f, 0x3f, {0x01f,4387,100,-3,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}}, 9058c2ecf20Sopenharmony_ci {0x40, 0x40, {0x01f,3983,100,-2,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}}, 9068c2ecf20Sopenharmony_ci {0x41, 0x41, {0x09c,4526,100, 2,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}}, 9078c2ecf20Sopenharmony_ci {0x42, 0x42, {0x09c,4016,100, 2,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}}, 9088c2ecf20Sopenharmony_ci {0x43, 0x43, {0x00b,4739,100,-4,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}}, 9098c2ecf20Sopenharmony_ci {0x44, 0x44, {0x00b,4179,100,-4,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}}, 9108c2ecf20Sopenharmony_ci {0x45, 0x45, {0x02f,4787,100,-4,0,0x00,0xd6,0x00,0xf0,0x00,0x09,0x0}}, 9118c2ecf20Sopenharmony_ci {0x46, 0x46, {0x030,4665,100,-4,0,0x00,0xd6,0x00,0xf0,0x00,0x09,0x0}}, 9128c2ecf20Sopenharmony_ci {0x47, 0x47, {0x144,4519,100, 4,0,0x00,0xea,0x00,0xf0,0x00,0x0b,0x0}}, 9138c2ecf20Sopenharmony_ci {0x48, 0x48, {0x144,4111,100, 4,0,0x00,0xea,0x00,0xf0,0x00,0x0b,0x0}}, 9148c2ecf20Sopenharmony_ci {0x49, 0x49, {0x024,6408,100, 3,0,0x00,0xe0,0x00,0xf0,0x00,0x09,0x0}}, 9158c2ecf20Sopenharmony_ci {0x4a, 0x4a, {0x024,4144,100, 3,0,0x00,0xcc,0x00,0xf0,0x00,0x09,0x0}}, 9168c2ecf20Sopenharmony_ci {0x4b, 0x4b, {0x020,4001,100, 2,0,0x00,0xe0,0x00,0xf0,0x00,0x09,0x0}}, 9178c2ecf20Sopenharmony_ci {0x4c, 0x4c, {0x02c,4402,100, 4,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}}, 9188c2ecf20Sopenharmony_ci {0x4d, 0x4d, {0x02c,3612,100, 4,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}}, 9198c2ecf20Sopenharmony_ci {0x4e, 0x4e, {0x022,4129,100,-2,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}}, 9208c2ecf20Sopenharmony_ci {0x4f, 0x4f, {0x023,4147,100,-2,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}}, 9218c2ecf20Sopenharmony_ci {0x50, 0x50, {0x032,4412,100,-4,0,0x00,0xd6,0x00,0xf0,0x08,0x09,0x0}}, 9228c2ecf20Sopenharmony_ci {0x51, 0x51, {0x032,4385,100,-4,0,0x00,0xd6,0x00,0xf0,0x00,0x09,0x0}}, 9238c2ecf20Sopenharmony_ci {0x52, 0x52, {0x02f,5935,100,-1,0,0x00,0xd6,0x00,0xf0,0x00,0x09,0x0}} 9248c2ecf20Sopenharmony_ci}; 9258c2ecf20Sopenharmony_ci 9268c2ecf20Sopenharmony_ci#define REGION(num) { ARRAY_SIZE(regions ## num), regions ## num } 9278c2ecf20Sopenharmony_ciconst struct opl4_region_ptr snd_yrw801_regions[0x81] = { 9288c2ecf20Sopenharmony_ci REGION(_00), REGION(_01), REGION(_02), REGION(_03), 9298c2ecf20Sopenharmony_ci REGION(_04), REGION(_05), REGION(_06), REGION(_07), 9308c2ecf20Sopenharmony_ci REGION(_08), REGION(_09), REGION(_0a), REGION(_0b), 9318c2ecf20Sopenharmony_ci REGION(_0c), REGION(_0d), REGION(_0e), REGION(_0f), 9328c2ecf20Sopenharmony_ci REGION(_10), REGION(_11), REGION(_12), REGION(_13), 9338c2ecf20Sopenharmony_ci REGION(_14), REGION(_15), REGION(_16), REGION(_17), 9348c2ecf20Sopenharmony_ci REGION(_18), REGION(_19), REGION(_1a), REGION(_1b), 9358c2ecf20Sopenharmony_ci REGION(_1c), REGION(_1d), REGION(_1e), REGION(_1f), 9368c2ecf20Sopenharmony_ci REGION(_20), REGION(_21), REGION(_22), REGION(_23), 9378c2ecf20Sopenharmony_ci REGION(_24), REGION(_25), REGION(_26), REGION(_27), 9388c2ecf20Sopenharmony_ci REGION(_28), REGION(_29), REGION(_2a), REGION(_2b), 9398c2ecf20Sopenharmony_ci REGION(_2c), REGION(_2d), REGION(_2e), REGION(_2f), 9408c2ecf20Sopenharmony_ci REGION(_30), REGION(_31), REGION(_32), REGION(_33), 9418c2ecf20Sopenharmony_ci REGION(_34), REGION(_35), REGION(_36), REGION(_37), 9428c2ecf20Sopenharmony_ci REGION(_38), REGION(_39), REGION(_3a), REGION(_3b), 9438c2ecf20Sopenharmony_ci REGION(_3c), REGION(_3d), REGION(_3e), REGION(_3f), 9448c2ecf20Sopenharmony_ci REGION(_40), REGION(_41), REGION(_42), REGION(_43), 9458c2ecf20Sopenharmony_ci REGION(_44), REGION(_45), REGION(_46), REGION(_47), 9468c2ecf20Sopenharmony_ci REGION(_48), REGION(_49), REGION(_4a), REGION(_4b), 9478c2ecf20Sopenharmony_ci REGION(_4c), REGION(_4d), REGION(_4e), REGION(_4f), 9488c2ecf20Sopenharmony_ci REGION(_50), REGION(_51), REGION(_52), REGION(_53), 9498c2ecf20Sopenharmony_ci REGION(_54), REGION(_55), REGION(_56), REGION(_57), 9508c2ecf20Sopenharmony_ci REGION(_58), REGION(_59), REGION(_5a), REGION(_5b), 9518c2ecf20Sopenharmony_ci REGION(_5c), REGION(_5d), REGION(_5e), REGION(_5f), 9528c2ecf20Sopenharmony_ci REGION(_60), REGION(_61), REGION(_62), REGION(_63), 9538c2ecf20Sopenharmony_ci REGION(_64), REGION(_65), REGION(_66), REGION(_67), 9548c2ecf20Sopenharmony_ci REGION(_68), REGION(_69), REGION(_6a), REGION(_6b), 9558c2ecf20Sopenharmony_ci REGION(_6c), REGION(_6d), REGION(_6e), REGION(_6f), 9568c2ecf20Sopenharmony_ci REGION(_70), REGION(_71), REGION(_72), REGION(_73), 9578c2ecf20Sopenharmony_ci REGION(_74), REGION(_75), REGION(_76), REGION(_77), 9588c2ecf20Sopenharmony_ci REGION(_78), REGION(_79), REGION(_7a), REGION(_7b), 9598c2ecf20Sopenharmony_ci REGION(_7c), REGION(_7d), REGION(_7e), REGION(_7f), 9608c2ecf20Sopenharmony_ci REGION(_drums) 9618c2ecf20Sopenharmony_ci}; 962