162306a36Sopenharmony_ci/*
262306a36Sopenharmony_ci * Information about the Yamaha YRW801 wavetable ROM chip
362306a36Sopenharmony_ci *
462306a36Sopenharmony_ci * Copyright (c) 2003 by Clemens Ladisch <clemens@ladisch.de>
562306a36Sopenharmony_ci * All rights reserved.
662306a36Sopenharmony_ci *
762306a36Sopenharmony_ci * Redistribution and use in source and binary forms, with or without
862306a36Sopenharmony_ci * modification, are permitted provided that the following conditions
962306a36Sopenharmony_ci * are met:
1062306a36Sopenharmony_ci * 1. Redistributions of source code must retain the above copyright
1162306a36Sopenharmony_ci *    notice, this list of conditions, and the following disclaimer,
1262306a36Sopenharmony_ci *    without modification.
1362306a36Sopenharmony_ci * 2. The name of the author may not be used to endorse or promote products
1462306a36Sopenharmony_ci *    derived from this software without specific prior written permission.
1562306a36Sopenharmony_ci *
1662306a36Sopenharmony_ci * Alternatively, this software may be distributed and/or modified under the
1762306a36Sopenharmony_ci * terms of the GNU General Public License as published by the Free Software
1862306a36Sopenharmony_ci * Foundation; either version 2 of the License, or (at your option) any later
1962306a36Sopenharmony_ci * version.
2062306a36Sopenharmony_ci *
2162306a36Sopenharmony_ci * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
2262306a36Sopenharmony_ci * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
2362306a36Sopenharmony_ci * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
2462306a36Sopenharmony_ci * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
2562306a36Sopenharmony_ci * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2662306a36Sopenharmony_ci * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2762306a36Sopenharmony_ci * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2862306a36Sopenharmony_ci * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2962306a36Sopenharmony_ci * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
3062306a36Sopenharmony_ci * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
3162306a36Sopenharmony_ci * SUCH DAMAGE.
3262306a36Sopenharmony_ci */
3362306a36Sopenharmony_ci
3462306a36Sopenharmony_ci#include "opl4_local.h"
3562306a36Sopenharmony_ci
3662306a36Sopenharmony_ciint snd_yrw801_detect(struct snd_opl4 *opl4)
3762306a36Sopenharmony_ci{
3862306a36Sopenharmony_ci	char buf[15];
3962306a36Sopenharmony_ci
4062306a36Sopenharmony_ci	snd_opl4_read_memory(opl4, buf, 0x001200, 15);
4162306a36Sopenharmony_ci	if (memcmp(buf, "CopyrightYAMAHA", 15))
4262306a36Sopenharmony_ci		return -ENODEV;
4362306a36Sopenharmony_ci	snd_opl4_read_memory(opl4, buf, 0x1ffffe, 2);
4462306a36Sopenharmony_ci	if (buf[0] != 0x01)
4562306a36Sopenharmony_ci		return -ENODEV;
4662306a36Sopenharmony_ci	snd_printdd("YRW801 ROM version %02x.%02x\n", buf[0], buf[1]);
4762306a36Sopenharmony_ci	return 0;
4862306a36Sopenharmony_ci}
4962306a36Sopenharmony_ci
5062306a36Sopenharmony_ci/*
5162306a36Sopenharmony_ci * The instrument definitions are stored statically because, in practice, the
5262306a36Sopenharmony_ci * OPL4 is always coupled with a YRW801. Dynamic instrument loading would be
5362306a36Sopenharmony_ci * required if downloading sample data to external SRAM was actually supported
5462306a36Sopenharmony_ci * by this driver.
5562306a36Sopenharmony_ci */
5662306a36Sopenharmony_ci
5762306a36Sopenharmony_cistatic const struct opl4_region regions_00[] = { /* Acoustic Grand Piano */
5862306a36Sopenharmony_ci	{0x14, 0x27, {0x12c,7474,100, 0,0,0x00,0xc8,0x20,0xf2,0x13,0x08,0x0}},
5962306a36Sopenharmony_ci	{0x28, 0x2d, {0x12d,6816,100, 0,0,0x00,0xc8,0x20,0xf2,0x14,0x08,0x0}},
6062306a36Sopenharmony_ci	{0x2e, 0x33, {0x12e,5899,100, 0,0,0x00,0xc8,0x20,0xf2,0x14,0x08,0x0}},
6162306a36Sopenharmony_ci	{0x34, 0x39, {0x12f,5290,100, 0,0,0x00,0xc8,0x20,0xf2,0x14,0x08,0x0}},
6262306a36Sopenharmony_ci	{0x3a, 0x3f, {0x130,4260,100, 0,0,0x0a,0xc8,0x20,0xf2,0x14,0x08,0x0}},
6362306a36Sopenharmony_ci	{0x40, 0x45, {0x131,3625,100, 0,0,0x0a,0xc8,0x20,0xf2,0x14,0x08,0x0}},
6462306a36Sopenharmony_ci	{0x46, 0x4b, {0x132,3116,100, 0,0,0x04,0xc8,0x20,0xf2,0x14,0x08,0x0}},
6562306a36Sopenharmony_ci	{0x4c, 0x52, {0x133,2081,100, 0,0,0x03,0xc8,0x20,0xf2,0x14,0x18,0x0}},
6662306a36Sopenharmony_ci	{0x53, 0x58, {0x134,1444,100, 0,0,0x07,0xc8,0x20,0xf3,0x14,0x18,0x0}},
6762306a36Sopenharmony_ci	{0x59, 0x6d, {0x135,1915,100, 0,0,0x00,0xc8,0x20,0xf4,0x15,0x08,0x0}}
6862306a36Sopenharmony_ci};
6962306a36Sopenharmony_cistatic const struct opl4_region regions_01[] = { /* Bright Acoustic Piano */
7062306a36Sopenharmony_ci	{0x14, 0x2d, {0x12c,7474,100, 0,0,0x00,0xc8,0x20,0xf2,0x13,0x08,0x0}},
7162306a36Sopenharmony_ci	{0x2e, 0x33, {0x12d,6816,100, 0,0,0x00,0xc8,0x20,0xf2,0x14,0x08,0x0}},
7262306a36Sopenharmony_ci	{0x34, 0x39, {0x12e,5899,100, 0,0,0x00,0xc8,0x20,0xf2,0x14,0x08,0x0}},
7362306a36Sopenharmony_ci	{0x3a, 0x3f, {0x12f,5290,100, 0,0,0x00,0xc8,0x20,0xf2,0x14,0x08,0x0}},
7462306a36Sopenharmony_ci	{0x40, 0x45, {0x130,4260,100, 0,0,0x0a,0xc8,0x20,0xf2,0x14,0x08,0x0}},
7562306a36Sopenharmony_ci	{0x46, 0x4b, {0x131,3625,100, 0,0,0x0a,0xc8,0x20,0xf2,0x14,0x08,0x0}},
7662306a36Sopenharmony_ci	{0x4c, 0x52, {0x132,3116,100, 0,0,0x04,0xc8,0x20,0xf2,0x14,0x08,0x0}},
7762306a36Sopenharmony_ci	{0x53, 0x58, {0x133,2081,100, 0,0,0x07,0xc8,0x20,0xf2,0x14,0x18,0x0}},
7862306a36Sopenharmony_ci	{0x59, 0x5e, {0x134,1444,100, 0,0,0x0a,0xc8,0x20,0xf3,0x14,0x18,0x0}},
7962306a36Sopenharmony_ci	{0x5f, 0x6d, {0x135,1915,100, 0,0,0x00,0xc8,0x20,0xf4,0x15,0x08,0x0}}
8062306a36Sopenharmony_ci};
8162306a36Sopenharmony_cistatic const struct opl4_region regions_02[] = { /* Electric Grand Piano */
8262306a36Sopenharmony_ci	{0x14, 0x2d, {0x12c,7476,100, 1,0,0x00,0xae,0x20,0xf2,0x13,0x07,0x0}},
8362306a36Sopenharmony_ci	{0x2e, 0x33, {0x12d,6818,100, 1,0,0x00,0xae,0x20,0xf2,0x14,0x07,0x0}},
8462306a36Sopenharmony_ci	{0x34, 0x39, {0x12e,5901,100, 1,0,0x00,0xae,0x20,0xf2,0x14,0x07,0x0}},
8562306a36Sopenharmony_ci	{0x3a, 0x3f, {0x12f,5292,100, 1,0,0x00,0xae,0x20,0xf2,0x14,0x07,0x0}},
8662306a36Sopenharmony_ci	{0x40, 0x45, {0x130,4262,100, 1,0,0x00,0xae,0x20,0xf2,0x14,0x07,0x0}},
8762306a36Sopenharmony_ci	{0x46, 0x4b, {0x131,3627,100, 1,0,0x00,0xae,0x20,0xf2,0x14,0x07,0x0}},
8862306a36Sopenharmony_ci	{0x4c, 0x52, {0x132,3118,100, 1,0,0x00,0xae,0x20,0xf2,0x14,0x07,0x0}},
8962306a36Sopenharmony_ci	{0x53, 0x58, {0x133,2083,100, 1,0,0x00,0xae,0x20,0xf2,0x14,0x17,0x0}},
9062306a36Sopenharmony_ci	{0x59, 0x5e, {0x134,1446,100, 1,0,0x00,0xae,0x20,0xf3,0x14,0x17,0x0}},
9162306a36Sopenharmony_ci	{0x5f, 0x6d, {0x135,1917,100, 1,0,0x00,0xae,0x20,0xf4,0x15,0x07,0x0}},
9262306a36Sopenharmony_ci	{0x00, 0x7f, {0x06c,6375,100,-1,0,0x00,0xc2,0x28,0xf4,0x23,0x18,0x0}}
9362306a36Sopenharmony_ci};
9462306a36Sopenharmony_cistatic const struct opl4_region regions_03[] = { /* Honky-Tonk Piano */
9562306a36Sopenharmony_ci	{0x14, 0x27, {0x12c,7474,100, 0,0,0x00,0xb4,0x20,0xf2,0x13,0x08,0x0}},
9662306a36Sopenharmony_ci	{0x28, 0x2d, {0x12d,6816,100, 0,0,0x00,0xb4,0x20,0xf2,0x14,0x08,0x0}},
9762306a36Sopenharmony_ci	{0x2e, 0x33, {0x12e,5899,100, 0,0,0x00,0xb4,0x20,0xf2,0x14,0x08,0x0}},
9862306a36Sopenharmony_ci	{0x34, 0x39, {0x12f,5290,100, 0,0,0x00,0xb4,0x20,0xf2,0x14,0x08,0x0}},
9962306a36Sopenharmony_ci	{0x3a, 0x3f, {0x130,4260,100, 0,0,0x0a,0xb4,0x20,0xf2,0x14,0x08,0x0}},
10062306a36Sopenharmony_ci	{0x40, 0x45, {0x131,3625,100, 0,0,0x0a,0xb4,0x20,0xf2,0x14,0x08,0x0}},
10162306a36Sopenharmony_ci	{0x46, 0x4b, {0x132,3116,100, 0,0,0x04,0xb4,0x20,0xf2,0x14,0x08,0x0}},
10262306a36Sopenharmony_ci	{0x4c, 0x52, {0x133,2081,100, 0,0,0x03,0xb4,0x20,0xf2,0x14,0x18,0x0}},
10362306a36Sopenharmony_ci	{0x53, 0x58, {0x134,1444,100, 0,0,0x07,0xb4,0x20,0xf3,0x14,0x18,0x0}},
10462306a36Sopenharmony_ci	{0x59, 0x6d, {0x135,1915,100, 0,0,0x00,0xb4,0x20,0xf4,0x15,0x08,0x0}},
10562306a36Sopenharmony_ci	{0x14, 0x27, {0x12c,7486,100, 0,0,0x00,0xb4,0x20,0xf2,0x13,0x08,0x0}},
10662306a36Sopenharmony_ci	{0x28, 0x2d, {0x12d,6803,100, 0,0,0x00,0xb4,0x20,0xf2,0x14,0x08,0x0}},
10762306a36Sopenharmony_ci	{0x2e, 0x33, {0x12e,5912,100, 0,0,0x00,0xb4,0x20,0xf2,0x14,0x08,0x0}},
10862306a36Sopenharmony_ci	{0x34, 0x39, {0x12f,5275,100, 0,0,0x00,0xb4,0x20,0xf2,0x14,0x08,0x0}},
10962306a36Sopenharmony_ci	{0x3a, 0x3f, {0x130,4274,100, 0,0,0x0a,0xb4,0x20,0xf2,0x14,0x08,0x0}},
11062306a36Sopenharmony_ci	{0x40, 0x45, {0x131,3611,100, 0,0,0x0a,0xb4,0x20,0xf2,0x14,0x08,0x0}},
11162306a36Sopenharmony_ci	{0x46, 0x4b, {0x132,3129,100, 0,0,0x04,0xb4,0x20,0xf2,0x14,0x08,0x0}},
11262306a36Sopenharmony_ci	{0x4c, 0x52, {0x133,2074,100, 0,0,0x07,0xb4,0x20,0xf2,0x14,0x18,0x0}},
11362306a36Sopenharmony_ci	{0x53, 0x58, {0x134,1457,100, 0,0,0x01,0xb4,0x20,0xf3,0x14,0x18,0x0}},
11462306a36Sopenharmony_ci	{0x59, 0x6d, {0x135,1903,100, 0,0,0x00,0xb4,0x20,0xf4,0x15,0x08,0x0}}
11562306a36Sopenharmony_ci};
11662306a36Sopenharmony_cistatic const struct opl4_region regions_04[] = { /* Electric Piano 1 */
11762306a36Sopenharmony_ci	{0x15, 0x6c, {0x00b,6570,100, 0,0,0x00,0x28,0x38,0xf0,0x00,0x0c,0x0}},
11862306a36Sopenharmony_ci	{0x00, 0x7f, {0x06c,6375,100, 0,2,0x00,0xb0,0x22,0xf4,0x23,0x19,0x0}}
11962306a36Sopenharmony_ci};
12062306a36Sopenharmony_cistatic const struct opl4_region regions_05[] = { /* Electric Piano 2 */
12162306a36Sopenharmony_ci	{0x14, 0x27, {0x12c,7476,100, 0,3,0x00,0xa2,0x1b,0xf2,0x13,0x08,0x0}},
12262306a36Sopenharmony_ci	{0x28, 0x2d, {0x12d,6818,100, 0,3,0x00,0xa2,0x1b,0xf2,0x14,0x08,0x0}},
12362306a36Sopenharmony_ci	{0x2e, 0x33, {0x12e,5901,100, 0,3,0x00,0xa2,0x1b,0xf2,0x14,0x08,0x0}},
12462306a36Sopenharmony_ci	{0x34, 0x39, {0x12f,5292,100, 0,3,0x00,0xa2,0x1b,0xf2,0x14,0x08,0x0}},
12562306a36Sopenharmony_ci	{0x3a, 0x3f, {0x130,4262,100, 0,3,0x0a,0xa2,0x1b,0xf2,0x14,0x08,0x0}},
12662306a36Sopenharmony_ci	{0x40, 0x45, {0x131,3627,100, 0,3,0x0a,0xa2,0x1b,0xf2,0x14,0x08,0x0}},
12762306a36Sopenharmony_ci	{0x46, 0x4b, {0x132,3118,100, 0,3,0x04,0xa2,0x1b,0xf2,0x14,0x08,0x0}},
12862306a36Sopenharmony_ci	{0x4c, 0x52, {0x133,2083,100, 0,3,0x03,0xa2,0x1b,0xf2,0x14,0x18,0x0}},
12962306a36Sopenharmony_ci	{0x53, 0x58, {0x134,1446,100, 0,3,0x07,0xa2,0x1b,0xf3,0x14,0x18,0x0}},
13062306a36Sopenharmony_ci	{0x59, 0x6d, {0x135,1917,100, 0,3,0x00,0xa2,0x1b,0xf4,0x15,0x08,0x0}},
13162306a36Sopenharmony_ci	{0x14, 0x2d, {0x12c,7472,100, 0,0,0x00,0xa2,0x18,0xf2,0x13,0x08,0x0}},
13262306a36Sopenharmony_ci	{0x2e, 0x33, {0x12d,6814,100, 0,0,0x00,0xa2,0x18,0xf2,0x14,0x08,0x0}},
13362306a36Sopenharmony_ci	{0x34, 0x39, {0x12e,5897,100, 0,0,0x00,0xa2,0x18,0xf2,0x14,0x08,0x0}},
13462306a36Sopenharmony_ci	{0x3a, 0x3f, {0x12f,5288,100, 0,0,0x00,0xa2,0x18,0xf2,0x14,0x08,0x0}},
13562306a36Sopenharmony_ci	{0x40, 0x45, {0x130,4258,100, 0,0,0x0a,0xa2,0x18,0xf2,0x14,0x08,0x0}},
13662306a36Sopenharmony_ci	{0x46, 0x4b, {0x131,3623,100, 0,0,0x0a,0xa2,0x18,0xf2,0x14,0x08,0x0}},
13762306a36Sopenharmony_ci	{0x4c, 0x52, {0x132,3114,100, 0,0,0x04,0xa2,0x18,0xf2,0x14,0x08,0x0}},
13862306a36Sopenharmony_ci	{0x53, 0x58, {0x133,2079,100, 0,0,0x07,0xa2,0x18,0xf2,0x14,0x18,0x0}},
13962306a36Sopenharmony_ci	{0x59, 0x5e, {0x134,1442,100, 0,0,0x0a,0xa2,0x18,0xf3,0x14,0x18,0x0}},
14062306a36Sopenharmony_ci	{0x5f, 0x6d, {0x135,1913,100, 0,0,0x00,0xa2,0x18,0xf4,0x15,0x08,0x0}}
14162306a36Sopenharmony_ci};
14262306a36Sopenharmony_cistatic const struct opl4_region regions_06[] = { /* Harpsichord */
14362306a36Sopenharmony_ci	{0x15, 0x39, {0x080,5158,100, 0,0,0x00,0xb2,0x20,0xf5,0x24,0x19,0x0}},
14462306a36Sopenharmony_ci	{0x3a, 0x3f, {0x081,4408,100, 0,0,0x00,0xb2,0x20,0xf5,0x25,0x09,0x0}},
14562306a36Sopenharmony_ci	{0x40, 0x45, {0x082,3622,100, 0,0,0x00,0xb2,0x20,0xf5,0x25,0x09,0x0}},
14662306a36Sopenharmony_ci	{0x46, 0x4d, {0x083,2843,100, 0,0,0x00,0xb2,0x20,0xf5,0x25,0x19,0x0}},
14762306a36Sopenharmony_ci	{0x4e, 0x6c, {0x084,1307,100, 0,0,0x00,0xb2,0x20,0xf5,0x25,0x29,0x0}}
14862306a36Sopenharmony_ci};
14962306a36Sopenharmony_cistatic const struct opl4_region regions_07[] = { /* Clavinet */
15062306a36Sopenharmony_ci	{0x15, 0x51, {0x027,5009,100, 0,0,0x00,0xd2,0x28,0xf5,0x13,0x2b,0x0}},
15162306a36Sopenharmony_ci	{0x52, 0x6c, {0x028,3495,100, 0,0,0x00,0xd2,0x28,0xf5,0x13,0x3b,0x0}}
15262306a36Sopenharmony_ci};
15362306a36Sopenharmony_cistatic const struct opl4_region regions_08[] = { /* Celesta */
15462306a36Sopenharmony_ci	{0x15, 0x6c, {0x02b,3267,100, 0,0,0x00,0xdc,0x20,0xf4,0x15,0x07,0x3}}
15562306a36Sopenharmony_ci};
15662306a36Sopenharmony_cistatic const struct opl4_region regions_09[] = { /* Glockenspiel */
15762306a36Sopenharmony_ci	{0x15, 0x78, {0x0f3, 285,100, 0,0,0x00,0xc2,0x28,0xf6,0x25,0x25,0x0}}
15862306a36Sopenharmony_ci};
15962306a36Sopenharmony_cistatic const struct opl4_region regions_0a[] = { /* Music Box */
16062306a36Sopenharmony_ci	{0x15, 0x6c, {0x0f3,3362,100, 0,0,0x00,0xb6,0x20,0xa6,0x25,0x25,0x0}},
16162306a36Sopenharmony_ci	{0x15, 0x6c, {0x101,4773,100, 0,0,0x00,0xaa,0x20,0xd4,0x14,0x16,0x0}}
16262306a36Sopenharmony_ci};
16362306a36Sopenharmony_cistatic const struct opl4_region regions_0b[] = { /* Vibraphone */
16462306a36Sopenharmony_ci	{0x15, 0x6c, {0x101,4778,100, 0,0,0x00,0xc0,0x28,0xf4,0x14,0x16,0x4}}
16562306a36Sopenharmony_ci};
16662306a36Sopenharmony_cistatic const struct opl4_region regions_0c[] = { /* Marimba */
16762306a36Sopenharmony_ci	{0x15, 0x3f, {0x0f4,4778,100, 0,0,0x00,0xc4,0x38,0xf7,0x47,0x08,0x0}},
16862306a36Sopenharmony_ci	{0x40, 0x4c, {0x0f5,3217,100, 0,0,0x00,0xc4,0x38,0xf7,0x47,0x08,0x0}},
16962306a36Sopenharmony_ci	{0x4d, 0x5a, {0x0f5,3217,100, 0,0,0x00,0xc4,0x38,0xf7,0x48,0x08,0x0}},
17062306a36Sopenharmony_ci	{0x5b, 0x7f, {0x0f5,3218,100, 0,0,0x00,0xc4,0x38,0xf7,0x48,0x18,0x0}}
17162306a36Sopenharmony_ci};
17262306a36Sopenharmony_cistatic const struct opl4_region regions_0d[] = { /* Xylophone */
17362306a36Sopenharmony_ci	{0x00, 0x7f, {0x136,1729,100, 0,0,0x00,0xd2,0x38,0xf0,0x06,0x36,0x0}}
17462306a36Sopenharmony_ci};
17562306a36Sopenharmony_cistatic const struct opl4_region regions_0e[] = { /* Tubular Bell */
17662306a36Sopenharmony_ci	{0x01, 0x7f, {0x0ff,3999,100, 0,1,0x00,0x90,0x21,0xf4,0xa3,0x25,0x1}}
17762306a36Sopenharmony_ci};
17862306a36Sopenharmony_cistatic const struct opl4_region regions_0f[] = { /* Dulcimer */
17962306a36Sopenharmony_ci	{0x00, 0x7f, {0x03f,4236,100, 0,1,0x00,0xbc,0x29,0xf5,0x16,0x07,0x0}},
18062306a36Sopenharmony_ci	{0x00, 0x7f, {0x040,4236,100, 0,2,0x0e,0x94,0x2a,0xf5,0x16,0x07,0x0}}
18162306a36Sopenharmony_ci};
18262306a36Sopenharmony_cistatic const struct opl4_region regions_10[] = { /* Drawbar Organ */
18362306a36Sopenharmony_ci	{0x01, 0x7f, {0x08e,4394,100, 0,2,0x14,0xc2,0x3a,0xf0,0x00,0x0a,0x0}}
18462306a36Sopenharmony_ci};
18562306a36Sopenharmony_cistatic const struct opl4_region regions_11[] = { /* Percussive Organ */
18662306a36Sopenharmony_ci	{0x15, 0x3b, {0x08c,6062,100, 0,3,0x00,0xbe,0x3b,0xf0,0x00,0x09,0x0}},
18762306a36Sopenharmony_ci	{0x3c, 0x6c, {0x08d,2984,100, 0,3,0x00,0xbe,0x3b,0xf0,0x00,0x09,0x0}}
18862306a36Sopenharmony_ci};
18962306a36Sopenharmony_cistatic const struct opl4_region regions_12[] = { /* Rock Organ */
19062306a36Sopenharmony_ci	{0x15, 0x30, {0x128,6574,100, 0,1,0x00,0xcc,0x39,0xf0,0x00,0x0a,0x0}},
19162306a36Sopenharmony_ci	{0x31, 0x3c, {0x129,5040,100, 0,1,0x00,0xcc,0x39,0xf0,0x00,0x0a,0x0}},
19262306a36Sopenharmony_ci	{0x3d, 0x48, {0x12a,3498,100, 0,1,0x00,0xcc,0x39,0xf0,0x00,0x0a,0x0}},
19362306a36Sopenharmony_ci	{0x49, 0x54, {0x12b,1957,100, 0,1,0x00,0xcc,0x39,0xf0,0x00,0x0a,0x0}},
19462306a36Sopenharmony_ci	{0x55, 0x6c, {0x127, 423,100, 0,1,0x00,0xcc,0x39,0xf0,0x00,0x0a,0x0}}
19562306a36Sopenharmony_ci};
19662306a36Sopenharmony_cistatic const struct opl4_region regions_13[] = { /* Church Organ */
19762306a36Sopenharmony_ci	{0x15, 0x29, {0x087,7466,100, 0,1,0x00,0xc4,0x11,0xf0,0x00,0x09,0x0}},
19862306a36Sopenharmony_ci	{0x2a, 0x30, {0x088,6456,100, 0,1,0x00,0xc4,0x11,0xf0,0x00,0x09,0x0}},
19962306a36Sopenharmony_ci	{0x31, 0x38, {0x089,5428,100, 0,1,0x00,0xc4,0x11,0xf0,0x00,0x09,0x0}},
20062306a36Sopenharmony_ci	{0x39, 0x41, {0x08a,4408,100, 0,1,0x00,0xc4,0x11,0xf0,0x00,0x09,0x0}},
20162306a36Sopenharmony_ci	{0x42, 0x6c, {0x08b,3406,100, 0,1,0x00,0xc4,0x11,0xf0,0x00,0x09,0x0}}
20262306a36Sopenharmony_ci};
20362306a36Sopenharmony_cistatic const struct opl4_region regions_14[] = { /* Reed Organ */
20462306a36Sopenharmony_ci	{0x00, 0x53, {0x0ac,5570,100, 0,0,0x06,0xc0,0x38,0xf0,0x00,0x09,0x1}},
20562306a36Sopenharmony_ci	{0x54, 0x7f, {0x0ad,2497,100, 0,0,0x00,0xc0,0x38,0xf0,0x00,0x09,0x1}}
20662306a36Sopenharmony_ci};
20762306a36Sopenharmony_cistatic const struct opl4_region regions_15[] = { /* Accordion */
20862306a36Sopenharmony_ci	{0x15, 0x4c, {0x006,4261,100, 0,2,0x00,0xa4,0x22,0x90,0x00,0x09,0x0}},
20962306a36Sopenharmony_ci	{0x4d, 0x6c, {0x007,1530,100, 0,2,0x00,0xa4,0x22,0x90,0x00,0x09,0x0}},
21062306a36Sopenharmony_ci	{0x15, 0x6c, {0x070,4391,100, 0,3,0x00,0x8a,0x23,0xa0,0x00,0x09,0x0}}
21162306a36Sopenharmony_ci};
21262306a36Sopenharmony_cistatic const struct opl4_region regions_16[] = { /* Harmonica */
21362306a36Sopenharmony_ci	{0x15, 0x6c, {0x070,4408,100, 0,0,0x00,0xae,0x30,0xa0,0x00,0x09,0x2}}
21462306a36Sopenharmony_ci};
21562306a36Sopenharmony_cistatic const struct opl4_region regions_17[] = { /* Tango Accordion */
21662306a36Sopenharmony_ci	{0x00, 0x53, {0x0ac,5573,100, 0,0,0x00,0xae,0x38,0xf0,0x00,0x09,0x0}},
21762306a36Sopenharmony_ci	{0x54, 0x7f, {0x0ad,2500,100, 0,0,0x00,0xae,0x38,0xf0,0x00,0x09,0x0}},
21862306a36Sopenharmony_ci	{0x15, 0x6c, {0x041,8479,100, 0,2,0x00,0x6a,0x3a,0x75,0x20,0x0a,0x0}}
21962306a36Sopenharmony_ci};
22062306a36Sopenharmony_cistatic const struct opl4_region regions_18[] = { /* Nylon Guitar */
22162306a36Sopenharmony_ci	{0x15, 0x2f, {0x0b3,6964,100, 0,0,0x05,0xca,0x28,0xf5,0x34,0x09,0x0}},
22262306a36Sopenharmony_ci	{0x30, 0x36, {0x0b7,5567,100, 0,0,0x0c,0xca,0x28,0xf5,0x34,0x09,0x0}},
22362306a36Sopenharmony_ci	{0x37, 0x3c, {0x0b5,4653,100, 0,0,0x00,0xca,0x28,0xf6,0x34,0x09,0x0}},
22462306a36Sopenharmony_ci	{0x3d, 0x43, {0x0b4,3892,100, 0,0,0x00,0xca,0x28,0xf6,0x35,0x09,0x0}},
22562306a36Sopenharmony_ci	{0x44, 0x60, {0x0b6,2723,100, 0,0,0x00,0xca,0x28,0xf6,0x35,0x19,0x0}}
22662306a36Sopenharmony_ci};
22762306a36Sopenharmony_cistatic const struct opl4_region regions_19[] = { /* Steel Guitar */
22862306a36Sopenharmony_ci	{0x15, 0x31, {0x00c,6937,100, 0,0,0x00,0xbc,0x28,0xf0,0x04,0x19,0x0}},
22962306a36Sopenharmony_ci	{0x32, 0x38, {0x00d,5410,100, 0,0,0x00,0xbc,0x28,0xf0,0x05,0x09,0x0}},
23062306a36Sopenharmony_ci	{0x39, 0x47, {0x00e,4379,100, 0,0,0x00,0xbc,0x28,0xf5,0x94,0x09,0x0}},
23162306a36Sopenharmony_ci	{0x48, 0x6c, {0x00f,2843,100, 0,0,0x00,0xbc,0x28,0xf6,0x95,0x09,0x0}}
23262306a36Sopenharmony_ci};
23362306a36Sopenharmony_cistatic const struct opl4_region regions_1a[] = { /* Jazz Guitar */
23462306a36Sopenharmony_ci	{0x15, 0x31, {0x05a,6832,100, 0,0,0x00,0xca,0x28,0xf6,0x34,0x09,0x0}},
23562306a36Sopenharmony_ci	{0x32, 0x3f, {0x05b,4897,100, 0,0,0x00,0xca,0x28,0xf6,0x34,0x09,0x0}},
23662306a36Sopenharmony_ci	{0x40, 0x6c, {0x05c,3218,100, 0,0,0x00,0xca,0x28,0xf6,0x34,0x09,0x0}}
23762306a36Sopenharmony_ci};
23862306a36Sopenharmony_cistatic const struct opl4_region regions_1b[] = { /* Clean Guitar */
23962306a36Sopenharmony_ci	{0x15, 0x2c, {0x061,7053,100, 0,1,0x00,0xb4,0x29,0xf5,0x54,0x0a,0x0}},
24062306a36Sopenharmony_ci	{0x2d, 0x31, {0x060,6434,100, 0,1,0x00,0xb4,0x29,0xf5,0x54,0x0a,0x0}},
24162306a36Sopenharmony_ci	{0x32, 0x38, {0x063,5764,100, 0,1,0x00,0xbe,0x29,0xf5,0x55,0x0a,0x0}},
24262306a36Sopenharmony_ci	{0x39, 0x3f, {0x062,4627,100, 0,1,0x00,0xb4,0x29,0xf5,0x55,0x0a,0x0}},
24362306a36Sopenharmony_ci	{0x40, 0x44, {0x065,3963,100, 0,1,0x00,0xb4,0x29,0xf5,0x55,0x1a,0x0}},
24462306a36Sopenharmony_ci	{0x45, 0x4b, {0x064,3313,100, 0,1,0x00,0xb4,0x29,0xf5,0x55,0x1a,0x0}},
24562306a36Sopenharmony_ci	{0x4c, 0x54, {0x066,2462,100, 0,1,0x00,0xb4,0x29,0xf5,0x55,0x2a,0x0}},
24662306a36Sopenharmony_ci	{0x55, 0x6c, {0x067,1307,100, 0,1,0x00,0xb4,0x29,0xf6,0x56,0x0a,0x0}}
24762306a36Sopenharmony_ci};
24862306a36Sopenharmony_cistatic const struct opl4_region regions_1c[] = { /* Muted Guitar */
24962306a36Sopenharmony_ci	{0x01, 0x7f, {0x068,4408,100, 0,0,0x00,0xcc,0x28,0xf6,0x15,0x09,0x0}}
25062306a36Sopenharmony_ci};
25162306a36Sopenharmony_cistatic const struct opl4_region regions_1d[] = { /* Overdriven Guitar */
25262306a36Sopenharmony_ci	{0x00, 0x40, {0x0a5,6589,100, 0,1,0x00,0xc0,0x29,0xf2,0x11,0x09,0x0}},
25362306a36Sopenharmony_ci	{0x41, 0x7f, {0x0a6,5428,100, 0,1,0x00,0xc0,0x29,0xf2,0x11,0x09,0x0}}
25462306a36Sopenharmony_ci};
25562306a36Sopenharmony_cistatic const struct opl4_region regions_1e[] = { /* Distortion Guitar */
25662306a36Sopenharmony_ci	{0x15, 0x2a, {0x051,6928,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}},
25762306a36Sopenharmony_ci	{0x2b, 0x2e, {0x052,6433,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}},
25862306a36Sopenharmony_ci	{0x2f, 0x32, {0x053,5944,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}},
25962306a36Sopenharmony_ci	{0x33, 0x36, {0x054,5391,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}},
26062306a36Sopenharmony_ci	{0x37, 0x3a, {0x055,4897,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}},
26162306a36Sopenharmony_ci	{0x3b, 0x3e, {0x056,4408,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}},
26262306a36Sopenharmony_ci	{0x3f, 0x42, {0x057,3892,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}},
26362306a36Sopenharmony_ci	{0x43, 0x46, {0x058,3361,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}},
26462306a36Sopenharmony_ci	{0x47, 0x6c, {0x059,2784,100, 0,1,0x00,0xbc,0x21,0xa2,0x12,0x0a,0x0}}
26562306a36Sopenharmony_ci};
26662306a36Sopenharmony_cistatic const struct opl4_region regions_1f[] = { /* Guitar Harmonics */
26762306a36Sopenharmony_ci	{0x15, 0x44, {0x05e,5499,100, 0,0,0x00,0xce,0x28,0xf4,0x24,0x09,0x0}},
26862306a36Sopenharmony_ci	{0x45, 0x49, {0x05d,4850,100, 0,0,0x00,0xe2,0x28,0xf4,0x24,0x09,0x0}},
26962306a36Sopenharmony_ci	{0x4a, 0x6c, {0x05f,4259,100, 0,0,0x00,0xce,0x28,0xf4,0x24,0x09,0x0}}
27062306a36Sopenharmony_ci};
27162306a36Sopenharmony_cistatic const struct opl4_region regions_20[] = { /* Acoustic Bass */
27262306a36Sopenharmony_ci	{0x15, 0x30, {0x004,8053,100, 0,0,0x00,0xe2,0x18,0xf5,0x15,0x09,0x0}},
27362306a36Sopenharmony_ci	{0x31, 0x6c, {0x005,4754,100, 0,0,0x00,0xe2,0x18,0xf5,0x15,0x09,0x0}}
27462306a36Sopenharmony_ci};
27562306a36Sopenharmony_cistatic const struct opl4_region regions_21[] = { /* Fingered Bass */
27662306a36Sopenharmony_ci	{0x01, 0x20, {0x04a,8762,100, 0,0,0x00,0xde,0x18,0xf6,0x14,0x09,0x0}},
27762306a36Sopenharmony_ci	{0x21, 0x25, {0x04b,8114,100, 0,0,0x00,0xde,0x18,0xf6,0x14,0x09,0x0}},
27862306a36Sopenharmony_ci	{0x26, 0x2a, {0x04c,7475,100, 0,0,0x00,0xde,0x18,0xf6,0x14,0x09,0x0}},
27962306a36Sopenharmony_ci	{0x2b, 0x7f, {0x04d,6841,100, 0,0,0x00,0xde,0x18,0xf6,0x14,0x09,0x0}}
28062306a36Sopenharmony_ci};
28162306a36Sopenharmony_cistatic const struct opl4_region regions_22[] = { /* Picked Bass */
28262306a36Sopenharmony_ci	{0x15, 0x23, {0x04f,7954,100, 0,0,0x00,0xcc,0x18,0xf3,0x90,0x0a,0x0}},
28362306a36Sopenharmony_ci	{0x24, 0x2a, {0x050,7318,100, 0,0,0x05,0xcc,0x18,0xf3,0x90,0x1a,0x0}},
28462306a36Sopenharmony_ci	{0x2b, 0x2f, {0x06b,6654,100, 0,0,0x00,0xcc,0x18,0xf3,0x90,0x2a,0x0}},
28562306a36Sopenharmony_ci	{0x30, 0x47, {0x069,6031,100, 0,0,0x00,0xcc,0x18,0xf5,0xb0,0x0a,0x0}},
28662306a36Sopenharmony_ci	{0x48, 0x6c, {0x06a,5393,100, 0,0,0x00,0xcc,0x18,0xf5,0xb0,0x0a,0x0}}
28762306a36Sopenharmony_ci};
28862306a36Sopenharmony_cistatic const struct opl4_region regions_23[] = { /* Fretless Bass */
28962306a36Sopenharmony_ci	{0x01, 0x7f, {0x04e,5297,100, 0,0,0x00,0xd2,0x10,0xf3,0x63,0x19,0x0}}
29062306a36Sopenharmony_ci};
29162306a36Sopenharmony_cistatic const struct opl4_region regions_24[] = { /* Slap Bass 1 */
29262306a36Sopenharmony_ci	{0x15, 0x6c, {0x0a3,7606,100, 0,1,0x00,0xde,0x19,0xf5,0x32,0x1a,0x0}}
29362306a36Sopenharmony_ci};
29462306a36Sopenharmony_cistatic const struct opl4_region regions_25[] = { /* Slap Bass 2 */
29562306a36Sopenharmony_ci	{0x01, 0x7f, {0x0a2,6694,100, 0,0,0x00,0xda,0x20,0xb0,0x02,0x09,0x0}}
29662306a36Sopenharmony_ci};
29762306a36Sopenharmony_cistatic const struct opl4_region regions_26[] = { /* Synth Bass 1 */
29862306a36Sopenharmony_ci	{0x15, 0x6c, {0x0be,7466,100, 0,1,0x00,0xb8,0x39,0xf4,0x14,0x09,0x0}}
29962306a36Sopenharmony_ci};
30062306a36Sopenharmony_cistatic const struct opl4_region regions_27[] = { /* Synth Bass 2 */
30162306a36Sopenharmony_ci	{0x00, 0x7f, {0x117,8103,100, 0,1,0x00,0xca,0x39,0xf3,0x50,0x08,0x0}}
30262306a36Sopenharmony_ci};
30362306a36Sopenharmony_cistatic const struct opl4_region regions_28[] = { /* Violin */
30462306a36Sopenharmony_ci	{0x15, 0x3a, {0x105,5158,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}},
30562306a36Sopenharmony_ci	{0x3b, 0x3f, {0x102,4754,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}},
30662306a36Sopenharmony_ci	{0x40, 0x41, {0x106,4132,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}},
30762306a36Sopenharmony_ci	{0x42, 0x44, {0x107,4033,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}},
30862306a36Sopenharmony_ci	{0x45, 0x47, {0x108,3580,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}},
30962306a36Sopenharmony_ci	{0x48, 0x4a, {0x10a,2957,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}},
31062306a36Sopenharmony_ci	{0x4b, 0x4c, {0x10b,2724,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}},
31162306a36Sopenharmony_ci	{0x4d, 0x4e, {0x10c,2530,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}},
31262306a36Sopenharmony_ci	{0x4f, 0x51, {0x10d,2166,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}},
31362306a36Sopenharmony_ci	{0x52, 0x6c, {0x109,1825,100, 0,3,0x00,0xcc,0x3b,0xf3,0x20,0x09,0x0}}
31462306a36Sopenharmony_ci};
31562306a36Sopenharmony_cistatic const struct opl4_region regions_29[] = { /* Viola */
31662306a36Sopenharmony_ci	{0x15, 0x32, {0x103,5780,100, 0,3,0x00,0xc4,0x3b,0xa3,0x20,0x09,0x0}},
31762306a36Sopenharmony_ci	{0x33, 0x35, {0x104,5534,100, 0,3,0x00,0xc4,0x3b,0xa3,0x20,0x09,0x0}},
31862306a36Sopenharmony_ci	{0x36, 0x38, {0x105,5158,100, 0,3,0x00,0xc4,0x3b,0xa3,0x20,0x09,0x0}},
31962306a36Sopenharmony_ci	{0x39, 0x3d, {0x102,4754,100, 0,3,0x00,0xca,0x3b,0xa3,0x20,0x09,0x0}},
32062306a36Sopenharmony_ci	{0x3e, 0x3f, {0x106,4132,100, 0,3,0x00,0xc4,0x3b,0xa3,0x20,0x09,0x0}},
32162306a36Sopenharmony_ci	{0x40, 0x42, {0x107,4033,100, 0,3,0x00,0xc4,0x3b,0xa3,0x20,0x09,0x0}},
32262306a36Sopenharmony_ci	{0x43, 0x45, {0x108,3580,100, 0,3,0x00,0xd0,0x3b,0xa3,0x20,0x09,0x0}},
32362306a36Sopenharmony_ci	{0x46, 0x48, {0x10a,2957,100, 0,3,0x00,0xca,0x3b,0xa3,0x20,0x09,0x0}},
32462306a36Sopenharmony_ci	{0x49, 0x4a, {0x10b,2724,100, 0,3,0x00,0xd0,0x3b,0xa3,0x20,0x09,0x0}},
32562306a36Sopenharmony_ci	{0x4b, 0x4c, {0x10c,2530,100, 0,3,0x00,0xca,0x3b,0xa3,0x20,0x09,0x0}},
32662306a36Sopenharmony_ci	{0x4d, 0x4f, {0x10d,2166,100, 0,3,0x00,0xd0,0x3b,0xa3,0x20,0x09,0x0}},
32762306a36Sopenharmony_ci	{0x50, 0x6c, {0x109,1825,100, 0,3,0x00,0xd0,0x3b,0xa3,0x20,0x09,0x0}}
32862306a36Sopenharmony_ci};
32962306a36Sopenharmony_cistatic const struct opl4_region regions_2a[] = { /* Cello */
33062306a36Sopenharmony_ci	{0x15, 0x2d, {0x112,6545,100, 0,3,0x00,0xc0,0x33,0xa0,0x00,0x08,0x0}},
33162306a36Sopenharmony_ci	{0x2e, 0x37, {0x113,5764,100, 0,3,0x00,0xc0,0x33,0xa0,0x00,0x08,0x0}},
33262306a36Sopenharmony_ci	{0x38, 0x3e, {0x115,4378,100, 0,3,0x00,0xc0,0x33,0xa0,0x00,0x18,0x0}},
33362306a36Sopenharmony_ci	{0x3f, 0x44, {0x116,3998,100, 0,3,0x00,0xc0,0x33,0xa0,0x00,0x18,0x0}},
33462306a36Sopenharmony_ci	{0x45, 0x6c, {0x114,3218,100, 0,3,0x00,0xc0,0x33,0xa0,0x00,0x18,0x0}}
33562306a36Sopenharmony_ci};
33662306a36Sopenharmony_cistatic const struct opl4_region regions_2b[] = { /* Contrabass */
33762306a36Sopenharmony_ci	{0x15, 0x29, {0x110,7713,100, 0,1,0x00,0xc2,0x19,0x90,0x00,0x09,0x0}},
33862306a36Sopenharmony_ci	{0x2a, 0x6c, {0x111,6162,100, 0,1,0x00,0xc2,0x19,0x90,0x00,0x09,0x0}}
33962306a36Sopenharmony_ci};
34062306a36Sopenharmony_cistatic const struct opl4_region regions_2c[] = { /* Tremolo Strings */
34162306a36Sopenharmony_ci	{0x15, 0x3b, {0x0b0,4810,100, 0,0,0x0a,0xde,0x38,0xf0,0x00,0x07,0x6}},
34262306a36Sopenharmony_ci	{0x3c, 0x41, {0x035,4035,100, 0,0,0x05,0xde,0x38,0xf0,0x00,0x07,0x6}},
34362306a36Sopenharmony_ci	{0x42, 0x47, {0x033,3129,100, 0,0,0x05,0xde,0x38,0xf0,0x00,0x07,0x6}},
34462306a36Sopenharmony_ci	{0x48, 0x52, {0x034,2625,100, 0,0,0x05,0xde,0x38,0xf0,0x00,0x07,0x6}},
34562306a36Sopenharmony_ci	{0x53, 0x6c, {0x0af, 936,100, 0,0,0x00,0xde,0x38,0xf0,0x00,0x07,0x6}}
34662306a36Sopenharmony_ci};
34762306a36Sopenharmony_cistatic const struct opl4_region regions_2d[] = { /* Pizzicato Strings */
34862306a36Sopenharmony_ci	{0x15, 0x32, {0x0b8,6186,100, 0,0,0x00,0xbc,0x28,0xf0,0x00,0x05,0x0}},
34962306a36Sopenharmony_ci	{0x33, 0x3b, {0x0b9,5031,100, 0,0,0x00,0xbc,0x28,0xf0,0x00,0x05,0x0}},
35062306a36Sopenharmony_ci	{0x3c, 0x42, {0x0bb,4146,100, 0,0,0x00,0xbc,0x28,0xf0,0x00,0x05,0x0}},
35162306a36Sopenharmony_ci	{0x43, 0x48, {0x0ba,3245,100, 0,0,0x00,0xc2,0x28,0xf0,0x00,0x05,0x0}},
35262306a36Sopenharmony_ci	{0x49, 0x6c, {0x0bc,2352,100, 0,0,0x00,0xbc,0x28,0xf0,0x00,0x05,0x0}}
35362306a36Sopenharmony_ci};
35462306a36Sopenharmony_cistatic const struct opl4_region regions_2e[] = { /* Harp */
35562306a36Sopenharmony_ci	{0x15, 0x46, {0x07e,3740,100, 0,1,0x00,0xd2,0x29,0xf5,0x25,0x07,0x0}},
35662306a36Sopenharmony_ci	{0x47, 0x6c, {0x07f,2319,100, 0,1,0x00,0xd2,0x29,0xf5,0x25,0x07,0x0}}
35762306a36Sopenharmony_ci};
35862306a36Sopenharmony_cistatic const struct opl4_region regions_2f[] = { /* Timpani */
35962306a36Sopenharmony_ci	{0x15, 0x6c, {0x100,6570,100, 0,0,0x00,0xf8,0x28,0xf0,0x05,0x16,0x0}}
36062306a36Sopenharmony_ci};
36162306a36Sopenharmony_cistatic const struct opl4_region regions_30[] = { /* Strings */
36262306a36Sopenharmony_ci	{0x15, 0x3b, {0x13c,4806,100, 0,0,0x00,0xc8,0x20,0x80,0x00,0x07,0x0}},
36362306a36Sopenharmony_ci	{0x3c, 0x41, {0x13e,4035,100, 0,0,0x00,0xc8,0x20,0x80,0x00,0x07,0x0}},
36462306a36Sopenharmony_ci	{0x42, 0x47, {0x13d,3122,100, 0,0,0x00,0xc8,0x20,0x80,0x00,0x07,0x0}},
36562306a36Sopenharmony_ci	{0x48, 0x52, {0x13f,2629,100, 0,0,0x00,0xbe,0x20,0x80,0x00,0x07,0x0}},
36662306a36Sopenharmony_ci	{0x53, 0x6c, {0x140, 950,100, 0,0,0x00,0xbe,0x20,0x80,0x00,0x07,0x0}}
36762306a36Sopenharmony_ci};
36862306a36Sopenharmony_cistatic const struct opl4_region regions_31[] = { /* Slow Strings */
36962306a36Sopenharmony_ci	{0x15, 0x3b, {0x0b0,4810,100, 0,1,0x0a,0xbe,0x19,0xf0,0x00,0x07,0x0}},
37062306a36Sopenharmony_ci	{0x3c, 0x41, {0x035,4035,100, 0,1,0x05,0xbe,0x19,0xf0,0x00,0x07,0x0}},
37162306a36Sopenharmony_ci	{0x42, 0x47, {0x033,3129,100, 0,1,0x05,0xbe,0x19,0xf0,0x00,0x07,0x0}},
37262306a36Sopenharmony_ci	{0x48, 0x52, {0x034,2625,100, 0,1,0x05,0xbe,0x19,0xf0,0x00,0x07,0x0}},
37362306a36Sopenharmony_ci	{0x53, 0x6c, {0x0af, 936,100, 0,1,0x00,0xbe,0x19,0xf0,0x00,0x07,0x0}}
37462306a36Sopenharmony_ci};
37562306a36Sopenharmony_cistatic const struct opl4_region regions_32[] = { /* Synth Strings 1 */
37662306a36Sopenharmony_ci	{0x05, 0x71, {0x002,6045,100,-2,0,0x00,0xa6,0x20,0x93,0x22,0x06,0x0}},
37762306a36Sopenharmony_ci	{0x15, 0x6c, {0x0ae,3261,100, 2,0,0x00,0xc6,0x20,0x70,0x01,0x06,0x0}}
37862306a36Sopenharmony_ci};
37962306a36Sopenharmony_cistatic const struct opl4_region regions_33[] = { /* Synth Strings 2 */
38062306a36Sopenharmony_ci	{0x15, 0x6c, {0x002,4513,100, 5,1,0x00,0xb4,0x19,0x70,0x00,0x06,0x0}},
38162306a36Sopenharmony_ci	{0x15, 0x6c, {0x002,4501,100,-5,1,0x00,0xb4,0x19,0x70,0x00,0x06,0x0}}
38262306a36Sopenharmony_ci};
38362306a36Sopenharmony_cistatic const struct opl4_region regions_34[] = { /* Choir Aahs */
38462306a36Sopenharmony_ci	{0x15, 0x3a, {0x018,5010,100, 0,2,0x00,0xc2,0x1a,0x70,0x00,0x08,0x0}},
38562306a36Sopenharmony_ci	{0x3b, 0x40, {0x019,4370,100, 0,2,0x00,0xc2,0x1a,0x70,0x00,0x08,0x0}},
38662306a36Sopenharmony_ci	{0x41, 0x47, {0x01a,3478,100, 0,2,0x00,0xc2,0x1a,0x70,0x00,0x08,0x0}},
38762306a36Sopenharmony_ci	{0x48, 0x6c, {0x01b,2197,100, 0,2,0x00,0xc2,0x1a,0x70,0x00,0x08,0x0}}
38862306a36Sopenharmony_ci};
38962306a36Sopenharmony_cistatic const struct opl4_region regions_35[] = { /* Voice Oohs */
39062306a36Sopenharmony_ci	{0x15, 0x6c, {0x029,3596,100, 0,0,0x00,0xe6,0x20,0xf7,0x20,0x08,0x0}}
39162306a36Sopenharmony_ci};
39262306a36Sopenharmony_cistatic const struct opl4_region regions_36[] = { /* Synth Voice */
39362306a36Sopenharmony_ci	{0x15, 0x6c, {0x02a,3482,100, 0,1,0x00,0xc2,0x19,0x85,0x21,0x07,0x0}}
39462306a36Sopenharmony_ci};
39562306a36Sopenharmony_cistatic const struct opl4_region regions_37[] = { /* Orchestra Hit */
39662306a36Sopenharmony_ci	{0x15, 0x6c, {0x049,4394,100, 0,0,0x00,0xfe,0x30,0x80,0x05,0x05,0x0}}
39762306a36Sopenharmony_ci};
39862306a36Sopenharmony_cistatic const struct opl4_region regions_38[] = { /* Trumpet */
39962306a36Sopenharmony_ci	{0x15, 0x3c, {0x0f6,4706,100, 0,2,0x00,0xd6,0x32,0xf3,0x20,0x0a,0x0}},
40062306a36Sopenharmony_ci	{0x3d, 0x43, {0x0f8,3894,100, 0,2,0x00,0xd6,0x32,0xf3,0x20,0x0a,0x0}},
40162306a36Sopenharmony_ci	{0x44, 0x48, {0x0f7,3118,100, 0,2,0x00,0xd6,0x32,0xf3,0x20,0x0a,0x0}},
40262306a36Sopenharmony_ci	{0x49, 0x4e, {0x0fa,2322,100, 0,2,0x00,0xd6,0x32,0xf3,0x20,0x0a,0x0}},
40362306a36Sopenharmony_ci	{0x4f, 0x55, {0x0f9,1634,100, 0,2,0x00,0xd6,0x32,0xf3,0x20,0x0a,0x0}},
40462306a36Sopenharmony_ci	{0x56, 0x6c, {0x0fb, 786,100, 0,2,0x00,0xd6,0x32,0xf3,0x20,0x0a,0x0}}
40562306a36Sopenharmony_ci};
40662306a36Sopenharmony_cistatic const struct opl4_region regions_39[] = { /* Trombone */
40762306a36Sopenharmony_ci	{0x15, 0x3a, {0x0f0,5053,100, 0,1,0x00,0xd6,0x21,0xf0,0x00,0x09,0x0}},
40862306a36Sopenharmony_ci	{0x3b, 0x3f, {0x0f1,4290,100, 0,1,0x00,0xd6,0x21,0xf0,0x00,0x09,0x0}},
40962306a36Sopenharmony_ci	{0x40, 0x6c, {0x0f2,3580,100, 0,1,0x00,0xd6,0x21,0xf0,0x00,0x09,0x0}}
41062306a36Sopenharmony_ci};
41162306a36Sopenharmony_cistatic const struct opl4_region regions_3a[] = { /* Tuba */
41262306a36Sopenharmony_ci	{0x15, 0x2d, {0x085,7096,100, 0,1,0x00,0xde,0x21,0xf5,0x10,0x09,0x0}},
41362306a36Sopenharmony_ci	{0x2e, 0x6c, {0x086,6014,100, 0,1,0x00,0xde,0x21,0xf5,0x10,0x09,0x0}}
41462306a36Sopenharmony_ci};
41562306a36Sopenharmony_cistatic const struct opl4_region regions_3b[] = { /* Muted Trumpet */
41662306a36Sopenharmony_ci	{0x15, 0x45, {0x0b1,4135,100, 0,0,0x00,0xcc,0x28,0xf3,0x10,0x0a,0x1}},
41762306a36Sopenharmony_ci	{0x46, 0x6c, {0x0b2,2599,100, 0,0,0x00,0xcc,0x28,0x83,0x10,0x0a,0x1}}
41862306a36Sopenharmony_ci};
41962306a36Sopenharmony_cistatic const struct opl4_region regions_3c[] = { /* French Horns */
42062306a36Sopenharmony_ci	{0x15, 0x49, {0x07c,3624,100, 0,2,0x00,0xd0,0x1a,0xf0,0x00,0x09,0x0}},
42162306a36Sopenharmony_ci	{0x4a, 0x6c, {0x07d,2664,100, 0,2,0x00,0xd0,0x1a,0xf0,0x00,0x09,0x0}}
42262306a36Sopenharmony_ci};
42362306a36Sopenharmony_cistatic const struct opl4_region regions_3d[] = { /* Brass Section */
42462306a36Sopenharmony_ci	{0x15, 0x42, {0x0fc,4375,100, 0,0,0x00,0xd6,0x28,0xf0,0x00,0x0a,0x0}},
42562306a36Sopenharmony_ci	{0x43, 0x6c, {0x0fd,2854,100, 0,0,0x00,0xd6,0x28,0xf0,0x00,0x0a,0x0}}
42662306a36Sopenharmony_ci};
42762306a36Sopenharmony_cistatic const struct opl4_region regions_3e[] = { /* Synth Brass 1 */
42862306a36Sopenharmony_ci	{0x01, 0x27, {0x0d3,9094,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}},
42962306a36Sopenharmony_ci	{0x28, 0x2d, {0x0da,8335,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}},
43062306a36Sopenharmony_ci	{0x2e, 0x33, {0x0d4,7558,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}},
43162306a36Sopenharmony_ci	{0x34, 0x39, {0x0db,6785,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}},
43262306a36Sopenharmony_ci	{0x3a, 0x3f, {0x0d5,6042,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}},
43362306a36Sopenharmony_ci	{0x40, 0x45, {0x0dc,5257,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}},
43462306a36Sopenharmony_ci	{0x46, 0x4b, {0x0d6,4493,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}},
43562306a36Sopenharmony_ci	{0x4c, 0x51, {0x0dd,3741,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}},
43662306a36Sopenharmony_ci	{0x52, 0x57, {0x0d7,3012,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}},
43762306a36Sopenharmony_ci	{0x58, 0x5d, {0x0de,2167,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}},
43862306a36Sopenharmony_ci	{0x5e, 0x63, {0x0d8,1421,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}},
43962306a36Sopenharmony_ci	{0x64, 0x7f, {0x0d9,-115,100,-1,0,0x00,0xbe,0x18,0xa5,0x11,0x08,0x0}},
44062306a36Sopenharmony_ci	{0x01, 0x27, {0x118,9103,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}},
44162306a36Sopenharmony_ci	{0x28, 0x2d, {0x119,8340,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}},
44262306a36Sopenharmony_ci	{0x2e, 0x33, {0x11a,7565,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}},
44362306a36Sopenharmony_ci	{0x34, 0x39, {0x11b,6804,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}},
44462306a36Sopenharmony_ci	{0x3a, 0x3f, {0x11c,6042,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}},
44562306a36Sopenharmony_ci	{0x40, 0x45, {0x11d,5277,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}},
44662306a36Sopenharmony_ci	{0x46, 0x4b, {0x11e,4520,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}},
44762306a36Sopenharmony_ci	{0x4c, 0x51, {0x11f,3741,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}},
44862306a36Sopenharmony_ci	{0x52, 0x57, {0x120,3012,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}},
44962306a36Sopenharmony_ci	{0x58, 0x5d, {0x121,2166,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}},
45062306a36Sopenharmony_ci	{0x5e, 0x64, {0x122,1421,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}},
45162306a36Sopenharmony_ci	{0x65, 0x7f, {0x123,-115,100, 1,1,0x00,0xbe,0x19,0x85,0x23,0x08,0x0}}
45262306a36Sopenharmony_ci};
45362306a36Sopenharmony_cistatic const struct opl4_region regions_3f[] = { /* Synth Brass 2 */
45462306a36Sopenharmony_ci	{0x01, 0x27, {0x118,9113,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}},
45562306a36Sopenharmony_ci	{0x28, 0x2d, {0x119,8350,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}},
45662306a36Sopenharmony_ci	{0x2e, 0x33, {0x11a,7575,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}},
45762306a36Sopenharmony_ci	{0x34, 0x39, {0x11b,6814,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}},
45862306a36Sopenharmony_ci	{0x3a, 0x3f, {0x11c,6052,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}},
45962306a36Sopenharmony_ci	{0x40, 0x45, {0x11d,5287,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}},
46062306a36Sopenharmony_ci	{0x46, 0x4b, {0x11e,4530,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}},
46162306a36Sopenharmony_ci	{0x4c, 0x51, {0x11f,3751,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}},
46262306a36Sopenharmony_ci	{0x52, 0x57, {0x120,3022,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}},
46362306a36Sopenharmony_ci	{0x58, 0x5d, {0x121,2176,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}},
46462306a36Sopenharmony_ci	{0x5e, 0x64, {0x122,1431,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}},
46562306a36Sopenharmony_ci	{0x65, 0x7f, {0x123,-105,100, 3,6,0x00,0xae,0x26,0x85,0x23,0x08,0x0}},
46662306a36Sopenharmony_ci	{0x00, 0x7f, {0x124,4034,100,-3,2,0x00,0xea,0x22,0x85,0x23,0x08,0x0}}
46762306a36Sopenharmony_ci};
46862306a36Sopenharmony_cistatic const struct opl4_region regions_40[] = { /* Soprano Sax */
46962306a36Sopenharmony_ci	{0x15, 0x3f, {0x0e3,4228,100, 0,1,0x00,0xc8,0x21,0xf5,0x20,0x0a,0x0}},
47062306a36Sopenharmony_ci	{0x40, 0x45, {0x0e4,3495,100, 0,1,0x00,0xc8,0x21,0xf5,0x20,0x0a,0x0}},
47162306a36Sopenharmony_ci	{0x46, 0x4b, {0x0e5,2660,100, 0,1,0x00,0xd6,0x21,0xf5,0x20,0x0a,0x0}},
47262306a36Sopenharmony_ci	{0x4c, 0x51, {0x0e6,2002,100, 0,1,0x00,0xd6,0x21,0xf5,0x20,0x0a,0x0}},
47362306a36Sopenharmony_ci	{0x52, 0x59, {0x0e7,1186,100, 0,1,0x00,0xd6,0x21,0xf5,0x20,0x0a,0x0}},
47462306a36Sopenharmony_ci	{0x59, 0x6c, {0x0e8,1730,100, 0,1,0x00,0xc8,0x21,0xf5,0x20,0x0a,0x0}}
47562306a36Sopenharmony_ci};
47662306a36Sopenharmony_cistatic const struct opl4_region regions_41[] = { /* Alto Sax */
47762306a36Sopenharmony_ci	{0x15, 0x32, {0x092,6204,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}},
47862306a36Sopenharmony_ci	{0x33, 0x35, {0x096,5812,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}},
47962306a36Sopenharmony_ci	{0x36, 0x3a, {0x099,5318,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}},
48062306a36Sopenharmony_ci	{0x3b, 0x3b, {0x08f,5076,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}},
48162306a36Sopenharmony_ci	{0x3c, 0x3e, {0x093,4706,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}},
48262306a36Sopenharmony_ci	{0x3f, 0x41, {0x097,4321,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}},
48362306a36Sopenharmony_ci	{0x42, 0x44, {0x09a,3893,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}},
48462306a36Sopenharmony_ci	{0x45, 0x47, {0x090,3497,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}},
48562306a36Sopenharmony_ci	{0x48, 0x4a, {0x094,3119,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}},
48662306a36Sopenharmony_ci	{0x4b, 0x4d, {0x098,2726,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}},
48762306a36Sopenharmony_ci	{0x4e, 0x50, {0x09b,2393,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}},
48862306a36Sopenharmony_ci	{0x51, 0x53, {0x091,2088,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}},
48962306a36Sopenharmony_ci	{0x54, 0x6c, {0x095,1732,100, 0,1,0x00,0xbe,0x19,0xf5,0x20,0x0b,0x0}}
49062306a36Sopenharmony_ci};
49162306a36Sopenharmony_cistatic const struct opl4_region regions_42[] = { /* Tenor Sax */
49262306a36Sopenharmony_ci	{0x24, 0x30, {0x0e9,6301,100, 0,1,0x00,0xbc,0x19,0xf4,0x10,0x0b,0x0}},
49362306a36Sopenharmony_ci	{0x31, 0x34, {0x0ea,5781,100, 0,1,0x00,0xbc,0x19,0xf4,0x10,0x0b,0x0}},
49462306a36Sopenharmony_ci	{0x35, 0x3a, {0x0eb,5053,100, 0,1,0x00,0xbc,0x19,0xf4,0x10,0x0b,0x0}},
49562306a36Sopenharmony_ci	{0x3b, 0x41, {0x0ed,4165,100, 0,1,0x00,0xbc,0x19,0xf4,0x10,0x0b,0x0}},
49662306a36Sopenharmony_ci	{0x42, 0x47, {0x0ec,3218,100, 0,1,0x00,0xbc,0x19,0xf4,0x10,0x0b,0x0}},
49762306a36Sopenharmony_ci	{0x48, 0x51, {0x0ee,2462,100, 0,1,0x00,0xbc,0x19,0xf4,0x10,0x0b,0x0}},
49862306a36Sopenharmony_ci	{0x52, 0x6c, {0x0ef,1421,100, 0,1,0x00,0xbc,0x19,0xf4,0x10,0x0b,0x0}}
49962306a36Sopenharmony_ci};
50062306a36Sopenharmony_cistatic const struct opl4_region regions_43[] = { /* Baritone Sax */
50162306a36Sopenharmony_ci	{0x15, 0x2d, {0x0df,6714,100, 0,1,0x00,0xce,0x19,0xf0,0x00,0x0a,0x0}},
50262306a36Sopenharmony_ci	{0x2e, 0x34, {0x0e1,5552,100, 0,1,0x00,0xce,0x19,0xf0,0x00,0x0a,0x0}},
50362306a36Sopenharmony_ci	{0x35, 0x39, {0x0e2,5178,100, 0,1,0x00,0xce,0x19,0xf0,0x00,0x0a,0x0}},
50462306a36Sopenharmony_ci	{0x3a, 0x6c, {0x0e0,4437,100, 0,1,0x00,0xce,0x19,0xf0,0x00,0x0a,0x0}}
50562306a36Sopenharmony_ci};
50662306a36Sopenharmony_cistatic const struct opl4_region regions_44[] = { /* Oboe */
50762306a36Sopenharmony_ci	{0x15, 0x3c, {0x042,4493,100, 0,1,0x00,0xe6,0x39,0xf4,0x10,0x0a,0x0}},
50862306a36Sopenharmony_ci	{0x3d, 0x43, {0x044,3702,100, 0,1,0x00,0xdc,0x39,0xf4,0x10,0x0a,0x0}},
50962306a36Sopenharmony_ci	{0x44, 0x49, {0x043,2956,100, 0,1,0x00,0xdc,0x39,0xf4,0x10,0x0a,0x0}},
51062306a36Sopenharmony_ci	{0x4a, 0x4f, {0x046,2166,100, 0,1,0x00,0xdc,0x39,0xf4,0x10,0x0a,0x0}},
51162306a36Sopenharmony_ci	{0x50, 0x55, {0x045,1420,100, 0,1,0x00,0xdc,0x39,0xf4,0x10,0x0a,0x0}},
51262306a36Sopenharmony_ci	{0x56, 0x6c, {0x047, 630,100, 0,1,0x00,0xe6,0x39,0xf4,0x10,0x0a,0x0}}
51362306a36Sopenharmony_ci};
51462306a36Sopenharmony_cistatic const struct opl4_region regions_45[] = { /* English Horn */
51562306a36Sopenharmony_ci	{0x15, 0x38, {0x03c,5098,100, 0,1,0x00,0xc4,0x31,0xf0,0x00,0x09,0x0}},
51662306a36Sopenharmony_ci	{0x39, 0x3e, {0x03b,4291,100, 0,1,0x00,0xc4,0x31,0xf0,0x00,0x09,0x0}},
51762306a36Sopenharmony_ci	{0x3f, 0x6c, {0x03d,3540,100, 0,1,0x00,0xc4,0x31,0xf0,0x00,0x09,0x0}}
51862306a36Sopenharmony_ci};
51962306a36Sopenharmony_cistatic const struct opl4_region regions_46[] = { /* Bassoon */
52062306a36Sopenharmony_ci	{0x15, 0x22, {0x038,7833,100, 0,1,0x00,0xc6,0x31,0xf0,0x00,0x0b,0x0}},
52162306a36Sopenharmony_ci	{0x23, 0x2e, {0x03a,7070,100, 0,1,0x00,0xc6,0x31,0xf0,0x00,0x0b,0x0}},
52262306a36Sopenharmony_ci	{0x2f, 0x6c, {0x039,6302,100, 0,1,0x00,0xc6,0x31,0xf0,0x00,0x0b,0x0}}
52362306a36Sopenharmony_ci};
52462306a36Sopenharmony_cistatic const struct opl4_region regions_47[] = { /* Clarinet */
52562306a36Sopenharmony_ci	{0x15, 0x3b, {0x09e,5900,100, 0,1,0x00,0xc8,0x29,0xf3,0x20,0x0a,0x0}},
52662306a36Sopenharmony_ci	{0x3c, 0x41, {0x0a0,5158,100, 0,1,0x00,0xc8,0x29,0xf3,0x20,0x0a,0x0}},
52762306a36Sopenharmony_ci	{0x42, 0x4a, {0x09f,4260,100, 0,1,0x00,0xc8,0x29,0xf3,0x20,0x0a,0x0}},
52862306a36Sopenharmony_ci	{0x4b, 0x6c, {0x0a1,2957,100, 0,1,0x00,0xc8,0x29,0xf3,0x20,0x0a,0x0}}
52962306a36Sopenharmony_ci};
53062306a36Sopenharmony_cistatic const struct opl4_region regions_48[] = { /* Piccolo */
53162306a36Sopenharmony_ci	{0x15, 0x40, {0x071,4803,100, 0,0,0x00,0xe6,0x38,0xf0,0x00,0x0a,0x2}},
53262306a36Sopenharmony_ci	{0x41, 0x4d, {0x072,3314,100, 0,0,0x00,0xe6,0x38,0xf0,0x00,0x0a,0x2}},
53362306a36Sopenharmony_ci	{0x4e, 0x53, {0x073,1731,100, 0,0,0x00,0xe6,0x38,0xf0,0x00,0x0a,0x2}},
53462306a36Sopenharmony_ci	{0x54, 0x5f, {0x074,2085,100, 0,0,0x00,0xe6,0x38,0xf0,0x00,0x0a,0x2}},
53562306a36Sopenharmony_ci	{0x60, 0x6c, {0x075,1421,100, 0,0,0x00,0xe6,0x38,0xf0,0x00,0x0a,0x2}}
53662306a36Sopenharmony_ci};
53762306a36Sopenharmony_cistatic const struct opl4_region regions_49[] = { /* Flute */
53862306a36Sopenharmony_ci	{0x15, 0x40, {0x071,4803,100, 0,0,0x00,0xdc,0x38,0xf0,0x00,0x0a,0x2}},
53962306a36Sopenharmony_ci	{0x41, 0x4d, {0x072,3314,100, 0,0,0x00,0xdc,0x38,0xf0,0x00,0x0a,0x2}},
54062306a36Sopenharmony_ci	{0x4e, 0x6c, {0x073,1731,100, 0,0,0x00,0xe6,0x38,0xf0,0x00,0x0a,0x2}}
54162306a36Sopenharmony_ci};
54262306a36Sopenharmony_cistatic const struct opl4_region regions_4a[] = { /* Recorder */
54362306a36Sopenharmony_ci	{0x15, 0x6f, {0x0bd,4897,100, 0,0,0x00,0xec,0x30,0x70,0x00,0x09,0x1}}
54462306a36Sopenharmony_ci};
54562306a36Sopenharmony_cistatic const struct opl4_region regions_4b[] = { /* Pan Flute */
54662306a36Sopenharmony_ci	{0x15, 0x6c, {0x077,2359,100, 0,0,0x00,0xde,0x38,0xf0,0x00,0x09,0x3}}
54762306a36Sopenharmony_ci};
54862306a36Sopenharmony_cistatic const struct opl4_region regions_4c[] = { /* Bottle Blow */
54962306a36Sopenharmony_ci	{0x15, 0x6c, {0x077,2359,100, 0,0,0x00,0xc8,0x38,0xf0,0x00,0x09,0x1}},
55062306a36Sopenharmony_ci	{0x01, 0x7f, {0x125,7372,100, 0,0,0x1e,0x80,0x00,0xf0,0x00,0x09,0x0}}
55162306a36Sopenharmony_ci};
55262306a36Sopenharmony_cistatic const struct opl4_region regions_4d[] = { /* Shakuhachi */
55362306a36Sopenharmony_ci	{0x00, 0x7f, {0x0ab,4548,100, 0,0,0x00,0xd6,0x30,0xf0,0x00,0x0a,0x3}},
55462306a36Sopenharmony_ci	{0x15, 0x6c, {0x076,3716,100, 0,0,0x00,0xa2,0x28,0x70,0x00,0x09,0x2}}
55562306a36Sopenharmony_ci};
55662306a36Sopenharmony_cistatic const struct opl4_region regions_4e[] = { /* Whistle */
55762306a36Sopenharmony_ci	{0x00, 0x7f, {0x0aa,1731,100, 0,4,0x00,0xd2,0x2c,0x70,0x00,0x0a,0x0}}
55862306a36Sopenharmony_ci};
55962306a36Sopenharmony_cistatic const struct opl4_region regions_4f[] = { /* Ocarina */
56062306a36Sopenharmony_ci	{0x00, 0x7f, {0x0aa,1731,100, 0,1,0x00,0xce,0x29,0x90,0x00,0x0a,0x1}}
56162306a36Sopenharmony_ci};
56262306a36Sopenharmony_cistatic const struct opl4_region regions_50[] = { /* Square Lead */
56362306a36Sopenharmony_ci	{0x01, 0x2a, {0x0cc,9853,100, 3,0,0x00,0xac,0x38,0xc6,0x21,0x09,0x0}},
56462306a36Sopenharmony_ci	{0x2b, 0x36, {0x0cd,6785,100, 3,0,0x00,0xac,0x38,0xc6,0x21,0x09,0x0}},
56562306a36Sopenharmony_ci	{0x37, 0x42, {0x0ca,5248,100, 3,0,0x00,0xac,0x38,0xc6,0x21,0x09,0x0}},
56662306a36Sopenharmony_ci	{0x43, 0x4e, {0x0cf,3713,100, 3,0,0x00,0xac,0x38,0xc6,0x21,0x09,0x0}},
56762306a36Sopenharmony_ci	{0x4f, 0x5a, {0x0ce,2176,100, 3,0,0x00,0xac,0x38,0xc6,0x21,0x09,0x0}},
56862306a36Sopenharmony_ci	{0x5b, 0x7f, {0x0cb, 640,100, 3,0,0x00,0xac,0x38,0xc6,0x21,0x09,0x0}},
56962306a36Sopenharmony_ci	{0x01, 0x2a, {0x0cc,9844,100,-3,0,0x00,0xac,0x08,0xc6,0x21,0x09,0x0}},
57062306a36Sopenharmony_ci	{0x2b, 0x36, {0x0cd,6776,100,-3,0,0x00,0xac,0x08,0xc6,0x21,0x09,0x0}},
57162306a36Sopenharmony_ci	{0x37, 0x42, {0x0ca,5239,100,-3,0,0x00,0xac,0x08,0xc6,0x21,0x09,0x0}},
57262306a36Sopenharmony_ci	{0x43, 0x4e, {0x0cf,3704,100,-3,0,0x00,0xac,0x08,0xc6,0x21,0x09,0x0}},
57362306a36Sopenharmony_ci	{0x4f, 0x5a, {0x0ce,2167,100,-3,0,0x00,0xac,0x08,0xc6,0x21,0x09,0x0}},
57462306a36Sopenharmony_ci	{0x5b, 0x7f, {0x0cb, 631,100,-3,0,0x00,0xac,0x08,0xc6,0x21,0x09,0x0}}
57562306a36Sopenharmony_ci};
57662306a36Sopenharmony_cistatic const struct opl4_region regions_51[] = { /* Sawtooth Lead */
57762306a36Sopenharmony_ci	{0x01, 0x27, {0x118,9108,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
57862306a36Sopenharmony_ci	{0x28, 0x2d, {0x119,8345,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
57962306a36Sopenharmony_ci	{0x2e, 0x33, {0x11a,7570,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
58062306a36Sopenharmony_ci	{0x34, 0x39, {0x11b,6809,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
58162306a36Sopenharmony_ci	{0x3a, 0x3f, {0x11c,6047,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
58262306a36Sopenharmony_ci	{0x40, 0x45, {0x11d,5282,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
58362306a36Sopenharmony_ci	{0x46, 0x4b, {0x11e,4525,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
58462306a36Sopenharmony_ci	{0x4c, 0x51, {0x11f,3746,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
58562306a36Sopenharmony_ci	{0x52, 0x57, {0x120,3017,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
58662306a36Sopenharmony_ci	{0x58, 0x5d, {0x121,2171,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
58762306a36Sopenharmony_ci	{0x5e, 0x66, {0x122,1426,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
58862306a36Sopenharmony_ci	{0x67, 0x7f, {0x123,-110,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
58962306a36Sopenharmony_ci	{0x01, 0x27, {0x118,9098,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
59062306a36Sopenharmony_ci	{0x28, 0x2d, {0x119,8335,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
59162306a36Sopenharmony_ci	{0x2e, 0x33, {0x11a,7560,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
59262306a36Sopenharmony_ci	{0x34, 0x39, {0x11b,6799,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
59362306a36Sopenharmony_ci	{0x3a, 0x3f, {0x11c,6037,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
59462306a36Sopenharmony_ci	{0x40, 0x45, {0x11d,5272,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
59562306a36Sopenharmony_ci	{0x46, 0x4b, {0x11e,4515,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
59662306a36Sopenharmony_ci	{0x4c, 0x51, {0x11f,3736,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
59762306a36Sopenharmony_ci	{0x52, 0x57, {0x120,3007,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
59862306a36Sopenharmony_ci	{0x58, 0x5d, {0x121,2161,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
59962306a36Sopenharmony_ci	{0x5e, 0x66, {0x122,1416,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}},
60062306a36Sopenharmony_ci	{0x67, 0x7f, {0x123,-120,100, 0,0,0x00,0xc8,0x30,0xf2,0x22,0x0a,0x0}}
60162306a36Sopenharmony_ci};
60262306a36Sopenharmony_cistatic const struct opl4_region regions_52[] = { /* Calliope Lead */
60362306a36Sopenharmony_ci	{0x00, 0x7f, {0x0aa,1731,100, 0,0,0x00,0xc2,0x28,0x90,0x00,0x0a,0x2}},
60462306a36Sopenharmony_ci	{0x15, 0x6c, {0x076,3716,100, 0,0,0x00,0xb6,0x28,0xb0,0x00,0x09,0x2}}
60562306a36Sopenharmony_ci};
60662306a36Sopenharmony_cistatic const struct opl4_region regions_53[] = { /* Chiffer Lead */
60762306a36Sopenharmony_ci	{0x00, 0x7f, {0x13a,3665,100, 0,2,0x00,0xcc,0x2a,0xf0,0x10,0x09,0x1}},
60862306a36Sopenharmony_ci	{0x01, 0x7f, {0x0fe,3660,100, 0,0,0x00,0xbe,0x28,0xf3,0x10,0x17,0x0}}
60962306a36Sopenharmony_ci};
61062306a36Sopenharmony_cistatic const struct opl4_region regions_54[] = { /* Charang Lead */
61162306a36Sopenharmony_ci	{0x00, 0x40, {0x0a5,6594,100, 0,3,0x00,0xba,0x33,0xf2,0x11,0x09,0x0}},
61262306a36Sopenharmony_ci	{0x41, 0x7f, {0x0a6,5433,100, 0,3,0x00,0xba,0x33,0xf2,0x11,0x09,0x0}},
61362306a36Sopenharmony_ci	{0x01, 0x27, {0x118,9098,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}},
61462306a36Sopenharmony_ci	{0x28, 0x2d, {0x119,8335,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}},
61562306a36Sopenharmony_ci	{0x2e, 0x33, {0x11a,7560,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}},
61662306a36Sopenharmony_ci	{0x34, 0x39, {0x11b,6799,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}},
61762306a36Sopenharmony_ci	{0x3a, 0x3f, {0x11c,6037,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}},
61862306a36Sopenharmony_ci	{0x40, 0x45, {0x11d,5272,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}},
61962306a36Sopenharmony_ci	{0x46, 0x4b, {0x11e,4515,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}},
62062306a36Sopenharmony_ci	{0x4c, 0x51, {0x11f,3736,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}},
62162306a36Sopenharmony_ci	{0x52, 0x57, {0x120,3007,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}},
62262306a36Sopenharmony_ci	{0x58, 0x5d, {0x121,2161,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}},
62362306a36Sopenharmony_ci	{0x5e, 0x66, {0x122,1416,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}},
62462306a36Sopenharmony_ci	{0x67, 0x7f, {0x123,-120,100, 0,2,0x00,0xa4,0x2a,0xf2,0x22,0x0e,0x0}}
62562306a36Sopenharmony_ci};
62662306a36Sopenharmony_cistatic const struct opl4_region regions_55[] = { /* Voice Lead */
62762306a36Sopenharmony_ci	{0x00, 0x7f, {0x0aa,1739,100, 0,6,0x00,0x8c,0x2e,0x90,0x00,0x0a,0x0}},
62862306a36Sopenharmony_ci	{0x15, 0x6c, {0x02a,3474,100, 0,1,0x00,0xd8,0x29,0xf0,0x05,0x0a,0x0}}
62962306a36Sopenharmony_ci};
63062306a36Sopenharmony_cistatic const struct opl4_region regions_56[] = { /* 5ths Lead */
63162306a36Sopenharmony_ci	{0x01, 0x27, {0x118,8468,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}},
63262306a36Sopenharmony_ci	{0x28, 0x2d, {0x119,7705,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}},
63362306a36Sopenharmony_ci	{0x2e, 0x33, {0x11a,6930,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}},
63462306a36Sopenharmony_ci	{0x34, 0x39, {0x11b,6169,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}},
63562306a36Sopenharmony_ci	{0x3a, 0x3f, {0x11c,5407,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}},
63662306a36Sopenharmony_ci	{0x40, 0x45, {0x11d,4642,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}},
63762306a36Sopenharmony_ci	{0x46, 0x4b, {0x11e,3885,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}},
63862306a36Sopenharmony_ci	{0x4c, 0x51, {0x11f,3106,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}},
63962306a36Sopenharmony_ci	{0x52, 0x57, {0x120,2377,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}},
64062306a36Sopenharmony_ci	{0x58, 0x5d, {0x121,1531,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}},
64162306a36Sopenharmony_ci	{0x5e, 0x64, {0x122, 786,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}},
64262306a36Sopenharmony_ci	{0x65, 0x7f, {0x123,-750,100, 0,2,0x00,0xd0,0x32,0xf5,0x20,0x08,0x0}},
64362306a36Sopenharmony_ci	{0x05, 0x71, {0x002,4503,100, 0,1,0x00,0xb8,0x31,0xb3,0x20,0x0b,0x0}}
64462306a36Sopenharmony_ci};
64562306a36Sopenharmony_cistatic const struct opl4_region regions_57[] = { /* Bass & Lead */
64662306a36Sopenharmony_ci	{0x00, 0x7f, {0x117,8109,100, 0,1,0x00,0xbc,0x29,0xf3,0x50,0x08,0x0}},
64762306a36Sopenharmony_ci	{0x01, 0x27, {0x118,9097,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}},
64862306a36Sopenharmony_ci	{0x28, 0x2d, {0x119,8334,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}},
64962306a36Sopenharmony_ci	{0x2e, 0x33, {0x11a,7559,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}},
65062306a36Sopenharmony_ci	{0x34, 0x39, {0x11b,6798,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}},
65162306a36Sopenharmony_ci	{0x3a, 0x3f, {0x11c,6036,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}},
65262306a36Sopenharmony_ci	{0x40, 0x45, {0x11d,5271,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}},
65362306a36Sopenharmony_ci	{0x46, 0x4b, {0x11e,4514,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}},
65462306a36Sopenharmony_ci	{0x4c, 0x51, {0x11f,3735,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}},
65562306a36Sopenharmony_ci	{0x52, 0x57, {0x120,3006,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}},
65662306a36Sopenharmony_ci	{0x58, 0x5d, {0x121,2160,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}},
65762306a36Sopenharmony_ci	{0x5e, 0x66, {0x122,1415,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}},
65862306a36Sopenharmony_ci	{0x67, 0x7f, {0x123,-121,100, 0,2,0x00,0xbc,0x2a,0xf2,0x20,0x0a,0x0}}
65962306a36Sopenharmony_ci};
66062306a36Sopenharmony_cistatic const struct opl4_region regions_58[] = { /* New Age Pad */
66162306a36Sopenharmony_ci	{0x15, 0x6c, {0x002,4501,100, 0,4,0x00,0xa4,0x24,0x80,0x01,0x05,0x0}},
66262306a36Sopenharmony_ci	{0x15, 0x6c, {0x0f3,4253,100, 0,3,0x00,0x8c,0x23,0xa2,0x14,0x06,0x1}}
66362306a36Sopenharmony_ci};
66462306a36Sopenharmony_cistatic const struct opl4_region regions_59[] = { /* Warm Pad */
66562306a36Sopenharmony_ci	{0x15, 0x6c, {0x04e,5306,100, 2,2,0x00,0x92,0x2a,0x34,0x23,0x05,0x2}},
66662306a36Sopenharmony_ci	{0x15, 0x6c, {0x029,3575,100,-2,2,0x00,0xbe,0x22,0x31,0x23,0x06,0x0}}
66762306a36Sopenharmony_ci};
66862306a36Sopenharmony_cistatic const struct opl4_region regions_5a[] = { /* Polysynth Pad */
66962306a36Sopenharmony_ci	{0x01, 0x27, {0x118,9111,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}},
67062306a36Sopenharmony_ci	{0x28, 0x2d, {0x119,8348,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}},
67162306a36Sopenharmony_ci	{0x2e, 0x33, {0x11a,7573,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}},
67262306a36Sopenharmony_ci	{0x34, 0x39, {0x11b,6812,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}},
67362306a36Sopenharmony_ci	{0x3a, 0x3f, {0x11c,6050,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}},
67462306a36Sopenharmony_ci	{0x40, 0x45, {0x11d,5285,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}},
67562306a36Sopenharmony_ci	{0x46, 0x4b, {0x11e,4528,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}},
67662306a36Sopenharmony_ci	{0x4c, 0x51, {0x11f,3749,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}},
67762306a36Sopenharmony_ci	{0x52, 0x57, {0x120,3020,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}},
67862306a36Sopenharmony_ci	{0x58, 0x5d, {0x121,2174,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}},
67962306a36Sopenharmony_ci	{0x5e, 0x66, {0x122,1429,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}},
68062306a36Sopenharmony_ci	{0x67, 0x7f, {0x123,-107,100, 0,3,0x00,0xae,0x23,0xf2,0x20,0x07,0x1}},
68162306a36Sopenharmony_ci	{0x00, 0x7f, {0x124,4024,100, 0,2,0x00,0xae,0x22,0xe5,0x20,0x08,0x0}}
68262306a36Sopenharmony_ci};
68362306a36Sopenharmony_cistatic const struct opl4_region regions_5b[] = { /* Choir Pad */
68462306a36Sopenharmony_ci	{0x15, 0x3a, {0x018,5010,100, 0,5,0x00,0xb0,0x25,0x70,0x00,0x06,0x0}},
68562306a36Sopenharmony_ci	{0x3b, 0x40, {0x019,4370,100, 0,5,0x00,0xb0,0x25,0x70,0x00,0x06,0x0}},
68662306a36Sopenharmony_ci	{0x41, 0x47, {0x01a,3478,100, 0,5,0x00,0xb0,0x25,0x70,0x00,0x06,0x0}},
68762306a36Sopenharmony_ci	{0x48, 0x6c, {0x01b,2197,100, 0,5,0x00,0xb0,0x25,0x70,0x00,0x06,0x0}},
68862306a36Sopenharmony_ci	{0x15, 0x6c, {0x02a,3482,100, 0,4,0x00,0x98,0x24,0x65,0x21,0x06,0x0}}
68962306a36Sopenharmony_ci};
69062306a36Sopenharmony_cistatic const struct opl4_region regions_5c[] = { /* Bowed Pad */
69162306a36Sopenharmony_ci	{0x15, 0x6c, {0x101,4790,100,-1,1,0x00,0xbe,0x19,0x44,0x14,0x16,0x0}},
69262306a36Sopenharmony_ci	{0x00, 0x7f, {0x0aa,1720,100, 1,1,0x00,0x94,0x19,0x40,0x00,0x06,0x0}}
69362306a36Sopenharmony_ci};
69462306a36Sopenharmony_cistatic const struct opl4_region regions_5d[] = { /* Metallic Pad */
69562306a36Sopenharmony_ci	{0x15, 0x31, {0x00c,6943,100, 0,2,0x00,0xa0,0x0a,0x60,0x03,0x06,0x0}},
69662306a36Sopenharmony_ci	{0x32, 0x38, {0x00d,5416,100, 0,2,0x00,0xa0,0x0a,0x60,0x03,0x06,0x0}},
69762306a36Sopenharmony_ci	{0x39, 0x47, {0x00e,4385,100, 0,2,0x00,0xa0,0x0a,0x60,0x03,0x06,0x0}},
69862306a36Sopenharmony_ci	{0x48, 0x6c, {0x00f,2849,100, 0,2,0x00,0xa0,0x0a,0x60,0x03,0x06,0x0}},
69962306a36Sopenharmony_ci	{0x00, 0x7f, {0x03f,4224,100, 0,1,0x00,0x9c,0x31,0x65,0x16,0x07,0x0}}
70062306a36Sopenharmony_ci};
70162306a36Sopenharmony_cistatic const struct opl4_region regions_5e[] = { /* Halo Pad */
70262306a36Sopenharmony_ci	{0x00, 0x7f, {0x124,4038,100, 0,2,0x00,0xa6,0x1a,0x85,0x23,0x08,0x0}},
70362306a36Sopenharmony_ci	{0x15, 0x6c, {0x02a,3471,100, 0,3,0x00,0xc0,0x1b,0xc0,0x05,0x06,0x0}}
70462306a36Sopenharmony_ci};
70562306a36Sopenharmony_cistatic const struct opl4_region regions_5f[] = { /* Sweep Pad */
70662306a36Sopenharmony_ci	{0x01, 0x27, {0x0d3,9100,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}},
70762306a36Sopenharmony_ci	{0x28, 0x2d, {0x0da,8341,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}},
70862306a36Sopenharmony_ci	{0x2e, 0x33, {0x0d4,7564,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}},
70962306a36Sopenharmony_ci	{0x34, 0x39, {0x0db,6791,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}},
71062306a36Sopenharmony_ci	{0x3a, 0x3f, {0x0d5,6048,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}},
71162306a36Sopenharmony_ci	{0x40, 0x45, {0x0dc,5263,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}},
71262306a36Sopenharmony_ci	{0x46, 0x4b, {0x0d6,4499,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}},
71362306a36Sopenharmony_ci	{0x4c, 0x51, {0x0dd,3747,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}},
71462306a36Sopenharmony_ci	{0x52, 0x57, {0x0d7,3018,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}},
71562306a36Sopenharmony_ci	{0x58, 0x5d, {0x0de,2173,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}},
71662306a36Sopenharmony_ci	{0x5e, 0x63, {0x0d8,1427,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}},
71762306a36Sopenharmony_ci	{0x64, 0x7f, {0x0d9,-109,100, 0,1,0x00,0xce,0x19,0x13,0x11,0x06,0x0}},
71862306a36Sopenharmony_ci	{0x01, 0x27, {0x0d3,9088,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}},
71962306a36Sopenharmony_ci	{0x28, 0x2d, {0x0da,8329,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}},
72062306a36Sopenharmony_ci	{0x2e, 0x33, {0x0d4,7552,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}},
72162306a36Sopenharmony_ci	{0x34, 0x39, {0x0db,6779,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}},
72262306a36Sopenharmony_ci	{0x3a, 0x3f, {0x0d5,6036,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}},
72362306a36Sopenharmony_ci	{0x40, 0x45, {0x0dc,5251,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}},
72462306a36Sopenharmony_ci	{0x46, 0x4b, {0x0d6,4487,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}},
72562306a36Sopenharmony_ci	{0x4c, 0x51, {0x0dd,3735,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}},
72662306a36Sopenharmony_ci	{0x52, 0x57, {0x0d7,3006,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}},
72762306a36Sopenharmony_ci	{0x58, 0x5d, {0x0de,2161,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}},
72862306a36Sopenharmony_ci	{0x5e, 0x63, {0x0d8,1415,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}},
72962306a36Sopenharmony_ci	{0x64, 0x7f, {0x0d9,-121,100, 0,0,0x00,0xce,0x18,0x13,0x11,0x06,0x0}}
73062306a36Sopenharmony_ci};
73162306a36Sopenharmony_cistatic const struct opl4_region regions_60[] = { /* Ice Rain */
73262306a36Sopenharmony_ci	{0x01, 0x7f, {0x04e,9345,100, 0,2,0x00,0xcc,0x22,0xa3,0x63,0x17,0x0}},
73362306a36Sopenharmony_ci	{0x00, 0x7f, {0x143,5586, 20, 0,2,0x00,0x6e,0x2a,0xf0,0x05,0x05,0x0}}
73462306a36Sopenharmony_ci};
73562306a36Sopenharmony_cistatic const struct opl4_region regions_61[] = { /* Soundtrack */
73662306a36Sopenharmony_ci	{0x15, 0x6c, {0x002,4501,100, 0,2,0x00,0xb6,0x2a,0x60,0x01,0x05,0x0}},
73762306a36Sopenharmony_ci	{0x15, 0x6c, {0x0f3,1160,100, 0,5,0x00,0xa8,0x2d,0x52,0x14,0x06,0x2}}
73862306a36Sopenharmony_ci};
73962306a36Sopenharmony_cistatic const struct opl4_region regions_62[] = { /* Crystal */
74062306a36Sopenharmony_ci	{0x15, 0x6c, {0x0f3,1826,100, 0,3,0x00,0xb8,0x33,0xf6,0x25,0x25,0x0}},
74162306a36Sopenharmony_ci	{0x15, 0x2c, {0x06d,7454,100, 0,3,0x00,0xac,0x3b,0x85,0x24,0x06,0x0}},
74262306a36Sopenharmony_ci	{0x2d, 0x36, {0x06e,5925,100, 0,3,0x00,0xac,0x3b,0x85,0x24,0x06,0x0}},
74362306a36Sopenharmony_ci	{0x37, 0x6c, {0x06f,4403,100, 0,3,0x09,0xac,0x3b,0x85,0x24,0x06,0x0}}
74462306a36Sopenharmony_ci};
74562306a36Sopenharmony_cistatic const struct opl4_region regions_63[] = { /* Atmosphere */
74662306a36Sopenharmony_ci	{0x05, 0x71, {0x002,4509,100, 0,2,0x00,0xc8,0x32,0x73,0x22,0x06,0x1}},
74762306a36Sopenharmony_ci	{0x15, 0x2f, {0x0b3,6964,100, 0,2,0x05,0xc2,0x32,0xf5,0x34,0x07,0x2}},
74862306a36Sopenharmony_ci	{0x30, 0x36, {0x0b7,5567,100, 0,2,0x0c,0xc2,0x32,0xf5,0x34,0x07,0x2}},
74962306a36Sopenharmony_ci	{0x37, 0x3c, {0x0b5,4653,100, 0,2,0x00,0xc2,0x32,0xf6,0x34,0x07,0x2}},
75062306a36Sopenharmony_ci	{0x3d, 0x43, {0x0b4,3892,100, 0,2,0x00,0xc2,0x32,0xf6,0x35,0x07,0x2}},
75162306a36Sopenharmony_ci	{0x44, 0x60, {0x0b6,2723,100, 0,2,0x00,0xc2,0x32,0xf6,0x35,0x17,0x2}}
75262306a36Sopenharmony_ci};
75362306a36Sopenharmony_cistatic const struct opl4_region regions_64[] = { /* Brightness */
75462306a36Sopenharmony_ci	{0x00, 0x7f, {0x137,5285,100, 0,2,0x00,0xbe,0x2a,0xa5,0x18,0x08,0x0}},
75562306a36Sopenharmony_ci	{0x15, 0x6c, {0x02a,3481,100, 0,1,0x00,0xc8,0x29,0x80,0x05,0x05,0x0}}
75662306a36Sopenharmony_ci};
75762306a36Sopenharmony_cistatic const struct opl4_region regions_65[] = { /* Goblins */
75862306a36Sopenharmony_ci	{0x15, 0x6c, {0x002,4501,100,-1,2,0x00,0xca,0x2a,0x40,0x01,0x05,0x0}},
75962306a36Sopenharmony_ci	{0x15, 0x6c, {0x009,9679, 20, 1,4,0x00,0x3c,0x0c,0x22,0x11,0x06,0x0}}
76062306a36Sopenharmony_ci};
76162306a36Sopenharmony_cistatic const struct opl4_region regions_66[] = { /* Echoes */
76262306a36Sopenharmony_ci	{0x15, 0x6c, {0x02a,3487,100, 0,3,0x00,0xae,0x2b,0xf5,0x21,0x06,0x0}},
76362306a36Sopenharmony_ci	{0x00, 0x7f, {0x124,4027,100, 0,3,0x00,0xae,0x2b,0x85,0x23,0x07,0x0}}
76462306a36Sopenharmony_ci};
76562306a36Sopenharmony_cistatic const struct opl4_region regions_67[] = { /* Sci-Fi */
76662306a36Sopenharmony_ci	{0x15, 0x31, {0x00c,6940,100, 0,3,0x00,0xc8,0x2b,0x90,0x05,0x06,0x3}},
76762306a36Sopenharmony_ci	{0x32, 0x38, {0x00d,5413,100, 0,3,0x00,0xc8,0x2b,0x90,0x05,0x06,0x3}},
76862306a36Sopenharmony_ci	{0x39, 0x47, {0x00e,4382,100, 0,3,0x00,0xc8,0x2b,0x90,0x05,0x06,0x3}},
76962306a36Sopenharmony_ci	{0x48, 0x6c, {0x00f,2846,100, 0,3,0x00,0xc8,0x2b,0x90,0x05,0x06,0x3}},
77062306a36Sopenharmony_ci	{0x15, 0x6c, {0x002,4498,100, 0,2,0x00,0xd4,0x22,0x80,0x01,0x05,0x0}}
77162306a36Sopenharmony_ci};
77262306a36Sopenharmony_cistatic const struct opl4_region regions_68[] = { /* Sitar */
77362306a36Sopenharmony_ci	{0x00, 0x7f, {0x10f,4408,100, 0,2,0x00,0xc4,0x32,0xf4,0x15,0x16,0x1}}
77462306a36Sopenharmony_ci};
77562306a36Sopenharmony_cistatic const struct opl4_region regions_69[] = { /* Banjo */
77662306a36Sopenharmony_ci	{0x15, 0x34, {0x013,5685,100, 0,0,0x00,0xdc,0x38,0xf6,0x15,0x09,0x0}},
77762306a36Sopenharmony_ci	{0x35, 0x38, {0x014,5009,100, 0,0,0x00,0xdc,0x38,0xf6,0x15,0x09,0x0}},
77862306a36Sopenharmony_ci	{0x39, 0x3c, {0x012,4520,100, 0,0,0x00,0xdc,0x38,0xf6,0x15,0x09,0x0}},
77962306a36Sopenharmony_ci	{0x3d, 0x44, {0x015,3622,100, 0,0,0x00,0xdc,0x38,0xf6,0x15,0x09,0x0}},
78062306a36Sopenharmony_ci	{0x45, 0x4c, {0x017,2661,100, 0,0,0x00,0xdc,0x38,0xf6,0x15,0x09,0x0}},
78162306a36Sopenharmony_ci	{0x4d, 0x6d, {0x016,1632,100, 0,0,0x00,0xdc,0x38,0xf6,0x15,0x09,0x0}}
78262306a36Sopenharmony_ci};
78362306a36Sopenharmony_cistatic const struct opl4_region regions_6a[] = { /* Shamisen */
78462306a36Sopenharmony_ci	{0x15, 0x6c, {0x10e,3273,100, 0,0,0x00,0xc0,0x28,0xf7,0x76,0x08,0x0}}
78562306a36Sopenharmony_ci};
78662306a36Sopenharmony_cistatic const struct opl4_region regions_6b[] = { /* Koto */
78762306a36Sopenharmony_ci	{0x00, 0x7f, {0x0a9,4033,100, 0,0,0x00,0xc6,0x20,0xf0,0x06,0x07,0x0}}
78862306a36Sopenharmony_ci};
78962306a36Sopenharmony_cistatic const struct opl4_region regions_6c[] = { /* Kalimba */
79062306a36Sopenharmony_ci	{0x00, 0x7f, {0x137,3749,100, 0,0,0x00,0xce,0x38,0xf5,0x18,0x08,0x0}}
79162306a36Sopenharmony_ci};
79262306a36Sopenharmony_cistatic const struct opl4_region regions_6d[] = { /* Bagpipe */
79362306a36Sopenharmony_ci	{0x15, 0x39, {0x0a4,7683,100, 0,4,0x00,0xc0,0x1c,0xf0,0x00,0x09,0x0}},
79462306a36Sopenharmony_ci	{0x15, 0x39, {0x0a7,7680,100, 0,1,0x00,0xaa,0x19,0xf0,0x00,0x09,0x0}},
79562306a36Sopenharmony_ci	{0x3a, 0x6c, {0x0a8,3697,100, 0,1,0x00,0xaa,0x19,0xf0,0x00,0x09,0x0}}
79662306a36Sopenharmony_ci};
79762306a36Sopenharmony_cistatic const struct opl4_region regions_6e[] = { /* Fiddle */
79862306a36Sopenharmony_ci	{0x15, 0x3a, {0x105,5158,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}},
79962306a36Sopenharmony_ci	{0x3b, 0x3f, {0x102,4754,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}},
80062306a36Sopenharmony_ci	{0x40, 0x41, {0x106,4132,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}},
80162306a36Sopenharmony_ci	{0x42, 0x44, {0x107,4033,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}},
80262306a36Sopenharmony_ci	{0x45, 0x47, {0x108,3580,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}},
80362306a36Sopenharmony_ci	{0x48, 0x4a, {0x10a,2957,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}},
80462306a36Sopenharmony_ci	{0x4b, 0x4c, {0x10b,2724,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}},
80562306a36Sopenharmony_ci	{0x4d, 0x4e, {0x10c,2530,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}},
80662306a36Sopenharmony_ci	{0x4f, 0x51, {0x10d,2166,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}},
80762306a36Sopenharmony_ci	{0x52, 0x6c, {0x109,1825,100, 0,1,0x00,0xca,0x31,0xf3,0x20,0x09,0x0}}
80862306a36Sopenharmony_ci};
80962306a36Sopenharmony_cistatic const struct opl4_region regions_6f[] = { /* Shanai */
81062306a36Sopenharmony_ci	{0x15, 0x6c, {0x041,6946,100, 0,1,0x00,0xc4,0x31,0x95,0x20,0x09,0x0}}
81162306a36Sopenharmony_ci};
81262306a36Sopenharmony_cistatic const struct opl4_region regions_70[] = { /* Tinkle Bell */
81362306a36Sopenharmony_ci	{0x15, 0x73, {0x0f3,1821,100, 0,3,0x00,0xc8,0x3b,0xd6,0x25,0x25,0x0}},
81462306a36Sopenharmony_ci	{0x00, 0x7f, {0x137,5669,100, 0,3,0x00,0x66,0x3b,0xf5,0x18,0x08,0x0}}
81562306a36Sopenharmony_ci};
81662306a36Sopenharmony_cistatic const struct opl4_region regions_71[] = { /* Agogo */
81762306a36Sopenharmony_ci	{0x15, 0x74, {0x00b,2474,100, 0,0,0x00,0xd2,0x38,0xf0,0x00,0x09,0x0}}
81862306a36Sopenharmony_ci};
81962306a36Sopenharmony_cistatic const struct opl4_region regions_72[] = { /* Steel Drums */
82062306a36Sopenharmony_ci	{0x01, 0x7f, {0x0fe,3670,100, 0,0,0x00,0xca,0x38,0xf3,0x06,0x17,0x1}},
82162306a36Sopenharmony_ci	{0x15, 0x6c, {0x100,9602,100, 0,0,0x00,0x54,0x38,0xb0,0x05,0x16,0x1}}
82262306a36Sopenharmony_ci};
82362306a36Sopenharmony_cistatic const struct opl4_region regions_73[] = { /* Woodblock */
82462306a36Sopenharmony_ci	{0x15, 0x6c, {0x02c,2963, 50, 0,0,0x07,0xd4,0x00,0xf0,0x00,0x09,0x0}}
82562306a36Sopenharmony_ci};
82662306a36Sopenharmony_cistatic const struct opl4_region regions_74[] = { /* Taiko Drum */
82762306a36Sopenharmony_ci	{0x13, 0x6c, {0x03e,1194, 50, 0,0,0x00,0xaa,0x38,0xf0,0x04,0x04,0x0}}
82862306a36Sopenharmony_ci};
82962306a36Sopenharmony_cistatic const struct opl4_region regions_75[] = { /* Melodic Tom */
83062306a36Sopenharmony_ci	{0x15, 0x6c, {0x0c7,6418, 50, 0,0,0x00,0xe4,0x38,0xf0,0x05,0x01,0x0}}
83162306a36Sopenharmony_ci};
83262306a36Sopenharmony_cistatic const struct opl4_region regions_76[] = { /* Synth Drum */
83362306a36Sopenharmony_ci	{0x15, 0x6c, {0x026,3898, 50, 0,0,0x00,0xd0,0x38,0xf0,0x04,0x04,0x0}}
83462306a36Sopenharmony_ci};
83562306a36Sopenharmony_cistatic const struct opl4_region regions_77[] = { /* Reverse Cymbal */
83662306a36Sopenharmony_ci	{0x15, 0x6c, {0x031,4138, 50, 0,0,0x00,0xfe,0x38,0x3a,0xf0,0x09,0x0}}
83762306a36Sopenharmony_ci};
83862306a36Sopenharmony_cistatic const struct opl4_region regions_78[] = { /* Guitar Fret Noise */
83962306a36Sopenharmony_ci	{0x15, 0x6c, {0x138,5266,100, 0,0,0x00,0xa0,0x38,0xf0,0x00,0x09,0x0}}
84062306a36Sopenharmony_ci};
84162306a36Sopenharmony_cistatic const struct opl4_region regions_79[] = { /* Breath Noise */
84262306a36Sopenharmony_ci	{0x01, 0x7f, {0x125,4269,100, 0,0,0x1e,0xd0,0x38,0xf0,0x00,0x09,0x0}}
84362306a36Sopenharmony_ci};
84462306a36Sopenharmony_cistatic const struct opl4_region regions_7a[] = { /* Seashore */
84562306a36Sopenharmony_ci	{0x15, 0x6c, {0x008,2965, 20,-2,0,0x00,0xfe,0x00,0x20,0x03,0x04,0x0}},
84662306a36Sopenharmony_ci	{0x01, 0x7f, {0x037,4394, 20, 2,0,0x14,0xfe,0x00,0x20,0x04,0x05,0x0}}
84762306a36Sopenharmony_ci};
84862306a36Sopenharmony_cistatic const struct opl4_region regions_7b[] = { /* Bird Tweet */
84962306a36Sopenharmony_ci	{0x15, 0x6c, {0x009,8078,  5,-4,7,0x00,0xc2,0x0f,0x22,0x12,0x07,0x0}},
85062306a36Sopenharmony_ci	{0x15, 0x6c, {0x009,3583,  5, 4,5,0x00,0xae,0x15,0x72,0x12,0x07,0x0}}
85162306a36Sopenharmony_ci};
85262306a36Sopenharmony_cistatic const struct opl4_region regions_7c[] = { /* Telephone Ring */
85362306a36Sopenharmony_ci	{0x15, 0x6c, {0x003,3602, 10, 0,0,0x00,0xce,0x00,0xf0,0x00,0x0f,0x0}}
85462306a36Sopenharmony_ci};
85562306a36Sopenharmony_cistatic const struct opl4_region regions_7d[] = { /* Helicopter */
85662306a36Sopenharmony_ci	{0x0c, 0x7f, {0x001,2965, 10,-2,0,0x00,0xe0,0x08,0x30,0x01,0x07,0x0}},
85762306a36Sopenharmony_ci	{0x01, 0x7f, {0x037,4394, 10, 2,0,0x44,0x76,0x00,0x30,0x01,0x07,0x0}}
85862306a36Sopenharmony_ci};
85962306a36Sopenharmony_cistatic const struct opl4_region regions_7e[] = { /* Applause */
86062306a36Sopenharmony_ci	{0x15, 0x6c, {0x036,8273, 20,-6,7,0x00,0xc4,0x0f,0x70,0x01,0x05,0x0}},
86162306a36Sopenharmony_ci	{0x15, 0x6c, {0x036,8115,  5, 6,7,0x00,0xc6,0x07,0x70,0x01,0x05,0x0}}
86262306a36Sopenharmony_ci};
86362306a36Sopenharmony_cistatic const struct opl4_region regions_7f[] = { /* Gun Shot */
86462306a36Sopenharmony_ci	{0x15, 0x6c, {0x139,2858, 20, 0,0,0x00,0xbe,0x38,0xf0,0x03,0x00,0x0}}
86562306a36Sopenharmony_ci};
86662306a36Sopenharmony_cistatic const struct opl4_region regions_drums[] = {
86762306a36Sopenharmony_ci	{0x18, 0x18, {0x0cb,6397,100, 3,0,0x00,0xf4,0x38,0xc9,0x1c,0x0c,0x0}},
86862306a36Sopenharmony_ci	{0x19, 0x19, {0x0c4,3714,100, 0,0,0x00,0xe0,0x00,0x97,0x19,0x09,0x0}},
86962306a36Sopenharmony_ci	{0x1a, 0x1a, {0x0c4,3519,100, 0,0,0x00,0xea,0x00,0x61,0x01,0x07,0x0}},
87062306a36Sopenharmony_ci	{0x1b, 0x1b, {0x0c4,3586,100, 0,0,0x00,0xea,0x00,0xf7,0x19,0x09,0x0}},
87162306a36Sopenharmony_ci	{0x1c, 0x1c, {0x0c4,3586,100, 0,0,0x00,0xea,0x00,0x81,0x01,0x07,0x0}},
87262306a36Sopenharmony_ci	{0x1e, 0x1e, {0x0c3,4783,100, 0,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}},
87362306a36Sopenharmony_ci	{0x1f, 0x1f, {0x0d1,4042,100, 0,0,0x00,0xd6,0x00,0xf0,0x05,0x05,0x0}},
87462306a36Sopenharmony_ci	{0x20, 0x20, {0x0d2,5943,100, 0,0,0x00,0xcc,0x00,0xf0,0x00,0x09,0x0}},
87562306a36Sopenharmony_ci	{0x21, 0x21, {0x011,3842,100, 0,0,0x00,0xea,0x00,0xf0,0x16,0x06,0x0}},
87662306a36Sopenharmony_ci	{0x23, 0x23, {0x011,4098,100, 0,0,0x00,0xea,0x00,0xf0,0x16,0x06,0x0}},
87762306a36Sopenharmony_ci	{0x24, 0x24, {0x011,4370,100, 0,0,0x00,0xea,0x00,0xf0,0x00,0x06,0x0}},
87862306a36Sopenharmony_ci	{0x25, 0x25, {0x0d2,4404,100, 0,0,0x00,0xd6,0x00,0xf0,0x00,0x06,0x0}},
87962306a36Sopenharmony_ci	{0x26, 0x26, {0x0d1,4298,100, 0,0,0x00,0xd6,0x00,0xf0,0x05,0x05,0x0}},
88062306a36Sopenharmony_ci	{0x27, 0x27, {0x00a,4403,100,-1,0,0x00,0xd6,0x00,0xf0,0x00,0x09,0x0}},
88162306a36Sopenharmony_ci	{0x28, 0x28, {0x0d1,4554,100, 0,0,0x00,0xdc,0x00,0xf0,0x07,0x07,0x0}},
88262306a36Sopenharmony_ci	{0x29, 0x29, {0x0c8,4242,100,-4,0,0x00,0xd6,0x00,0xf6,0x16,0x06,0x0}},
88362306a36Sopenharmony_ci	{0x2a, 0x2a, {0x079,6160,100, 2,0,0x00,0xe0,0x00,0xf5,0x19,0x09,0x0}},
88462306a36Sopenharmony_ci	{0x2b, 0x2b, {0x0c8,4626,100,-3,0,0x00,0xd6,0x00,0xf6,0x16,0x06,0x0}},
88562306a36Sopenharmony_ci	{0x2c, 0x2c, {0x07b,6039,100, 2,0,0x00,0xd6,0x00,0xf0,0x00,0x09,0x0}},
88662306a36Sopenharmony_ci	{0x2d, 0x2d, {0x0c8,5394,100,-2,0,0x00,0xd6,0x00,0xf6,0x16,0x06,0x0}},
88762306a36Sopenharmony_ci	{0x2e, 0x2e, {0x07a,5690,100, 2,0,0x00,0xd6,0x00,0xf0,0x00,0x05,0x0}},
88862306a36Sopenharmony_ci	{0x2f, 0x2f, {0x0c7,5185,100, 2,0,0x00,0xe0,0x00,0xf6,0x17,0x07,0x0}},
88962306a36Sopenharmony_ci	{0x30, 0x30, {0x0c7,5650,100, 3,0,0x00,0xe0,0x00,0xf6,0x17,0x07,0x0}},
89062306a36Sopenharmony_ci	{0x31, 0x31, {0x031,4395,100, 2,0,0x00,0xea,0x00,0xf0,0x05,0x05,0x0}},
89162306a36Sopenharmony_ci	{0x32, 0x32, {0x0c7,6162,100, 4,0,0x00,0xe0,0x00,0xf6,0x17,0x07,0x0}},
89262306a36Sopenharmony_ci	{0x33, 0x33, {0x02e,4391,100,-2,0,0x00,0xea,0x00,0xf0,0x05,0x05,0x0}},
89362306a36Sopenharmony_ci	{0x34, 0x34, {0x07a,3009,100,-2,0,0x00,0xea,0x00,0xf2,0x15,0x05,0x0}},
89462306a36Sopenharmony_ci	{0x35, 0x35, {0x021,4522,100,-3,0,0x00,0xd6,0x00,0xf0,0x05,0x05,0x0}},
89562306a36Sopenharmony_ci	{0x36, 0x36, {0x025,5163,100, 1,0,0x00,0xe0,0x00,0xf0,0x00,0x09,0x0}},
89662306a36Sopenharmony_ci	{0x37, 0x37, {0x031,5287,100,-1,0,0x00,0xea,0x00,0xf5,0x16,0x06,0x0}},
89762306a36Sopenharmony_ci	{0x38, 0x38, {0x01d,4395,100, 2,0,0x00,0xe0,0x00,0xf0,0x00,0x09,0x0}},
89862306a36Sopenharmony_ci	{0x39, 0x39, {0x031,4647,100,-2,0,0x00,0xea,0x00,0xf4,0x16,0x06,0x0}},
89962306a36Sopenharmony_ci	{0x3a, 0x3a, {0x09d,4426,100,-4,0,0x00,0xe0,0x00,0xf4,0x17,0x07,0x0}},
90062306a36Sopenharmony_ci	{0x3b, 0x3b, {0x02e,4659,100,-2,0,0x00,0xea,0x00,0xf0,0x06,0x06,0x0}},
90162306a36Sopenharmony_ci	{0x3c, 0x3c, {0x01c,4769,100, 4,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}},
90262306a36Sopenharmony_ci	{0x3d, 0x3d, {0x01c,4611,100, 4,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}},
90362306a36Sopenharmony_ci	{0x3e, 0x3e, {0x01e,4402,100,-3,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}},
90462306a36Sopenharmony_ci	{0x3f, 0x3f, {0x01f,4387,100,-3,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}},
90562306a36Sopenharmony_ci	{0x40, 0x40, {0x01f,3983,100,-2,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}},
90662306a36Sopenharmony_ci	{0x41, 0x41, {0x09c,4526,100, 2,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}},
90762306a36Sopenharmony_ci	{0x42, 0x42, {0x09c,4016,100, 2,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}},
90862306a36Sopenharmony_ci	{0x43, 0x43, {0x00b,4739,100,-4,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}},
90962306a36Sopenharmony_ci	{0x44, 0x44, {0x00b,4179,100,-4,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}},
91062306a36Sopenharmony_ci	{0x45, 0x45, {0x02f,4787,100,-4,0,0x00,0xd6,0x00,0xf0,0x00,0x09,0x0}},
91162306a36Sopenharmony_ci	{0x46, 0x46, {0x030,4665,100,-4,0,0x00,0xd6,0x00,0xf0,0x00,0x09,0x0}},
91262306a36Sopenharmony_ci	{0x47, 0x47, {0x144,4519,100, 4,0,0x00,0xea,0x00,0xf0,0x00,0x0b,0x0}},
91362306a36Sopenharmony_ci	{0x48, 0x48, {0x144,4111,100, 4,0,0x00,0xea,0x00,0xf0,0x00,0x0b,0x0}},
91462306a36Sopenharmony_ci	{0x49, 0x49, {0x024,6408,100, 3,0,0x00,0xe0,0x00,0xf0,0x00,0x09,0x0}},
91562306a36Sopenharmony_ci	{0x4a, 0x4a, {0x024,4144,100, 3,0,0x00,0xcc,0x00,0xf0,0x00,0x09,0x0}},
91662306a36Sopenharmony_ci	{0x4b, 0x4b, {0x020,4001,100, 2,0,0x00,0xe0,0x00,0xf0,0x00,0x09,0x0}},
91762306a36Sopenharmony_ci	{0x4c, 0x4c, {0x02c,4402,100, 4,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}},
91862306a36Sopenharmony_ci	{0x4d, 0x4d, {0x02c,3612,100, 4,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}},
91962306a36Sopenharmony_ci	{0x4e, 0x4e, {0x022,4129,100,-2,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}},
92062306a36Sopenharmony_ci	{0x4f, 0x4f, {0x023,4147,100,-2,0,0x00,0xea,0x00,0xf0,0x00,0x09,0x0}},
92162306a36Sopenharmony_ci	{0x50, 0x50, {0x032,4412,100,-4,0,0x00,0xd6,0x00,0xf0,0x08,0x09,0x0}},
92262306a36Sopenharmony_ci	{0x51, 0x51, {0x032,4385,100,-4,0,0x00,0xd6,0x00,0xf0,0x00,0x09,0x0}},
92362306a36Sopenharmony_ci	{0x52, 0x52, {0x02f,5935,100,-1,0,0x00,0xd6,0x00,0xf0,0x00,0x09,0x0}}
92462306a36Sopenharmony_ci};
92562306a36Sopenharmony_ci
92662306a36Sopenharmony_ci#define REGION(num) { ARRAY_SIZE(regions ## num), regions ## num }
92762306a36Sopenharmony_ciconst struct opl4_region_ptr snd_yrw801_regions[0x81] = {
92862306a36Sopenharmony_ci	REGION(_00), REGION(_01), REGION(_02), REGION(_03),
92962306a36Sopenharmony_ci	REGION(_04), REGION(_05), REGION(_06), REGION(_07),
93062306a36Sopenharmony_ci	REGION(_08), REGION(_09), REGION(_0a), REGION(_0b),
93162306a36Sopenharmony_ci	REGION(_0c), REGION(_0d), REGION(_0e), REGION(_0f),
93262306a36Sopenharmony_ci	REGION(_10), REGION(_11), REGION(_12), REGION(_13),
93362306a36Sopenharmony_ci	REGION(_14), REGION(_15), REGION(_16), REGION(_17),
93462306a36Sopenharmony_ci	REGION(_18), REGION(_19), REGION(_1a), REGION(_1b),
93562306a36Sopenharmony_ci	REGION(_1c), REGION(_1d), REGION(_1e), REGION(_1f),
93662306a36Sopenharmony_ci	REGION(_20), REGION(_21), REGION(_22), REGION(_23),
93762306a36Sopenharmony_ci	REGION(_24), REGION(_25), REGION(_26), REGION(_27),
93862306a36Sopenharmony_ci	REGION(_28), REGION(_29), REGION(_2a), REGION(_2b),
93962306a36Sopenharmony_ci	REGION(_2c), REGION(_2d), REGION(_2e), REGION(_2f),
94062306a36Sopenharmony_ci	REGION(_30), REGION(_31), REGION(_32), REGION(_33),
94162306a36Sopenharmony_ci	REGION(_34), REGION(_35), REGION(_36), REGION(_37),
94262306a36Sopenharmony_ci	REGION(_38), REGION(_39), REGION(_3a), REGION(_3b),
94362306a36Sopenharmony_ci	REGION(_3c), REGION(_3d), REGION(_3e), REGION(_3f),
94462306a36Sopenharmony_ci	REGION(_40), REGION(_41), REGION(_42), REGION(_43),
94562306a36Sopenharmony_ci	REGION(_44), REGION(_45), REGION(_46), REGION(_47),
94662306a36Sopenharmony_ci	REGION(_48), REGION(_49), REGION(_4a), REGION(_4b),
94762306a36Sopenharmony_ci	REGION(_4c), REGION(_4d), REGION(_4e), REGION(_4f),
94862306a36Sopenharmony_ci	REGION(_50), REGION(_51), REGION(_52), REGION(_53),
94962306a36Sopenharmony_ci	REGION(_54), REGION(_55), REGION(_56), REGION(_57),
95062306a36Sopenharmony_ci	REGION(_58), REGION(_59), REGION(_5a), REGION(_5b),
95162306a36Sopenharmony_ci	REGION(_5c), REGION(_5d), REGION(_5e), REGION(_5f),
95262306a36Sopenharmony_ci	REGION(_60), REGION(_61), REGION(_62), REGION(_63),
95362306a36Sopenharmony_ci	REGION(_64), REGION(_65), REGION(_66), REGION(_67),
95462306a36Sopenharmony_ci	REGION(_68), REGION(_69), REGION(_6a), REGION(_6b),
95562306a36Sopenharmony_ci	REGION(_6c), REGION(_6d), REGION(_6e), REGION(_6f),
95662306a36Sopenharmony_ci	REGION(_70), REGION(_71), REGION(_72), REGION(_73),
95762306a36Sopenharmony_ci	REGION(_74), REGION(_75), REGION(_76), REGION(_77),
95862306a36Sopenharmony_ci	REGION(_78), REGION(_79), REGION(_7a), REGION(_7b),
95962306a36Sopenharmony_ci	REGION(_7c), REGION(_7d), REGION(_7e), REGION(_7f),
96062306a36Sopenharmony_ci	REGION(_drums)
96162306a36Sopenharmony_ci};
962