From 71a697c5a49c7b812092a8b18cb9742512c774c1 Mon Sep 17 00:00:00 2001 From: Dzmitry Neviadomski Date: Wed, 24 Feb 2021 11:41:54 +0300 Subject: [PATCH 1/5] Remove libsidplayfp external dep. --- .gitmodules | 3 - Frameworks/libsidplay/libsidplay/Info.plist | 28 - Frameworks/libsidplay/libsidplay/config.h | 23 - .../libsidplay/libsidplay/resid/siddefs.h | 86 -- .../libsidplay/residfp/siddefs-fp.h | 66 - .../libsidplay/sidplayfp/sidversion.h | 15 - Frameworks/libsidplay/sidplay-residfp-code | 1 - .../sidplayfp.xcodeproj/project.pbxproj | 1189 ----------------- .../xcshareddata/xcschemes/sidplayfp.xcscheme | 76 -- 9 files changed, 1487 deletions(-) delete mode 100644 Frameworks/libsidplay/libsidplay/Info.plist delete mode 100644 Frameworks/libsidplay/libsidplay/config.h delete mode 100644 Frameworks/libsidplay/libsidplay/resid/siddefs.h delete mode 100644 Frameworks/libsidplay/libsidplay/residfp/siddefs-fp.h delete mode 100644 Frameworks/libsidplay/libsidplay/sidplayfp/sidversion.h delete mode 160000 Frameworks/libsidplay/sidplay-residfp-code delete mode 100644 Frameworks/libsidplay/sidplayfp.xcodeproj/project.pbxproj delete mode 100644 Frameworks/libsidplay/sidplayfp.xcodeproj/xcshareddata/xcschemes/sidplayfp.xcscheme diff --git a/.gitmodules b/.gitmodules index d6c138c74..7f73699c7 100644 --- a/.gitmodules +++ b/.gitmodules @@ -10,9 +10,6 @@ [submodule "Frameworks/AdPlug/AdPlug/database"] path = Frameworks/AdPlug/AdPlug/database url = https://github.com/adplug/database.git -[submodule "Frameworks/libsidplay/sidplay-residfp-code"] - path = Frameworks/libsidplay/sidplay-residfp-code - url = https://git.lopez-snowhill.net/chris/sidplay-residfp.git [submodule "Frameworks/libatrac9/libatrac9"] path = Frameworks/libatrac9/libatrac9 url = https://github.com/Thealexbarney/LibAtrac9.git diff --git a/Frameworks/libsidplay/libsidplay/Info.plist b/Frameworks/libsidplay/libsidplay/Info.plist deleted file mode 100644 index 26976de2c..000000000 --- a/Frameworks/libsidplay/libsidplay/Info.plist +++ /dev/null @@ -1,28 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - FMWK - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - $(CURRENT_PROJECT_VERSION) - NSHumanReadableCopyright - Copyright © 2014 Christopher Snowhill. All rights reserved. - NSPrincipalClass - - - diff --git a/Frameworks/libsidplay/libsidplay/config.h b/Frameworks/libsidplay/libsidplay/config.h deleted file mode 100644 index 08c4cfd86..000000000 --- a/Frameworks/libsidplay/libsidplay/config.h +++ /dev/null @@ -1,23 +0,0 @@ -#ifndef _LIBSIDPLAYFP_CONFIG_H_ -#define _LIBSIDPLAYFP_CONFIG_H_ - -#define HAVE_CXX11 1 - -#define HAVE_BOOL 1 - -#if !defined(__aarch64__) -#define HAVE_MMINTRIN_H 1 -#endif - -#define HAVE_STRCASECMP 1 - -#define HAVE_STRNCASECMP 1 - -#define PACKAGE_NAME "reSIDfp" -#define PACKAGE_VERSION "2.0.1" -#define PACKAGE_URL "http://sourceforge.net/projects/sidplay-residfp/" - -#define VERSION "1.0-pre2" - -#endif - diff --git a/Frameworks/libsidplay/libsidplay/resid/siddefs.h b/Frameworks/libsidplay/libsidplay/resid/siddefs.h deleted file mode 100644 index 8ef27490f..000000000 --- a/Frameworks/libsidplay/libsidplay/resid/siddefs.h +++ /dev/null @@ -1,86 +0,0 @@ -// --------------------------------------------------------------------------- -// This file is part of reSID, a MOS6581 SID emulator engine. -// Copyright (C) 2010 Dag Lem -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -// --------------------------------------------------------------------------- - -#ifndef RESID_SIDDEFS_H -#define RESID_SIDDEFS_H - -// Compilation configuration. -#define RESID_INLINING 1 -#define RESID_INLINE inline -#define RESID_BRANCH_HINTS 1 - -// Compiler specifics. -#define HAVE_BOOL 1 -#define HAVE_BUILTIN_EXPECT 1 - -// Define bool, true, and false for C++ compilers that lack these keywords. -#if !HAVE_BOOL -typedef int bool; -const bool true = 1; -const bool false = 0; -#endif - -// Branch prediction macros, lifted off the Linux kernel. -#if RESID_BRANCH_HINTS && HAVE_BUILTIN_EXPECT -#define likely(x) __builtin_expect(!!(x), 1) -#define unlikely(x) __builtin_expect(!!(x), 0) -#else -#define likely(x) (x) -#define unlikely(x) (x) -#endif - -namespace reSID { - -// We could have used the smallest possible data type for each SID register, -// however this would give a slower engine because of data type conversions. -// An int is assumed to be at least 32 bits (necessary in the types reg24 -// and cycle_count). GNU does not support 16-bit machines -// (GNU Coding Standards: Portability between CPUs), so this should be -// a valid assumption. - -typedef unsigned int reg4; -typedef unsigned int reg8; -typedef unsigned int reg12; -typedef unsigned int reg16; -typedef unsigned int reg24; - -typedef int cycle_count; -typedef short short_point[2]; -typedef double double_point[2]; - -enum chip_model { MOS6581, MOS8580 }; - -enum sampling_method { SAMPLE_FAST, SAMPLE_INTERPOLATE, - SAMPLE_RESAMPLE, SAMPLE_RESAMPLE_FASTMEM }; - -} // namespace reSID - -extern "C" -{ -#ifndef RESID_VERSION_CC -extern const char* resid_version_string; -#else -const char* resid_version_string = "1.0-pre2"; -#endif -} - -#define VERSION "1.0-pre2" - -#endif // not RESID_SIDDEFS_H - diff --git a/Frameworks/libsidplay/libsidplay/residfp/siddefs-fp.h b/Frameworks/libsidplay/libsidplay/residfp/siddefs-fp.h deleted file mode 100644 index cdac4b8e5..000000000 --- a/Frameworks/libsidplay/libsidplay/residfp/siddefs-fp.h +++ /dev/null @@ -1,66 +0,0 @@ -// --------------------------------------------------------------------------- -// This file is part of reSID, a MOS6581 SID emulator engine. -// Copyright (C) 1999 Dag Lem -// -// This program is free software; you can redistribute it and/or modify -// it under the terms of the GNU General Public License as published by -// the Free Software Foundation; either version 2 of the License, or -// (at your option) any later version. -// -// This program is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License -// along with this program; if not, write to the Free Software -// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. -// --------------------------------------------------------------------------- - -#ifndef SIDDEFS_FP_H -#define SIDDEFS_FP_H - -#ifndef M_PI -# define M_PI 3.14159265358979323846 -#endif - -#define RESID_BRANCH_HINTS 1 - -// Compiler specifics. -#define HAVE_BOOL 1 -#define HAVE_BUILTIN_EXPECT 1 - -// Branch prediction macros, lifted off the Linux kernel. -#if RESID_BRANCH_HINTS && HAVE_BUILTIN_EXPECT -# define likely(x) __builtin_expect(!!(x), 1) -# define unlikely(x) __builtin_expect(!!(x), 0) -#else -# define likely(x) (x) -# define unlikely(x) (x) -#endif - -namespace reSIDfp { - -typedef enum { MOS6581=1, MOS8580 } ChipModel; - -typedef enum { DECIMATE=1, RESAMPLE } SamplingMethod; -} - -extern "C" -{ -#ifndef __VERSION_CC__ -extern const char* residfp_version_string; -#else -const char* residfp_version_string = "2.0.1"; -#endif -} - -#undef VERSION -#define VERSION "2.0.1" - -// Inlining on/off. -#define RESID_INLINING 1 -#define RESID_INLINE inline - -#endif // SIDDEFS_FP_H - diff --git a/Frameworks/libsidplay/libsidplay/sidplayfp/sidversion.h b/Frameworks/libsidplay/libsidplay/sidplayfp/sidversion.h deleted file mode 100644 index 399360683..000000000 --- a/Frameworks/libsidplay/libsidplay/sidplayfp/sidversion.h +++ /dev/null @@ -1,15 +0,0 @@ -#ifndef LIBSIDPLAYFP_VERSION_H -#define LIBSIDPLAYFP_VERSION_H - -#ifndef SIDPLAYFP_H -# error Do not include directly. -#endif - - - -#define LIBSIDPLAYFP_VERSION_MAJ "2" -#define LIBSIDPLAYFP_VERSION_MIN "0" -#define LIBSIDPLAYFP_VERSION_LEV "1" - -#endif - diff --git a/Frameworks/libsidplay/sidplay-residfp-code b/Frameworks/libsidplay/sidplay-residfp-code deleted file mode 160000 index 225ce1934..000000000 --- a/Frameworks/libsidplay/sidplay-residfp-code +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 225ce1934851397df05b631da13d7adb84cc49b4 diff --git a/Frameworks/libsidplay/sidplayfp.xcodeproj/project.pbxproj b/Frameworks/libsidplay/sidplayfp.xcodeproj/project.pbxproj deleted file mode 100644 index cb0898ed7..000000000 --- a/Frameworks/libsidplay/sidplayfp.xcodeproj/project.pbxproj +++ /dev/null @@ -1,1189 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 8314D68D1A354F4700EEE8E6 /* EventScheduler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D67A1A354F4700EEE8E6 /* EventScheduler.cpp */; }; - 8314D68E1A354F4700EEE8E6 /* EventScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D67B1A354F4700EEE8E6 /* EventScheduler.h */; }; - 8314D68F1A354F4700EEE8E6 /* mixer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D67C1A354F4700EEE8E6 /* mixer.cpp */; }; - 8314D6901A354F4700EEE8E6 /* mixer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D67D1A354F4700EEE8E6 /* mixer.h */; }; - 8314D6911A354F4700EEE8E6 /* player.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D67E1A354F4700EEE8E6 /* player.cpp */; }; - 8314D6921A354F4700EEE8E6 /* player.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D67F1A354F4700EEE8E6 /* player.h */; }; - 8314D6931A354F4700EEE8E6 /* psiddrv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D6801A354F4700EEE8E6 /* psiddrv.cpp */; }; - 8314D6941A354F4700EEE8E6 /* psiddrv.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6811A354F4700EEE8E6 /* psiddrv.h */; }; - 8314D6951A354F4700EEE8E6 /* reloc65.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D6821A354F4700EEE8E6 /* reloc65.cpp */; }; - 8314D6961A354F4700EEE8E6 /* reloc65.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6831A354F4700EEE8E6 /* reloc65.h */; }; - 8314D6971A354F4700EEE8E6 /* romCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6841A354F4700EEE8E6 /* romCheck.h */; }; - 8314D6981A354F4700EEE8E6 /* sidcxx11.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6851A354F4700EEE8E6 /* sidcxx11.h */; }; - 8314D6991A354F4700EEE8E6 /* sidemu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D6861A354F4700EEE8E6 /* sidemu.cpp */; }; - 8314D69A1A354F4700EEE8E6 /* sidemu.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6871A354F4700EEE8E6 /* sidemu.h */; }; - 8314D69B1A354F4700EEE8E6 /* sidendian.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6881A354F4700EEE8E6 /* sidendian.h */; }; - 8314D69C1A354F4700EEE8E6 /* SidInfoImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6891A354F4700EEE8E6 /* SidInfoImpl.h */; }; - 8314D69D1A354F4700EEE8E6 /* sidmd5.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D68A1A354F4700EEE8E6 /* sidmd5.h */; }; - 8314D69E1A354F4700EEE8E6 /* sidmemory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D68B1A354F4700EEE8E6 /* sidmemory.h */; }; - 8314D69F1A354F4700EEE8E6 /* stringutils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D68C1A354F4700EEE8E6 /* stringutils.h */; }; - 8314D6AD1A354F6800EEE8E6 /* sidbuilder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D6A11A354F6800EEE8E6 /* sidbuilder.cpp */; }; - 8314D6AE1A354F6800EEE8E6 /* sidbuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6A21A354F6800EEE8E6 /* sidbuilder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8314D6AF1A354F6800EEE8E6 /* SidConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D6A31A354F6800EEE8E6 /* SidConfig.cpp */; }; - 8314D6B01A354F6800EEE8E6 /* SidConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6A41A354F6800EEE8E6 /* SidConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8314D6B21A354F6800EEE8E6 /* SidInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6A61A354F6800EEE8E6 /* SidInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8314D6B31A354F6800EEE8E6 /* sidplayfp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D6A71A354F6800EEE8E6 /* sidplayfp.cpp */; }; - 8314D6B41A354F6800EEE8E6 /* sidplayfp.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6A81A354F6800EEE8E6 /* sidplayfp.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8314D6B51A354F6800EEE8E6 /* SidTune.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D6A91A354F6800EEE8E6 /* SidTune.cpp */; }; - 8314D6B61A354F6800EEE8E6 /* SidTune.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6AA1A354F6800EEE8E6 /* SidTune.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8314D6B71A354F6800EEE8E6 /* SidTuneInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6AB1A354F6800EEE8E6 /* SidTuneInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8314D6E01A35502100EEE8E6 /* Bank.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6B91A35502100EEE8E6 /* Bank.h */; }; - 8314D6E11A35502100EEE8E6 /* ColorRAMBank.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6BA1A35502100EEE8E6 /* ColorRAMBank.h */; }; - 8314D6E21A35502100EEE8E6 /* DisconnectedBusBank.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6BB1A35502100EEE8E6 /* DisconnectedBusBank.h */; }; - 8314D6E31A35502100EEE8E6 /* ExtraSidBank.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6BC1A35502100EEE8E6 /* ExtraSidBank.h */; }; - 8314D6E41A35502100EEE8E6 /* IOBank.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6BD1A35502100EEE8E6 /* IOBank.h */; }; - 8314D6E51A35502100EEE8E6 /* NullSid.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6BE1A35502100EEE8E6 /* NullSid.h */; }; - 8314D6E61A35502100EEE8E6 /* SidBank.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6BF1A35502100EEE8E6 /* SidBank.h */; }; - 8314D6E71A35502100EEE8E6 /* SystemRAMBank.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6C01A35502100EEE8E6 /* SystemRAMBank.h */; }; - 8314D6E81A35502100EEE8E6 /* SystemROMBanks.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6C11A35502100EEE8E6 /* SystemROMBanks.h */; }; - 8314D6E91A35502100EEE8E6 /* ZeroRAMBank.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6C21A35502100EEE8E6 /* ZeroRAMBank.h */; }; - 8314D6EA1A35502100EEE8E6 /* c64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D6C31A35502100EEE8E6 /* c64.cpp */; }; - 8314D6EB1A35502100EEE8E6 /* c64.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6C41A35502100EEE8E6 /* c64.h */; }; - 8314D6EC1A35502100EEE8E6 /* c64cia.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6C51A35502100EEE8E6 /* c64cia.h */; }; - 8314D6ED1A35502100EEE8E6 /* c64cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6C61A35502100EEE8E6 /* c64cpu.h */; }; - 8314D6EE1A35502100EEE8E6 /* c64env.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6C71A35502100EEE8E6 /* c64env.h */; }; - 8314D6EF1A35502100EEE8E6 /* c64sid.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6C81A35502100EEE8E6 /* c64sid.h */; }; - 8314D6F01A35502100EEE8E6 /* c64vic.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6C91A35502100EEE8E6 /* c64vic.h */; }; - 8314D6F11A35502100EEE8E6 /* mos6526.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D6CB1A35502100EEE8E6 /* mos6526.cpp */; }; - 8314D6F21A35502100EEE8E6 /* mos6526.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6CC1A35502100EEE8E6 /* mos6526.h */; }; - 8314D6F31A35502100EEE8E6 /* timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D6CD1A35502100EEE8E6 /* timer.cpp */; }; - 8314D6F41A35502100EEE8E6 /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6CE1A35502100EEE8E6 /* timer.h */; }; - 8314D6F51A35502100EEE8E6 /* tod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D6CF1A35502100EEE8E6 /* tod.cpp */; }; - 8314D6F61A35502100EEE8E6 /* tod.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6D01A35502100EEE8E6 /* tod.h */; }; - 8314D6F81A35502100EEE8E6 /* flags.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6D31A35502100EEE8E6 /* flags.h */; }; - 8314D6F91A35502100EEE8E6 /* mos6510.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D6D41A35502100EEE8E6 /* mos6510.cpp */; }; - 8314D6FA1A35502100EEE8E6 /* mos6510.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6D51A35502100EEE8E6 /* mos6510.h */; }; - 8314D6FB1A35502100EEE8E6 /* mos6510debug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D6D61A35502100EEE8E6 /* mos6510debug.cpp */; }; - 8314D6FC1A35502100EEE8E6 /* mos6510debug.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6D71A35502100EEE8E6 /* mos6510debug.h */; }; - 8314D6FD1A35502100EEE8E6 /* opcodes.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6D81A35502100EEE8E6 /* opcodes.h */; }; - 8314D6FE1A35502100EEE8E6 /* mmu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D6D91A35502100EEE8E6 /* mmu.cpp */; }; - 8314D6FF1A35502100EEE8E6 /* mmu.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6DA1A35502100EEE8E6 /* mmu.h */; }; - 8314D7001A35502100EEE8E6 /* lightpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6DC1A35502100EEE8E6 /* lightpen.h */; }; - 8314D7011A35502100EEE8E6 /* mos656x.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D6DD1A35502100EEE8E6 /* mos656x.cpp */; }; - 8314D7021A35502100EEE8E6 /* mos656x.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6DE1A35502100EEE8E6 /* mos656x.h */; }; - 8314D7031A35502100EEE8E6 /* sprites.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6DF1A35502100EEE8E6 /* sprites.h */; }; - 8314D7171A35503B00EEE8E6 /* MUS.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7051A35503B00EEE8E6 /* MUS.cpp */; }; - 8314D7181A35503B00EEE8E6 /* MUS.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7061A35503B00EEE8E6 /* MUS.h */; }; - 8314D7191A35503B00EEE8E6 /* p00.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7071A35503B00EEE8E6 /* p00.cpp */; }; - 8314D71A1A35503B00EEE8E6 /* p00.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7081A35503B00EEE8E6 /* p00.h */; }; - 8314D71B1A35503B00EEE8E6 /* prg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7091A35503B00EEE8E6 /* prg.cpp */; }; - 8314D71C1A35503B00EEE8E6 /* prg.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D70A1A35503B00EEE8E6 /* prg.h */; }; - 8314D71D1A35503B00EEE8E6 /* PSID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D70B1A35503B00EEE8E6 /* PSID.cpp */; }; - 8314D71E1A35503B00EEE8E6 /* PSID.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D70C1A35503B00EEE8E6 /* PSID.h */; }; - 8314D7221A35503B00EEE8E6 /* SidTuneBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7101A35503B00EEE8E6 /* SidTuneBase.cpp */; }; - 8314D7231A35503B00EEE8E6 /* SidTuneBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7111A35503B00EEE8E6 /* SidTuneBase.h */; }; - 8314D7241A35503B00EEE8E6 /* SidTuneCfg.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7121A35503B00EEE8E6 /* SidTuneCfg.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8314D7251A35503B00EEE8E6 /* SidTuneInfoImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7131A35503B00EEE8E6 /* SidTuneInfoImpl.h */; }; - 8314D7261A35503B00EEE8E6 /* SidTuneTools.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7141A35503B00EEE8E6 /* SidTuneTools.cpp */; }; - 8314D7271A35503B00EEE8E6 /* SidTuneTools.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7151A35503B00EEE8E6 /* SidTuneTools.h */; }; - 8314D7281A35503B00EEE8E6 /* SmartPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7161A35503B00EEE8E6 /* SmartPtr.h */; }; - 8314D7331A35627200EEE8E6 /* MD5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D72E1A35627200EEE8E6 /* MD5.cpp */; }; - 8314D7341A35627200EEE8E6 /* MD5.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D72F1A35627200EEE8E6 /* MD5.h */; }; - 8314D7351A35627200EEE8E6 /* MD5_Defs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7301A35627200EEE8E6 /* MD5_Defs.h */; }; - 8314D7361A35627200EEE8E6 /* md5Factory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7311A35627200EEE8E6 /* md5Factory.h */; }; - 8314D7371A35627200EEE8E6 /* md5Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7321A35627200EEE8E6 /* md5Internal.h */; }; - 8314D7721A3562A400EEE8E6 /* dac.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8314D73E1A3562A400EEE8E6 /* dac.cc */; }; - 8314D7731A3562A400EEE8E6 /* dac.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D73F1A3562A400EEE8E6 /* dac.h */; }; - 8314D7741A3562A400EEE8E6 /* envelope.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7401A3562A400EEE8E6 /* envelope.cc */; }; - 8314D7751A3562A400EEE8E6 /* envelope.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7411A3562A400EEE8E6 /* envelope.h */; }; - 8314D7761A3562A400EEE8E6 /* extfilt.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7421A3562A400EEE8E6 /* extfilt.cc */; }; - 8314D7771A3562A400EEE8E6 /* extfilt.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7431A3562A400EEE8E6 /* extfilt.h */; }; - 8314D7781A3562A400EEE8E6 /* filter.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7441A3562A400EEE8E6 /* filter.cc */; }; - 8314D7791A3562A400EEE8E6 /* filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7451A3562A400EEE8E6 /* filter.h */; }; - 8314D77D1A3562A400EEE8E6 /* pot.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7491A3562A400EEE8E6 /* pot.cc */; }; - 8314D77E1A3562A400EEE8E6 /* pot.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D74A1A3562A400EEE8E6 /* pot.h */; }; - 8314D7811A3562A400EEE8E6 /* resid-config.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D74D1A3562A400EEE8E6 /* resid-config.h */; }; - 8314D7831A3562A400EEE8E6 /* sid.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8314D74F1A3562A400EEE8E6 /* sid.cc */; }; - 8314D7841A3562A400EEE8E6 /* sid.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7501A3562A400EEE8E6 /* sid.h */; }; - 8314D7861A3562A400EEE8E6 /* spline.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7521A3562A400EEE8E6 /* spline.h */; }; - 8314D7891A3562A400EEE8E6 /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7551A3562A400EEE8E6 /* version.cc */; }; - 8314D78A1A3562A400EEE8E6 /* voice.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7561A3562A400EEE8E6 /* voice.cc */; }; - 8314D78B1A3562A400EEE8E6 /* voice.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7571A3562A400EEE8E6 /* voice.h */; }; - 8314D78C1A3562A400EEE8E6 /* wave.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7581A3562A400EEE8E6 /* wave.cc */; }; - 8314D78D1A3562A400EEE8E6 /* wave.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7591A3562A400EEE8E6 /* wave.h */; }; - 8314D78F1A3562A400EEE8E6 /* wave6581__ST.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D75B1A3562A400EEE8E6 /* wave6581__ST.h */; }; - 8314D7911A3562A400EEE8E6 /* wave6581_P_T.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D75D1A3562A400EEE8E6 /* wave6581_P_T.h */; }; - 8314D7931A3562A400EEE8E6 /* wave6581_PS_.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D75F1A3562A400EEE8E6 /* wave6581_PS_.h */; }; - 8314D7951A3562A400EEE8E6 /* wave6581_PST.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7611A3562A400EEE8E6 /* wave6581_PST.h */; }; - 8314D7971A3562A400EEE8E6 /* wave8580__ST.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7631A3562A400EEE8E6 /* wave8580__ST.h */; }; - 8314D7991A3562A400EEE8E6 /* wave8580_P_T.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7651A3562A400EEE8E6 /* wave8580_P_T.h */; }; - 8314D79B1A3562A400EEE8E6 /* wave8580_PS_.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7671A3562A400EEE8E6 /* wave8580_PS_.h */; }; - 8314D79D1A3562A400EEE8E6 /* wave8580_PST.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7691A3562A400EEE8E6 /* wave8580_PST.h */; }; - 8314D79E1A3562A400EEE8E6 /* resid-builder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D76A1A3562A400EEE8E6 /* resid-builder.cpp */; }; - 8314D79F1A3562A400EEE8E6 /* resid-emu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D76B1A3562A400EEE8E6 /* resid-emu.cpp */; }; - 8314D7A01A3562A400EEE8E6 /* resid-emu.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D76C1A3562A400EEE8E6 /* resid-emu.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8314D7A11A3562A400EEE8E6 /* resid.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D76D1A3562A400EEE8E6 /* resid.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8314D7D31A3563EE00EEE8E6 /* array.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7A61A3563EE00EEE8E6 /* array.h */; }; - 8314D7D61A3563EE00EEE8E6 /* Dac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7A91A3563EE00EEE8E6 /* Dac.cpp */; }; - 8314D7D71A3563EE00EEE8E6 /* Dac.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7AA1A3563EE00EEE8E6 /* Dac.h */; }; - 8314D7D81A3563EE00EEE8E6 /* EnvelopeGenerator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7AB1A3563EE00EEE8E6 /* EnvelopeGenerator.cpp */; }; - 8314D7D91A3563EE00EEE8E6 /* EnvelopeGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7AC1A3563EE00EEE8E6 /* EnvelopeGenerator.h */; }; - 8314D7DA1A3563EE00EEE8E6 /* ExternalFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7AD1A3563EE00EEE8E6 /* ExternalFilter.cpp */; }; - 8314D7DB1A3563EE00EEE8E6 /* ExternalFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7AE1A3563EE00EEE8E6 /* ExternalFilter.h */; }; - 8314D7DC1A3563EE00EEE8E6 /* Filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7AF1A3563EE00EEE8E6 /* Filter.cpp */; }; - 8314D7DD1A3563EE00EEE8E6 /* Filter.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7B01A3563EE00EEE8E6 /* Filter.h */; }; - 8314D7DE1A3563EE00EEE8E6 /* Filter6581.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7B11A3563EE00EEE8E6 /* Filter6581.cpp */; }; - 8314D7DF1A3563EE00EEE8E6 /* Filter6581.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7B21A3563EE00EEE8E6 /* Filter6581.h */; }; - 8314D7E01A3563EE00EEE8E6 /* Filter8580.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7B31A3563EE00EEE8E6 /* Filter8580.cpp */; }; - 8314D7E11A3563EE00EEE8E6 /* Filter8580.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7B41A3563EE00EEE8E6 /* Filter8580.h */; }; - 8314D7E21A3563EE00EEE8E6 /* FilterModelConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7B51A3563EE00EEE8E6 /* FilterModelConfig.cpp */; }; - 8314D7E31A3563EE00EEE8E6 /* FilterModelConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7B61A3563EE00EEE8E6 /* FilterModelConfig.h */; }; - 8314D7E41A3563EE00EEE8E6 /* Integrator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7B71A3563EE00EEE8E6 /* Integrator.cpp */; }; - 8314D7E51A3563EE00EEE8E6 /* Integrator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7B81A3563EE00EEE8E6 /* Integrator.h */; }; - 8314D7E61A3563EE00EEE8E6 /* OpAmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7B91A3563EE00EEE8E6 /* OpAmp.cpp */; }; - 8314D7E71A3563EE00EEE8E6 /* OpAmp.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7BA1A3563EE00EEE8E6 /* OpAmp.h */; }; - 8314D7E81A3563EE00EEE8E6 /* Potentiometer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7BB1A3563EE00EEE8E6 /* Potentiometer.h */; }; - 8314D7EA1A3563EE00EEE8E6 /* Resampler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7BE1A3563EE00EEE8E6 /* Resampler.h */; }; - 8314D7EB1A3563EE00EEE8E6 /* SincResampler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7BF1A3563EE00EEE8E6 /* SincResampler.cpp */; }; - 8314D7EC1A3563EE00EEE8E6 /* SincResampler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7C01A3563EE00EEE8E6 /* SincResampler.h */; }; - 8314D7ED1A3563EE00EEE8E6 /* test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7C11A3563EE00EEE8E6 /* test.cpp */; }; - 8314D7EE1A3563EE00EEE8E6 /* TwoPassSincResampler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7C21A3563EE00EEE8E6 /* TwoPassSincResampler.h */; }; - 8314D7EF1A3563EE00EEE8E6 /* ZeroOrderResampler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7C31A3563EE00EEE8E6 /* ZeroOrderResampler.h */; }; - 8314D7F01A3563EE00EEE8E6 /* SID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7C41A3563EE00EEE8E6 /* SID.cpp */; }; - 8314D7F11A3563EE00EEE8E6 /* SID.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7C51A3563EE00EEE8E6 /* SID.h */; }; - 8314D7F31A3563EE00EEE8E6 /* Spline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7C71A3563EE00EEE8E6 /* Spline.cpp */; }; - 8314D7F41A3563EE00EEE8E6 /* Spline.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7C81A3563EE00EEE8E6 /* Spline.h */; }; - 8314D7F51A3563EE00EEE8E6 /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7C91A3563EE00EEE8E6 /* version.cc */; }; - 8314D7F61A3563EE00EEE8E6 /* Voice.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7CA1A3563EE00EEE8E6 /* Voice.h */; }; - 8314D7F71A3563EE00EEE8E6 /* WaveformCalculator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7CB1A3563EE00EEE8E6 /* WaveformCalculator.cpp */; }; - 8314D7F81A3563EE00EEE8E6 /* WaveformCalculator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7CC1A3563EE00EEE8E6 /* WaveformCalculator.h */; }; - 8314D7F91A3563EE00EEE8E6 /* WaveformGenerator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7CD1A3563EE00EEE8E6 /* WaveformGenerator.cpp */; }; - 8314D7FA1A3563EE00EEE8E6 /* WaveformGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7CE1A3563EE00EEE8E6 /* WaveformGenerator.h */; }; - 8314D7FB1A3563EE00EEE8E6 /* residfp-builder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7CF1A3563EE00EEE8E6 /* residfp-builder.cpp */; }; - 8314D7FC1A3563EE00EEE8E6 /* residfp-emu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8314D7D01A3563EE00EEE8E6 /* residfp-emu.cpp */; }; - 8314D7FD1A3563EE00EEE8E6 /* residfp-emu.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7D11A3563EE00EEE8E6 /* residfp-emu.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8314D7FE1A3563EE00EEE8E6 /* residfp.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D7D21A3563EE00EEE8E6 /* residfp.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 83226D9620994DB1009DA017 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = 83226D9420994DB0009DA017 /* config.h */; }; - 83226D9D209950D5009DA017 /* sidversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 83226D9C209950D4009DA017 /* sidversion.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 83226DA12099510D009DA017 /* SerialPort.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83226D9E2099510C009DA017 /* SerialPort.cpp */; }; - 83226DA22099510D009DA017 /* SerialPort.h in Headers */ = {isa = PBXBuildFile; fileRef = 83226D9F2099510C009DA017 /* SerialPort.h */; }; - 83226DA32099510D009DA017 /* interrupt.h in Headers */ = {isa = PBXBuildFile; fileRef = 83226DA02099510C009DA017 /* interrupt.h */; }; - 83226DA520995145009DA017 /* siddefs-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 83226DA420995145009DA017 /* siddefs-fp.h */; }; - 83226DA720995155009DA017 /* siddefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 83226DA620995155009DA017 /* siddefs.h */; }; - 83226DAC209951C8009DA017 /* FilterModelConfig8580.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83226DA8209951C6009DA017 /* FilterModelConfig8580.cpp */; }; - 83226DAD209951C8009DA017 /* FilterModelConfig8580.h in Headers */ = {isa = PBXBuildFile; fileRef = 83226DA9209951C7009DA017 /* FilterModelConfig8580.h */; }; - 83226DAE209951C8009DA017 /* Integrator8580.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83226DAA209951C7009DA017 /* Integrator8580.cpp */; }; - 83226DAF209951C8009DA017 /* Integrator8580.h in Headers */ = {isa = PBXBuildFile; fileRef = 83226DAB209951C7009DA017 /* Integrator8580.h */; }; - 83226DB020995303009DA017 /* siddefs.h in Headers */ = {isa = PBXBuildFile; fileRef = 8314D6A51A354F6800EEE8E6 /* siddefs.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 835273981CDA844500BCCF86 /* md5Factory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 835273971CDA844400BCCF86 /* md5Factory.cpp */; }; - 8352739C1CDA849F00BCCF86 /* SidInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8352739A1CDA849F00BCCF86 /* SidInfo.cpp */; }; - 8352739D1CDA849F00BCCF86 /* SidTuneInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8352739B1CDA849F00BCCF86 /* SidTuneInfo.cpp */; }; - 8352739F1CDA850E00BCCF86 /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = 8352739E1CDA850E00BCCF86 /* Event.h */; settings = {ATTRIBUTES = (Public, ); }; }; -/* End PBXBuildFile section */ - -/* Begin PBXFileReference section */ - 8314D6551A354E7800EEE8E6 /* sidplayfp.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = sidplayfp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 8314D6591A354E7800EEE8E6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 8314D67A1A354F4700EEE8E6 /* EventScheduler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = EventScheduler.cpp; path = "sidplay-residfp-code/libsidplayfp/src/EventScheduler.cpp"; sourceTree = SOURCE_ROOT; }; - 8314D67B1A354F4700EEE8E6 /* EventScheduler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EventScheduler.h; path = "sidplay-residfp-code/libsidplayfp/src/EventScheduler.h"; sourceTree = SOURCE_ROOT; }; - 8314D67C1A354F4700EEE8E6 /* mixer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mixer.cpp; path = "sidplay-residfp-code/libsidplayfp/src/mixer.cpp"; sourceTree = SOURCE_ROOT; }; - 8314D67D1A354F4700EEE8E6 /* mixer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mixer.h; path = "sidplay-residfp-code/libsidplayfp/src/mixer.h"; sourceTree = SOURCE_ROOT; }; - 8314D67E1A354F4700EEE8E6 /* player.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = player.cpp; path = "sidplay-residfp-code/libsidplayfp/src/player.cpp"; sourceTree = SOURCE_ROOT; }; - 8314D67F1A354F4700EEE8E6 /* player.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = player.h; path = "sidplay-residfp-code/libsidplayfp/src/player.h"; sourceTree = SOURCE_ROOT; }; - 8314D6801A354F4700EEE8E6 /* psiddrv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = psiddrv.cpp; path = "sidplay-residfp-code/libsidplayfp/src/psiddrv.cpp"; sourceTree = SOURCE_ROOT; }; - 8314D6811A354F4700EEE8E6 /* psiddrv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = psiddrv.h; path = "sidplay-residfp-code/libsidplayfp/src/psiddrv.h"; sourceTree = SOURCE_ROOT; }; - 8314D6821A354F4700EEE8E6 /* reloc65.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = reloc65.cpp; path = "sidplay-residfp-code/libsidplayfp/src/reloc65.cpp"; sourceTree = SOURCE_ROOT; }; - 8314D6831A354F4700EEE8E6 /* reloc65.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = reloc65.h; path = "sidplay-residfp-code/libsidplayfp/src/reloc65.h"; sourceTree = SOURCE_ROOT; }; - 8314D6841A354F4700EEE8E6 /* romCheck.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = romCheck.h; path = "sidplay-residfp-code/libsidplayfp/src/romCheck.h"; sourceTree = SOURCE_ROOT; }; - 8314D6851A354F4700EEE8E6 /* sidcxx11.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sidcxx11.h; path = "sidplay-residfp-code/libsidplayfp/src/sidcxx11.h"; sourceTree = SOURCE_ROOT; }; - 8314D6861A354F4700EEE8E6 /* sidemu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = sidemu.cpp; path = "sidplay-residfp-code/libsidplayfp/src/sidemu.cpp"; sourceTree = SOURCE_ROOT; }; - 8314D6871A354F4700EEE8E6 /* sidemu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sidemu.h; path = "sidplay-residfp-code/libsidplayfp/src/sidemu.h"; sourceTree = SOURCE_ROOT; }; - 8314D6881A354F4700EEE8E6 /* sidendian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sidendian.h; path = "sidplay-residfp-code/libsidplayfp/src/sidendian.h"; sourceTree = SOURCE_ROOT; }; - 8314D6891A354F4700EEE8E6 /* SidInfoImpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SidInfoImpl.h; path = "sidplay-residfp-code/libsidplayfp/src/SidInfoImpl.h"; sourceTree = SOURCE_ROOT; }; - 8314D68A1A354F4700EEE8E6 /* sidmd5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sidmd5.h; path = "sidplay-residfp-code/libsidplayfp/src/sidmd5.h"; sourceTree = SOURCE_ROOT; }; - 8314D68B1A354F4700EEE8E6 /* sidmemory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sidmemory.h; path = "sidplay-residfp-code/libsidplayfp/src/sidmemory.h"; sourceTree = SOURCE_ROOT; }; - 8314D68C1A354F4700EEE8E6 /* stringutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = stringutils.h; path = "sidplay-residfp-code/libsidplayfp/src/stringutils.h"; sourceTree = SOURCE_ROOT; }; - 8314D6A11A354F6800EEE8E6 /* sidbuilder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = sidbuilder.cpp; path = "sidplay-residfp-code/libsidplayfp/src/sidplayfp/sidbuilder.cpp"; sourceTree = SOURCE_ROOT; }; - 8314D6A21A354F6800EEE8E6 /* sidbuilder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sidbuilder.h; path = "sidplay-residfp-code/libsidplayfp/src/sidplayfp/sidbuilder.h"; sourceTree = SOURCE_ROOT; }; - 8314D6A31A354F6800EEE8E6 /* SidConfig.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SidConfig.cpp; path = "sidplay-residfp-code/libsidplayfp/src/sidplayfp/SidConfig.cpp"; sourceTree = SOURCE_ROOT; }; - 8314D6A41A354F6800EEE8E6 /* SidConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SidConfig.h; path = "sidplay-residfp-code/libsidplayfp/src/sidplayfp/SidConfig.h"; sourceTree = SOURCE_ROOT; }; - 8314D6A51A354F6800EEE8E6 /* siddefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = siddefs.h; path = "sidplay-residfp-code/libsidplayfp/src/sidplayfp/siddefs.h"; sourceTree = SOURCE_ROOT; }; - 8314D6A61A354F6800EEE8E6 /* SidInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SidInfo.h; path = "sidplay-residfp-code/libsidplayfp/src/sidplayfp/SidInfo.h"; sourceTree = SOURCE_ROOT; }; - 8314D6A71A354F6800EEE8E6 /* sidplayfp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = sidplayfp.cpp; path = "sidplay-residfp-code/libsidplayfp/src/sidplayfp/sidplayfp.cpp"; sourceTree = SOURCE_ROOT; }; - 8314D6A81A354F6800EEE8E6 /* sidplayfp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sidplayfp.h; path = "sidplay-residfp-code/libsidplayfp/src/sidplayfp/sidplayfp.h"; sourceTree = SOURCE_ROOT; }; - 8314D6A91A354F6800EEE8E6 /* SidTune.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SidTune.cpp; path = "sidplay-residfp-code/libsidplayfp/src/sidplayfp/SidTune.cpp"; sourceTree = SOURCE_ROOT; }; - 8314D6AA1A354F6800EEE8E6 /* SidTune.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SidTune.h; path = "sidplay-residfp-code/libsidplayfp/src/sidplayfp/SidTune.h"; sourceTree = SOURCE_ROOT; }; - 8314D6AB1A354F6800EEE8E6 /* SidTuneInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SidTuneInfo.h; path = "sidplay-residfp-code/libsidplayfp/src/sidplayfp/SidTuneInfo.h"; sourceTree = SOURCE_ROOT; }; - 8314D6B91A35502100EEE8E6 /* Bank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Bank.h; sourceTree = ""; }; - 8314D6BA1A35502100EEE8E6 /* ColorRAMBank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ColorRAMBank.h; sourceTree = ""; }; - 8314D6BB1A35502100EEE8E6 /* DisconnectedBusBank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DisconnectedBusBank.h; sourceTree = ""; }; - 8314D6BC1A35502100EEE8E6 /* ExtraSidBank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExtraSidBank.h; sourceTree = ""; }; - 8314D6BD1A35502100EEE8E6 /* IOBank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBank.h; sourceTree = ""; }; - 8314D6BE1A35502100EEE8E6 /* NullSid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NullSid.h; sourceTree = ""; }; - 8314D6BF1A35502100EEE8E6 /* SidBank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SidBank.h; sourceTree = ""; }; - 8314D6C01A35502100EEE8E6 /* SystemRAMBank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemRAMBank.h; sourceTree = ""; }; - 8314D6C11A35502100EEE8E6 /* SystemROMBanks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemROMBanks.h; sourceTree = ""; }; - 8314D6C21A35502100EEE8E6 /* ZeroRAMBank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZeroRAMBank.h; sourceTree = ""; }; - 8314D6C31A35502100EEE8E6 /* c64.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = c64.cpp; path = "sidplay-residfp-code/libsidplayfp/src/c64/c64.cpp"; sourceTree = SOURCE_ROOT; }; - 8314D6C41A35502100EEE8E6 /* c64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = c64.h; path = "sidplay-residfp-code/libsidplayfp/src/c64/c64.h"; sourceTree = SOURCE_ROOT; }; - 8314D6C51A35502100EEE8E6 /* c64cia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = c64cia.h; path = "sidplay-residfp-code/libsidplayfp/src/c64/c64cia.h"; sourceTree = SOURCE_ROOT; }; - 8314D6C61A35502100EEE8E6 /* c64cpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = c64cpu.h; path = "sidplay-residfp-code/libsidplayfp/src/c64/c64cpu.h"; sourceTree = SOURCE_ROOT; }; - 8314D6C71A35502100EEE8E6 /* c64env.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = c64env.h; path = "sidplay-residfp-code/libsidplayfp/src/c64/c64env.h"; sourceTree = SOURCE_ROOT; }; - 8314D6C81A35502100EEE8E6 /* c64sid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = c64sid.h; path = "sidplay-residfp-code/libsidplayfp/src/c64/c64sid.h"; sourceTree = SOURCE_ROOT; }; - 8314D6C91A35502100EEE8E6 /* c64vic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = c64vic.h; path = "sidplay-residfp-code/libsidplayfp/src/c64/c64vic.h"; sourceTree = SOURCE_ROOT; }; - 8314D6CB1A35502100EEE8E6 /* mos6526.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mos6526.cpp; sourceTree = ""; }; - 8314D6CC1A35502100EEE8E6 /* mos6526.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mos6526.h; sourceTree = ""; }; - 8314D6CD1A35502100EEE8E6 /* timer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = timer.cpp; sourceTree = ""; }; - 8314D6CE1A35502100EEE8E6 /* timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = timer.h; sourceTree = ""; }; - 8314D6CF1A35502100EEE8E6 /* tod.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tod.cpp; sourceTree = ""; }; - 8314D6D01A35502100EEE8E6 /* tod.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tod.h; sourceTree = ""; }; - 8314D6D31A35502100EEE8E6 /* flags.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = flags.h; sourceTree = ""; }; - 8314D6D41A35502100EEE8E6 /* mos6510.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mos6510.cpp; sourceTree = ""; }; - 8314D6D51A35502100EEE8E6 /* mos6510.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mos6510.h; sourceTree = ""; }; - 8314D6D61A35502100EEE8E6 /* mos6510debug.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mos6510debug.cpp; sourceTree = ""; }; - 8314D6D71A35502100EEE8E6 /* mos6510debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mos6510debug.h; sourceTree = ""; }; - 8314D6D81A35502100EEE8E6 /* opcodes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opcodes.h; sourceTree = ""; }; - 8314D6D91A35502100EEE8E6 /* mmu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mmu.cpp; path = "sidplay-residfp-code/libsidplayfp/src/c64/mmu.cpp"; sourceTree = SOURCE_ROOT; }; - 8314D6DA1A35502100EEE8E6 /* mmu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mmu.h; path = "sidplay-residfp-code/libsidplayfp/src/c64/mmu.h"; sourceTree = SOURCE_ROOT; }; - 8314D6DC1A35502100EEE8E6 /* lightpen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lightpen.h; sourceTree = ""; }; - 8314D6DD1A35502100EEE8E6 /* mos656x.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mos656x.cpp; sourceTree = ""; }; - 8314D6DE1A35502100EEE8E6 /* mos656x.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mos656x.h; sourceTree = ""; }; - 8314D6DF1A35502100EEE8E6 /* sprites.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sprites.h; sourceTree = ""; }; - 8314D7051A35503B00EEE8E6 /* MUS.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MUS.cpp; sourceTree = ""; }; - 8314D7061A35503B00EEE8E6 /* MUS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUS.h; sourceTree = ""; }; - 8314D7071A35503B00EEE8E6 /* p00.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = p00.cpp; sourceTree = ""; }; - 8314D7081A35503B00EEE8E6 /* p00.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = p00.h; sourceTree = ""; }; - 8314D7091A35503B00EEE8E6 /* prg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = prg.cpp; sourceTree = ""; }; - 8314D70A1A35503B00EEE8E6 /* prg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prg.h; sourceTree = ""; }; - 8314D70B1A35503B00EEE8E6 /* PSID.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PSID.cpp; sourceTree = ""; }; - 8314D70C1A35503B00EEE8E6 /* PSID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSID.h; sourceTree = ""; }; - 8314D7101A35503B00EEE8E6 /* SidTuneBase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SidTuneBase.cpp; sourceTree = ""; }; - 8314D7111A35503B00EEE8E6 /* SidTuneBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SidTuneBase.h; sourceTree = ""; }; - 8314D7121A35503B00EEE8E6 /* SidTuneCfg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SidTuneCfg.h; sourceTree = ""; }; - 8314D7131A35503B00EEE8E6 /* SidTuneInfoImpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SidTuneInfoImpl.h; sourceTree = ""; }; - 8314D7141A35503B00EEE8E6 /* SidTuneTools.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SidTuneTools.cpp; sourceTree = ""; }; - 8314D7151A35503B00EEE8E6 /* SidTuneTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SidTuneTools.h; sourceTree = ""; }; - 8314D7161A35503B00EEE8E6 /* SmartPtr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmartPtr.h; sourceTree = ""; }; - 8314D72E1A35627200EEE8E6 /* MD5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MD5.cpp; sourceTree = ""; }; - 8314D72F1A35627200EEE8E6 /* MD5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MD5.h; sourceTree = ""; }; - 8314D7301A35627200EEE8E6 /* MD5_Defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MD5_Defs.h; sourceTree = ""; }; - 8314D7311A35627200EEE8E6 /* md5Factory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = md5Factory.h; path = "sidplay-residfp-code/libsidplayfp/src/utils/md5Factory.h"; sourceTree = SOURCE_ROOT; }; - 8314D7321A35627200EEE8E6 /* md5Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = md5Internal.h; path = "sidplay-residfp-code/libsidplayfp/src/utils/md5Internal.h"; sourceTree = SOURCE_ROOT; }; - 8314D73A1A3562A400EEE8E6 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = ""; }; - 8314D73B1A3562A400EEE8E6 /* ChangeLog */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ChangeLog; sourceTree = ""; }; - 8314D73C1A3562A400EEE8E6 /* configure.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = configure.in; sourceTree = ""; }; - 8314D73D1A3562A400EEE8E6 /* COPYING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = COPYING; sourceTree = ""; }; - 8314D73E1A3562A400EEE8E6 /* dac.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dac.cc; sourceTree = ""; }; - 8314D73F1A3562A400EEE8E6 /* dac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dac.h; sourceTree = ""; }; - 8314D7401A3562A400EEE8E6 /* envelope.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = envelope.cc; sourceTree = ""; }; - 8314D7411A3562A400EEE8E6 /* envelope.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = envelope.h; sourceTree = ""; }; - 8314D7421A3562A400EEE8E6 /* extfilt.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = extfilt.cc; sourceTree = ""; }; - 8314D7431A3562A400EEE8E6 /* extfilt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = extfilt.h; sourceTree = ""; }; - 8314D7441A3562A400EEE8E6 /* filter.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = filter.cc; sourceTree = ""; }; - 8314D7451A3562A400EEE8E6 /* filter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filter.h; sourceTree = ""; }; - 8314D7461A3562A400EEE8E6 /* INSTALL */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = INSTALL; sourceTree = ""; }; - 8314D7471A3562A400EEE8E6 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; - 8314D7481A3562A400EEE8E6 /* NEWS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NEWS; sourceTree = ""; }; - 8314D7491A3562A400EEE8E6 /* pot.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pot.cc; sourceTree = ""; }; - 8314D74A1A3562A400EEE8E6 /* pot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pot.h; sourceTree = ""; }; - 8314D74B1A3562A400EEE8E6 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = ""; }; - 8314D74C1A3562A400EEE8E6 /* README.VICE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.VICE; sourceTree = ""; }; - 8314D74D1A3562A400EEE8E6 /* resid-config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "resid-config.h"; sourceTree = ""; }; - 8314D74E1A3562A400EEE8E6 /* samp2src.pl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.perl; path = samp2src.pl; sourceTree = ""; }; - 8314D74F1A3562A400EEE8E6 /* sid.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sid.cc; sourceTree = ""; }; - 8314D7501A3562A400EEE8E6 /* sid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sid.h; sourceTree = ""; }; - 8314D7511A3562A400EEE8E6 /* siddefs.h.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = siddefs.h.in; sourceTree = ""; }; - 8314D7521A3562A400EEE8E6 /* spline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spline.h; sourceTree = ""; }; - 8314D7531A3562A400EEE8E6 /* THANKS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = THANKS; sourceTree = ""; }; - 8314D7541A3562A400EEE8E6 /* TODO */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TODO; sourceTree = ""; }; - 8314D7551A3562A400EEE8E6 /* version.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = version.cc; sourceTree = ""; }; - 8314D7561A3562A400EEE8E6 /* voice.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = voice.cc; sourceTree = ""; }; - 8314D7571A3562A400EEE8E6 /* voice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = voice.h; sourceTree = ""; }; - 8314D7581A3562A400EEE8E6 /* wave.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = wave.cc; sourceTree = ""; }; - 8314D7591A3562A400EEE8E6 /* wave.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave.h; sourceTree = ""; }; - 8314D75A1A3562A400EEE8E6 /* wave6581__ST.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = wave6581__ST.dat; sourceTree = ""; }; - 8314D75B1A3562A400EEE8E6 /* wave6581__ST.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave6581__ST.h; sourceTree = ""; }; - 8314D75C1A3562A400EEE8E6 /* wave6581_P_T.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = wave6581_P_T.dat; sourceTree = ""; }; - 8314D75D1A3562A400EEE8E6 /* wave6581_P_T.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave6581_P_T.h; sourceTree = ""; }; - 8314D75E1A3562A400EEE8E6 /* wave6581_PS_.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = wave6581_PS_.dat; sourceTree = ""; }; - 8314D75F1A3562A400EEE8E6 /* wave6581_PS_.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave6581_PS_.h; sourceTree = ""; }; - 8314D7601A3562A400EEE8E6 /* wave6581_PST.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = wave6581_PST.dat; sourceTree = ""; }; - 8314D7611A3562A400EEE8E6 /* wave6581_PST.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave6581_PST.h; sourceTree = ""; }; - 8314D7621A3562A400EEE8E6 /* wave8580__ST.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = wave8580__ST.dat; sourceTree = ""; }; - 8314D7631A3562A400EEE8E6 /* wave8580__ST.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave8580__ST.h; sourceTree = ""; }; - 8314D7641A3562A400EEE8E6 /* wave8580_P_T.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = wave8580_P_T.dat; sourceTree = ""; }; - 8314D7651A3562A400EEE8E6 /* wave8580_P_T.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave8580_P_T.h; sourceTree = ""; }; - 8314D7661A3562A400EEE8E6 /* wave8580_PS_.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = wave8580_PS_.dat; sourceTree = ""; }; - 8314D7671A3562A400EEE8E6 /* wave8580_PS_.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave8580_PS_.h; sourceTree = ""; }; - 8314D7681A3562A400EEE8E6 /* wave8580_PST.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = wave8580_PST.dat; sourceTree = ""; }; - 8314D7691A3562A400EEE8E6 /* wave8580_PST.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave8580_PST.h; sourceTree = ""; }; - 8314D76A1A3562A400EEE8E6 /* resid-builder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "resid-builder.cpp"; sourceTree = ""; }; - 8314D76B1A3562A400EEE8E6 /* resid-emu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "resid-emu.cpp"; sourceTree = ""; }; - 8314D76C1A3562A400EEE8E6 /* resid-emu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "resid-emu.h"; sourceTree = ""; }; - 8314D76D1A3562A400EEE8E6 /* resid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = resid.h; sourceTree = ""; }; - 8314D7A61A3563EE00EEE8E6 /* array.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = array.h; sourceTree = ""; }; - 8314D7A71A3563EE00EEE8E6 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = ""; }; - 8314D7A81A3563EE00EEE8E6 /* COPYING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = COPYING; sourceTree = ""; }; - 8314D7A91A3563EE00EEE8E6 /* Dac.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Dac.cpp; sourceTree = ""; }; - 8314D7AA1A3563EE00EEE8E6 /* Dac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Dac.h; sourceTree = ""; }; - 8314D7AB1A3563EE00EEE8E6 /* EnvelopeGenerator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = EnvelopeGenerator.cpp; sourceTree = ""; }; - 8314D7AC1A3563EE00EEE8E6 /* EnvelopeGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EnvelopeGenerator.h; sourceTree = ""; }; - 8314D7AD1A3563EE00EEE8E6 /* ExternalFilter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ExternalFilter.cpp; sourceTree = ""; }; - 8314D7AE1A3563EE00EEE8E6 /* ExternalFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExternalFilter.h; sourceTree = ""; }; - 8314D7AF1A3563EE00EEE8E6 /* Filter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Filter.cpp; sourceTree = ""; }; - 8314D7B01A3563EE00EEE8E6 /* Filter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Filter.h; sourceTree = ""; }; - 8314D7B11A3563EE00EEE8E6 /* Filter6581.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Filter6581.cpp; sourceTree = ""; }; - 8314D7B21A3563EE00EEE8E6 /* Filter6581.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Filter6581.h; sourceTree = ""; }; - 8314D7B31A3563EE00EEE8E6 /* Filter8580.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Filter8580.cpp; sourceTree = ""; }; - 8314D7B41A3563EE00EEE8E6 /* Filter8580.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Filter8580.h; sourceTree = ""; }; - 8314D7B51A3563EE00EEE8E6 /* FilterModelConfig.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FilterModelConfig.cpp; sourceTree = ""; }; - 8314D7B61A3563EE00EEE8E6 /* FilterModelConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FilterModelConfig.h; sourceTree = ""; }; - 8314D7B71A3563EE00EEE8E6 /* Integrator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Integrator.cpp; sourceTree = ""; }; - 8314D7B81A3563EE00EEE8E6 /* Integrator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Integrator.h; sourceTree = ""; }; - 8314D7B91A3563EE00EEE8E6 /* OpAmp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = OpAmp.cpp; sourceTree = ""; }; - 8314D7BA1A3563EE00EEE8E6 /* OpAmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OpAmp.h; sourceTree = ""; }; - 8314D7BB1A3563EE00EEE8E6 /* Potentiometer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Potentiometer.h; sourceTree = ""; }; - 8314D7BC1A3563EE00EEE8E6 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = ""; }; - 8314D7BE1A3563EE00EEE8E6 /* Resampler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Resampler.h; sourceTree = ""; }; - 8314D7BF1A3563EE00EEE8E6 /* SincResampler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SincResampler.cpp; sourceTree = ""; }; - 8314D7C01A3563EE00EEE8E6 /* SincResampler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SincResampler.h; sourceTree = ""; }; - 8314D7C11A3563EE00EEE8E6 /* test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = test.cpp; sourceTree = ""; }; - 8314D7C21A3563EE00EEE8E6 /* TwoPassSincResampler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TwoPassSincResampler.h; sourceTree = ""; }; - 8314D7C31A3563EE00EEE8E6 /* ZeroOrderResampler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZeroOrderResampler.h; sourceTree = ""; }; - 8314D7C41A3563EE00EEE8E6 /* SID.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SID.cpp; sourceTree = ""; }; - 8314D7C51A3563EE00EEE8E6 /* SID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SID.h; sourceTree = ""; }; - 8314D7C61A3563EE00EEE8E6 /* siddefs-fp.h.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "siddefs-fp.h.in"; sourceTree = ""; }; - 8314D7C71A3563EE00EEE8E6 /* Spline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Spline.cpp; sourceTree = ""; }; - 8314D7C81A3563EE00EEE8E6 /* Spline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Spline.h; sourceTree = ""; }; - 8314D7C91A3563EE00EEE8E6 /* version.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = version.cc; sourceTree = ""; }; - 8314D7CA1A3563EE00EEE8E6 /* Voice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Voice.h; sourceTree = ""; }; - 8314D7CB1A3563EE00EEE8E6 /* WaveformCalculator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WaveformCalculator.cpp; sourceTree = ""; }; - 8314D7CC1A3563EE00EEE8E6 /* WaveformCalculator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WaveformCalculator.h; sourceTree = ""; }; - 8314D7CD1A3563EE00EEE8E6 /* WaveformGenerator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WaveformGenerator.cpp; sourceTree = ""; }; - 8314D7CE1A3563EE00EEE8E6 /* WaveformGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WaveformGenerator.h; sourceTree = ""; }; - 8314D7CF1A3563EE00EEE8E6 /* residfp-builder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "residfp-builder.cpp"; sourceTree = ""; }; - 8314D7D01A3563EE00EEE8E6 /* residfp-emu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "residfp-emu.cpp"; sourceTree = ""; }; - 8314D7D11A3563EE00EEE8E6 /* residfp-emu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "residfp-emu.h"; sourceTree = ""; }; - 8314D7D21A3563EE00EEE8E6 /* residfp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = residfp.h; sourceTree = ""; }; - 83226D9420994DB0009DA017 /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = config.h; sourceTree = ""; }; - 83226D9C209950D4009DA017 /* sidversion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sidversion.h; path = sidplayfp/sidversion.h; sourceTree = ""; }; - 83226D9E2099510C009DA017 /* SerialPort.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SerialPort.cpp; path = "sidplay-residfp-code/libsidplayfp/src/c64/CIA/SerialPort.cpp"; sourceTree = SOURCE_ROOT; }; - 83226D9F2099510C009DA017 /* SerialPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SerialPort.h; path = "sidplay-residfp-code/libsidplayfp/src/c64/CIA/SerialPort.h"; sourceTree = SOURCE_ROOT; }; - 83226DA02099510C009DA017 /* interrupt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = interrupt.h; path = "sidplay-residfp-code/libsidplayfp/src/c64/CIA/interrupt.h"; sourceTree = SOURCE_ROOT; }; - 83226DA420995145009DA017 /* siddefs-fp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "siddefs-fp.h"; path = "libsidplay/residfp/siddefs-fp.h"; sourceTree = SOURCE_ROOT; }; - 83226DA620995155009DA017 /* siddefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = siddefs.h; path = libsidplay/resid/siddefs.h; sourceTree = SOURCE_ROOT; }; - 83226DA8209951C6009DA017 /* FilterModelConfig8580.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FilterModelConfig8580.cpp; sourceTree = ""; }; - 83226DA9209951C7009DA017 /* FilterModelConfig8580.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FilterModelConfig8580.h; sourceTree = ""; }; - 83226DAA209951C7009DA017 /* Integrator8580.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Integrator8580.cpp; sourceTree = ""; }; - 83226DAB209951C7009DA017 /* Integrator8580.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Integrator8580.h; sourceTree = ""; }; - 835273971CDA844400BCCF86 /* md5Factory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = md5Factory.cpp; path = "sidplay-residfp-code/libsidplayfp/src/utils/md5Factory.cpp"; sourceTree = SOURCE_ROOT; }; - 8352739A1CDA849F00BCCF86 /* SidInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SidInfo.cpp; path = "sidplay-residfp-code/libsidplayfp/src/sidplayfp/SidInfo.cpp"; sourceTree = SOURCE_ROOT; }; - 8352739B1CDA849F00BCCF86 /* SidTuneInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = SidTuneInfo.cpp; path = "sidplay-residfp-code/libsidplayfp/src/sidplayfp/SidTuneInfo.cpp"; sourceTree = SOURCE_ROOT; }; - 8352739E1CDA850E00BCCF86 /* Event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Event.h; path = "sidplay-residfp-code/libsidplayfp/src/Event.h"; sourceTree = SOURCE_ROOT; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 8314D6511A354E7800EEE8E6 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 8314D64B1A354E7800EEE8E6 = { - isa = PBXGroup; - children = ( - 8314D6571A354E7800EEE8E6 /* libsidplay */, - 8314D6561A354E7800EEE8E6 /* Products */, - ); - sourceTree = ""; - }; - 8314D6561A354E7800EEE8E6 /* Products */ = { - isa = PBXGroup; - children = ( - 8314D6551A354E7800EEE8E6 /* sidplayfp.framework */, - ); - name = Products; - sourceTree = ""; - }; - 8314D6571A354E7800EEE8E6 /* libsidplay */ = { - isa = PBXGroup; - children = ( - 83226D9C209950D4009DA017 /* sidversion.h */, - 83226D9420994DB0009DA017 /* config.h */, - 8352739E1CDA850E00BCCF86 /* Event.h */, - 8352739A1CDA849F00BCCF86 /* SidInfo.cpp */, - 8352739B1CDA849F00BCCF86 /* SidTuneInfo.cpp */, - 835273991CDA844900BCCF86 /* utils */, - 8314D7A41A3563EE00EEE8E6 /* residfp-builder */, - 8314D7381A3562A400EEE8E6 /* resid-builder */, - 8314D72D1A35627200EEE8E6 /* MD5 */, - 8314D7311A35627200EEE8E6 /* md5Factory.h */, - 8314D7321A35627200EEE8E6 /* md5Internal.h */, - 8314D7041A35503B00EEE8E6 /* sidtune */, - 8314D6B81A35502100EEE8E6 /* Banks */, - 8314D6C31A35502100EEE8E6 /* c64.cpp */, - 8314D6C41A35502100EEE8E6 /* c64.h */, - 8314D6C51A35502100EEE8E6 /* c64cia.h */, - 8314D6C61A35502100EEE8E6 /* c64cpu.h */, - 8314D6C71A35502100EEE8E6 /* c64env.h */, - 8314D6C81A35502100EEE8E6 /* c64sid.h */, - 8314D6C91A35502100EEE8E6 /* c64vic.h */, - 8314D6CA1A35502100EEE8E6 /* CIA */, - 8314D6D21A35502100EEE8E6 /* CPU */, - 8314D6D91A35502100EEE8E6 /* mmu.cpp */, - 8314D6DA1A35502100EEE8E6 /* mmu.h */, - 8314D6DB1A35502100EEE8E6 /* VIC_II */, - 8314D6A11A354F6800EEE8E6 /* sidbuilder.cpp */, - 8314D6A21A354F6800EEE8E6 /* sidbuilder.h */, - 8314D6A31A354F6800EEE8E6 /* SidConfig.cpp */, - 8314D6A41A354F6800EEE8E6 /* SidConfig.h */, - 8314D6A51A354F6800EEE8E6 /* siddefs.h */, - 8314D6A61A354F6800EEE8E6 /* SidInfo.h */, - 8314D6A71A354F6800EEE8E6 /* sidplayfp.cpp */, - 8314D6A81A354F6800EEE8E6 /* sidplayfp.h */, - 8314D6A91A354F6800EEE8E6 /* SidTune.cpp */, - 8314D6AA1A354F6800EEE8E6 /* SidTune.h */, - 8314D6AB1A354F6800EEE8E6 /* SidTuneInfo.h */, - 8314D67A1A354F4700EEE8E6 /* EventScheduler.cpp */, - 8314D67B1A354F4700EEE8E6 /* EventScheduler.h */, - 8314D67C1A354F4700EEE8E6 /* mixer.cpp */, - 8314D67D1A354F4700EEE8E6 /* mixer.h */, - 8314D67E1A354F4700EEE8E6 /* player.cpp */, - 8314D67F1A354F4700EEE8E6 /* player.h */, - 8314D6801A354F4700EEE8E6 /* psiddrv.cpp */, - 8314D6811A354F4700EEE8E6 /* psiddrv.h */, - 8314D6821A354F4700EEE8E6 /* reloc65.cpp */, - 8314D6831A354F4700EEE8E6 /* reloc65.h */, - 8314D6841A354F4700EEE8E6 /* romCheck.h */, - 8314D6851A354F4700EEE8E6 /* sidcxx11.h */, - 8314D6861A354F4700EEE8E6 /* sidemu.cpp */, - 8314D6871A354F4700EEE8E6 /* sidemu.h */, - 8314D6881A354F4700EEE8E6 /* sidendian.h */, - 8314D6891A354F4700EEE8E6 /* SidInfoImpl.h */, - 8314D68A1A354F4700EEE8E6 /* sidmd5.h */, - 8314D68B1A354F4700EEE8E6 /* sidmemory.h */, - 8314D68C1A354F4700EEE8E6 /* stringutils.h */, - 8314D6581A354E7800EEE8E6 /* Supporting Files */, - ); - path = libsidplay; - sourceTree = ""; - }; - 8314D6581A354E7800EEE8E6 /* Supporting Files */ = { - isa = PBXGroup; - children = ( - 8314D6591A354E7800EEE8E6 /* Info.plist */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; - 8314D6B81A35502100EEE8E6 /* Banks */ = { - isa = PBXGroup; - children = ( - 8314D6B91A35502100EEE8E6 /* Bank.h */, - 8314D6BA1A35502100EEE8E6 /* ColorRAMBank.h */, - 8314D6BB1A35502100EEE8E6 /* DisconnectedBusBank.h */, - 8314D6BC1A35502100EEE8E6 /* ExtraSidBank.h */, - 8314D6BD1A35502100EEE8E6 /* IOBank.h */, - 8314D6BE1A35502100EEE8E6 /* NullSid.h */, - 8314D6BF1A35502100EEE8E6 /* SidBank.h */, - 8314D6C01A35502100EEE8E6 /* SystemRAMBank.h */, - 8314D6C11A35502100EEE8E6 /* SystemROMBanks.h */, - 8314D6C21A35502100EEE8E6 /* ZeroRAMBank.h */, - ); - name = Banks; - path = "sidplay-residfp-code/libsidplayfp/src/c64/Banks"; - sourceTree = SOURCE_ROOT; - }; - 8314D6CA1A35502100EEE8E6 /* CIA */ = { - isa = PBXGroup; - children = ( - 83226DA02099510C009DA017 /* interrupt.h */, - 8314D6CB1A35502100EEE8E6 /* mos6526.cpp */, - 8314D6CC1A35502100EEE8E6 /* mos6526.h */, - 83226D9E2099510C009DA017 /* SerialPort.cpp */, - 83226D9F2099510C009DA017 /* SerialPort.h */, - 8314D6CD1A35502100EEE8E6 /* timer.cpp */, - 8314D6CE1A35502100EEE8E6 /* timer.h */, - 8314D6CF1A35502100EEE8E6 /* tod.cpp */, - 8314D6D01A35502100EEE8E6 /* tod.h */, - ); - name = CIA; - path = "sidplay-residfp-code/libsidplayfp/src/c64/CIA"; - sourceTree = SOURCE_ROOT; - }; - 8314D6D21A35502100EEE8E6 /* CPU */ = { - isa = PBXGroup; - children = ( - 8314D6D31A35502100EEE8E6 /* flags.h */, - 8314D6D41A35502100EEE8E6 /* mos6510.cpp */, - 8314D6D51A35502100EEE8E6 /* mos6510.h */, - 8314D6D61A35502100EEE8E6 /* mos6510debug.cpp */, - 8314D6D71A35502100EEE8E6 /* mos6510debug.h */, - 8314D6D81A35502100EEE8E6 /* opcodes.h */, - ); - name = CPU; - path = "sidplay-residfp-code/libsidplayfp/src/c64/CPU"; - sourceTree = SOURCE_ROOT; - }; - 8314D6DB1A35502100EEE8E6 /* VIC_II */ = { - isa = PBXGroup; - children = ( - 8314D6DC1A35502100EEE8E6 /* lightpen.h */, - 8314D6DD1A35502100EEE8E6 /* mos656x.cpp */, - 8314D6DE1A35502100EEE8E6 /* mos656x.h */, - 8314D6DF1A35502100EEE8E6 /* sprites.h */, - ); - name = VIC_II; - path = "sidplay-residfp-code/libsidplayfp/src/c64/VIC_II"; - sourceTree = SOURCE_ROOT; - }; - 8314D7041A35503B00EEE8E6 /* sidtune */ = { - isa = PBXGroup; - children = ( - 8314D7051A35503B00EEE8E6 /* MUS.cpp */, - 8314D7061A35503B00EEE8E6 /* MUS.h */, - 8314D7071A35503B00EEE8E6 /* p00.cpp */, - 8314D7081A35503B00EEE8E6 /* p00.h */, - 8314D7091A35503B00EEE8E6 /* prg.cpp */, - 8314D70A1A35503B00EEE8E6 /* prg.h */, - 8314D70B1A35503B00EEE8E6 /* PSID.cpp */, - 8314D70C1A35503B00EEE8E6 /* PSID.h */, - 8314D7101A35503B00EEE8E6 /* SidTuneBase.cpp */, - 8314D7111A35503B00EEE8E6 /* SidTuneBase.h */, - 8314D7121A35503B00EEE8E6 /* SidTuneCfg.h */, - 8314D7131A35503B00EEE8E6 /* SidTuneInfoImpl.h */, - 8314D7141A35503B00EEE8E6 /* SidTuneTools.cpp */, - 8314D7151A35503B00EEE8E6 /* SidTuneTools.h */, - 8314D7161A35503B00EEE8E6 /* SmartPtr.h */, - ); - name = sidtune; - path = "sidplay-residfp-code/libsidplayfp/src/sidtune"; - sourceTree = SOURCE_ROOT; - }; - 8314D72D1A35627200EEE8E6 /* MD5 */ = { - isa = PBXGroup; - children = ( - 8314D72E1A35627200EEE8E6 /* MD5.cpp */, - 8314D72F1A35627200EEE8E6 /* MD5.h */, - 8314D7301A35627200EEE8E6 /* MD5_Defs.h */, - ); - name = MD5; - path = "sidplay-residfp-code/libsidplayfp/src/utils/MD5"; - sourceTree = SOURCE_ROOT; - }; - 8314D7381A3562A400EEE8E6 /* resid-builder */ = { - isa = PBXGroup; - children = ( - 8314D7391A3562A400EEE8E6 /* resid */, - 8314D76A1A3562A400EEE8E6 /* resid-builder.cpp */, - 8314D76B1A3562A400EEE8E6 /* resid-emu.cpp */, - 8314D76C1A3562A400EEE8E6 /* resid-emu.h */, - 8314D76D1A3562A400EEE8E6 /* resid.h */, - ); - name = "resid-builder"; - path = "sidplay-residfp-code/libsidplayfp/src/builders/resid-builder"; - sourceTree = SOURCE_ROOT; - }; - 8314D7391A3562A400EEE8E6 /* resid */ = { - isa = PBXGroup; - children = ( - 83226DA620995155009DA017 /* siddefs.h */, - 8314D73A1A3562A400EEE8E6 /* AUTHORS */, - 8314D73B1A3562A400EEE8E6 /* ChangeLog */, - 8314D73C1A3562A400EEE8E6 /* configure.in */, - 8314D73D1A3562A400EEE8E6 /* COPYING */, - 8314D73E1A3562A400EEE8E6 /* dac.cc */, - 8314D73F1A3562A400EEE8E6 /* dac.h */, - 8314D7401A3562A400EEE8E6 /* envelope.cc */, - 8314D7411A3562A400EEE8E6 /* envelope.h */, - 8314D7421A3562A400EEE8E6 /* extfilt.cc */, - 8314D7431A3562A400EEE8E6 /* extfilt.h */, - 8314D7441A3562A400EEE8E6 /* filter.cc */, - 8314D7451A3562A400EEE8E6 /* filter.h */, - 8314D7461A3562A400EEE8E6 /* INSTALL */, - 8314D7471A3562A400EEE8E6 /* Makefile.am */, - 8314D7481A3562A400EEE8E6 /* NEWS */, - 8314D7491A3562A400EEE8E6 /* pot.cc */, - 8314D74A1A3562A400EEE8E6 /* pot.h */, - 8314D74B1A3562A400EEE8E6 /* README */, - 8314D74C1A3562A400EEE8E6 /* README.VICE */, - 8314D74D1A3562A400EEE8E6 /* resid-config.h */, - 8314D74E1A3562A400EEE8E6 /* samp2src.pl */, - 8314D74F1A3562A400EEE8E6 /* sid.cc */, - 8314D7501A3562A400EEE8E6 /* sid.h */, - 8314D7511A3562A400EEE8E6 /* siddefs.h.in */, - 8314D7521A3562A400EEE8E6 /* spline.h */, - 8314D7531A3562A400EEE8E6 /* THANKS */, - 8314D7541A3562A400EEE8E6 /* TODO */, - 8314D7551A3562A400EEE8E6 /* version.cc */, - 8314D7561A3562A400EEE8E6 /* voice.cc */, - 8314D7571A3562A400EEE8E6 /* voice.h */, - 8314D7581A3562A400EEE8E6 /* wave.cc */, - 8314D7591A3562A400EEE8E6 /* wave.h */, - 8314D75A1A3562A400EEE8E6 /* wave6581__ST.dat */, - 8314D75B1A3562A400EEE8E6 /* wave6581__ST.h */, - 8314D75C1A3562A400EEE8E6 /* wave6581_P_T.dat */, - 8314D75D1A3562A400EEE8E6 /* wave6581_P_T.h */, - 8314D75E1A3562A400EEE8E6 /* wave6581_PS_.dat */, - 8314D75F1A3562A400EEE8E6 /* wave6581_PS_.h */, - 8314D7601A3562A400EEE8E6 /* wave6581_PST.dat */, - 8314D7611A3562A400EEE8E6 /* wave6581_PST.h */, - 8314D7621A3562A400EEE8E6 /* wave8580__ST.dat */, - 8314D7631A3562A400EEE8E6 /* wave8580__ST.h */, - 8314D7641A3562A400EEE8E6 /* wave8580_P_T.dat */, - 8314D7651A3562A400EEE8E6 /* wave8580_P_T.h */, - 8314D7661A3562A400EEE8E6 /* wave8580_PS_.dat */, - 8314D7671A3562A400EEE8E6 /* wave8580_PS_.h */, - 8314D7681A3562A400EEE8E6 /* wave8580_PST.dat */, - 8314D7691A3562A400EEE8E6 /* wave8580_PST.h */, - ); - path = resid; - sourceTree = ""; - }; - 8314D7A41A3563EE00EEE8E6 /* residfp-builder */ = { - isa = PBXGroup; - children = ( - 8314D7A51A3563EE00EEE8E6 /* residfp */, - 8314D7CF1A3563EE00EEE8E6 /* residfp-builder.cpp */, - 8314D7D01A3563EE00EEE8E6 /* residfp-emu.cpp */, - 8314D7D11A3563EE00EEE8E6 /* residfp-emu.h */, - 8314D7D21A3563EE00EEE8E6 /* residfp.h */, - ); - name = "residfp-builder"; - path = "sidplay-residfp-code/libsidplayfp/src/builders/residfp-builder"; - sourceTree = SOURCE_ROOT; - }; - 8314D7A51A3563EE00EEE8E6 /* residfp */ = { - isa = PBXGroup; - children = ( - 83226DA420995145009DA017 /* siddefs-fp.h */, - 8314D7A61A3563EE00EEE8E6 /* array.h */, - 8314D7A71A3563EE00EEE8E6 /* AUTHORS */, - 8314D7A81A3563EE00EEE8E6 /* COPYING */, - 8314D7A91A3563EE00EEE8E6 /* Dac.cpp */, - 8314D7AA1A3563EE00EEE8E6 /* Dac.h */, - 8314D7AB1A3563EE00EEE8E6 /* EnvelopeGenerator.cpp */, - 8314D7AC1A3563EE00EEE8E6 /* EnvelopeGenerator.h */, - 8314D7AD1A3563EE00EEE8E6 /* ExternalFilter.cpp */, - 8314D7AE1A3563EE00EEE8E6 /* ExternalFilter.h */, - 8314D7AF1A3563EE00EEE8E6 /* Filter.cpp */, - 8314D7B01A3563EE00EEE8E6 /* Filter.h */, - 8314D7B11A3563EE00EEE8E6 /* Filter6581.cpp */, - 8314D7B21A3563EE00EEE8E6 /* Filter6581.h */, - 8314D7B31A3563EE00EEE8E6 /* Filter8580.cpp */, - 8314D7B41A3563EE00EEE8E6 /* Filter8580.h */, - 8314D7B51A3563EE00EEE8E6 /* FilterModelConfig.cpp */, - 8314D7B61A3563EE00EEE8E6 /* FilterModelConfig.h */, - 83226DA8209951C6009DA017 /* FilterModelConfig8580.cpp */, - 83226DA9209951C7009DA017 /* FilterModelConfig8580.h */, - 8314D7B71A3563EE00EEE8E6 /* Integrator.cpp */, - 8314D7B81A3563EE00EEE8E6 /* Integrator.h */, - 83226DAA209951C7009DA017 /* Integrator8580.cpp */, - 83226DAB209951C7009DA017 /* Integrator8580.h */, - 8314D7B91A3563EE00EEE8E6 /* OpAmp.cpp */, - 8314D7BA1A3563EE00EEE8E6 /* OpAmp.h */, - 8314D7BB1A3563EE00EEE8E6 /* Potentiometer.h */, - 8314D7BC1A3563EE00EEE8E6 /* README */, - 8314D7BD1A3563EE00EEE8E6 /* resample */, - 8314D7C41A3563EE00EEE8E6 /* SID.cpp */, - 8314D7C51A3563EE00EEE8E6 /* SID.h */, - 8314D7C61A3563EE00EEE8E6 /* siddefs-fp.h.in */, - 8314D7C71A3563EE00EEE8E6 /* Spline.cpp */, - 8314D7C81A3563EE00EEE8E6 /* Spline.h */, - 8314D7C91A3563EE00EEE8E6 /* version.cc */, - 8314D7CA1A3563EE00EEE8E6 /* Voice.h */, - 8314D7CB1A3563EE00EEE8E6 /* WaveformCalculator.cpp */, - 8314D7CC1A3563EE00EEE8E6 /* WaveformCalculator.h */, - 8314D7CD1A3563EE00EEE8E6 /* WaveformGenerator.cpp */, - 8314D7CE1A3563EE00EEE8E6 /* WaveformGenerator.h */, - ); - path = residfp; - sourceTree = ""; - }; - 8314D7BD1A3563EE00EEE8E6 /* resample */ = { - isa = PBXGroup; - children = ( - 8314D7BE1A3563EE00EEE8E6 /* Resampler.h */, - 8314D7BF1A3563EE00EEE8E6 /* SincResampler.cpp */, - 8314D7C01A3563EE00EEE8E6 /* SincResampler.h */, - 8314D7C11A3563EE00EEE8E6 /* test.cpp */, - 8314D7C21A3563EE00EEE8E6 /* TwoPassSincResampler.h */, - 8314D7C31A3563EE00EEE8E6 /* ZeroOrderResampler.h */, - ); - path = resample; - sourceTree = ""; - }; - 835273991CDA844900BCCF86 /* utils */ = { - isa = PBXGroup; - children = ( - 835273971CDA844400BCCF86 /* md5Factory.cpp */, - ); - name = utils; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXHeadersBuildPhase section */ - 8314D6521A354E7800EEE8E6 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 83226D9D209950D5009DA017 /* sidversion.h in Headers */, - 83226DB020995303009DA017 /* siddefs.h in Headers */, - 8314D7A01A3562A400EEE8E6 /* resid-emu.h in Headers */, - 8314D7A11A3562A400EEE8E6 /* resid.h in Headers */, - 8314D7FD1A3563EE00EEE8E6 /* residfp-emu.h in Headers */, - 8314D7FE1A3563EE00EEE8E6 /* residfp.h in Headers */, - 8314D6B71A354F6800EEE8E6 /* SidTuneInfo.h in Headers */, - 8314D6AE1A354F6800EEE8E6 /* sidbuilder.h in Headers */, - 8314D6B61A354F6800EEE8E6 /* SidTune.h in Headers */, - 8314D6B41A354F6800EEE8E6 /* sidplayfp.h in Headers */, - 8314D6B21A354F6800EEE8E6 /* SidInfo.h in Headers */, - 8314D7241A35503B00EEE8E6 /* SidTuneCfg.h in Headers */, - 8314D6B01A354F6800EEE8E6 /* SidConfig.h in Headers */, - 8352739F1CDA850E00BCCF86 /* Event.h in Headers */, - 8314D7D31A3563EE00EEE8E6 /* array.h in Headers */, - 8314D79B1A3562A400EEE8E6 /* wave8580_PS_.h in Headers */, - 8314D7EE1A3563EE00EEE8E6 /* TwoPassSincResampler.h in Headers */, - 8314D7751A3562A400EEE8E6 /* envelope.h in Headers */, - 8314D7181A35503B00EEE8E6 /* MUS.h in Headers */, - 8314D7E71A3563EE00EEE8E6 /* OpAmp.h in Headers */, - 8314D7031A35502100EEE8E6 /* sprites.h in Headers */, - 83226DA520995145009DA017 /* siddefs-fp.h in Headers */, - 8314D69F1A354F4700EEE8E6 /* stringutils.h in Headers */, - 8314D7EC1A3563EE00EEE8E6 /* SincResampler.h in Headers */, - 8314D7D71A3563EE00EEE8E6 /* Dac.h in Headers */, - 8314D69D1A354F4700EEE8E6 /* sidmd5.h in Headers */, - 8314D6FF1A35502100EEE8E6 /* mmu.h in Headers */, - 8314D6901A354F4700EEE8E6 /* mixer.h in Headers */, - 8314D7361A35627200EEE8E6 /* md5Factory.h in Headers */, - 8314D7791A3562A400EEE8E6 /* filter.h in Headers */, - 8314D71A1A35503B00EEE8E6 /* p00.h in Headers */, - 8314D7001A35502100EEE8E6 /* lightpen.h in Headers */, - 8314D6F21A35502100EEE8E6 /* mos6526.h in Headers */, - 8314D6F01A35502100EEE8E6 /* c64vic.h in Headers */, - 8314D6F81A35502100EEE8E6 /* flags.h in Headers */, - 8314D7EA1A3563EE00EEE8E6 /* Resampler.h in Headers */, - 8314D6FD1A35502100EEE8E6 /* opcodes.h in Headers */, - 8314D6EE1A35502100EEE8E6 /* c64env.h in Headers */, - 8314D7EF1A3563EE00EEE8E6 /* ZeroOrderResampler.h in Headers */, - 8314D7971A3562A400EEE8E6 /* wave8580__ST.h in Headers */, - 8314D68E1A354F4700EEE8E6 /* EventScheduler.h in Headers */, - 8314D7841A3562A400EEE8E6 /* sid.h in Headers */, - 8314D6F61A35502100EEE8E6 /* tod.h in Headers */, - 8314D6E51A35502100EEE8E6 /* NullSid.h in Headers */, - 83226DA22099510D009DA017 /* SerialPort.h in Headers */, - 8314D6EB1A35502100EEE8E6 /* c64.h in Headers */, - 8314D6921A354F4700EEE8E6 /* player.h in Headers */, - 8314D7E11A3563EE00EEE8E6 /* Filter8580.h in Headers */, - 8314D7771A3562A400EEE8E6 /* extfilt.h in Headers */, - 8314D6E31A35502100EEE8E6 /* ExtraSidBank.h in Headers */, - 8314D6981A354F4700EEE8E6 /* sidcxx11.h in Headers */, - 8314D7E51A3563EE00EEE8E6 /* Integrator.h in Headers */, - 8314D7991A3562A400EEE8E6 /* wave8580_P_T.h in Headers */, - 8314D71C1A35503B00EEE8E6 /* prg.h in Headers */, - 8314D6961A354F4700EEE8E6 /* reloc65.h in Headers */, - 8314D69E1A354F4700EEE8E6 /* sidmemory.h in Headers */, - 8314D7931A3562A400EEE8E6 /* wave6581_PS_.h in Headers */, - 8314D7021A35502100EEE8E6 /* mos656x.h in Headers */, - 8314D7861A3562A400EEE8E6 /* spline.h in Headers */, - 8314D7731A3562A400EEE8E6 /* dac.h in Headers */, - 8314D7341A35627200EEE8E6 /* MD5.h in Headers */, - 8314D69A1A354F4700EEE8E6 /* sidemu.h in Headers */, - 8314D7DF1A3563EE00EEE8E6 /* Filter6581.h in Headers */, - 8314D7911A3562A400EEE8E6 /* wave6581_P_T.h in Headers */, - 8314D69B1A354F4700EEE8E6 /* sidendian.h in Headers */, - 8314D6971A354F4700EEE8E6 /* romCheck.h in Headers */, - 8314D7E81A3563EE00EEE8E6 /* Potentiometer.h in Headers */, - 8314D77E1A3562A400EEE8E6 /* pot.h in Headers */, - 8314D6E11A35502100EEE8E6 /* ColorRAMBank.h in Headers */, - 8314D7F81A3563EE00EEE8E6 /* WaveformCalculator.h in Headers */, - 8314D7FA1A3563EE00EEE8E6 /* WaveformGenerator.h in Headers */, - 8314D79D1A3562A400EEE8E6 /* wave8580_PST.h in Headers */, - 8314D7951A3562A400EEE8E6 /* wave6581_PST.h in Headers */, - 8314D7251A35503B00EEE8E6 /* SidTuneInfoImpl.h in Headers */, - 8314D7DD1A3563EE00EEE8E6 /* Filter.h in Headers */, - 8314D6E01A35502100EEE8E6 /* Bank.h in Headers */, - 8314D7371A35627200EEE8E6 /* md5Internal.h in Headers */, - 8314D6F41A35502100EEE8E6 /* timer.h in Headers */, - 83226DAF209951C8009DA017 /* Integrator8580.h in Headers */, - 8314D6ED1A35502100EEE8E6 /* c64cpu.h in Headers */, - 8314D6FA1A35502100EEE8E6 /* mos6510.h in Headers */, - 8314D6EF1A35502100EEE8E6 /* c64sid.h in Headers */, - 8314D6941A354F4700EEE8E6 /* psiddrv.h in Headers */, - 8314D6E21A35502100EEE8E6 /* DisconnectedBusBank.h in Headers */, - 83226DAD209951C8009DA017 /* FilterModelConfig8580.h in Headers */, - 8314D7F11A3563EE00EEE8E6 /* SID.h in Headers */, - 8314D6E61A35502100EEE8E6 /* SidBank.h in Headers */, - 8314D6FC1A35502100EEE8E6 /* mos6510debug.h in Headers */, - 83226D9620994DB1009DA017 /* config.h in Headers */, - 8314D7DB1A3563EE00EEE8E6 /* ExternalFilter.h in Headers */, - 83226DA32099510D009DA017 /* interrupt.h in Headers */, - 8314D6E91A35502100EEE8E6 /* ZeroRAMBank.h in Headers */, - 8314D7F41A3563EE00EEE8E6 /* Spline.h in Headers */, - 8314D69C1A354F4700EEE8E6 /* SidInfoImpl.h in Headers */, - 8314D7811A3562A400EEE8E6 /* resid-config.h in Headers */, - 8314D7F61A3563EE00EEE8E6 /* Voice.h in Headers */, - 8314D6E41A35502100EEE8E6 /* IOBank.h in Headers */, - 8314D78D1A3562A400EEE8E6 /* wave.h in Headers */, - 8314D7231A35503B00EEE8E6 /* SidTuneBase.h in Headers */, - 8314D6E81A35502100EEE8E6 /* SystemROMBanks.h in Headers */, - 8314D7E31A3563EE00EEE8E6 /* FilterModelConfig.h in Headers */, - 8314D7D91A3563EE00EEE8E6 /* EnvelopeGenerator.h in Headers */, - 83226DA720995155009DA017 /* siddefs.h in Headers */, - 8314D78F1A3562A400EEE8E6 /* wave6581__ST.h in Headers */, - 8314D7271A35503B00EEE8E6 /* SidTuneTools.h in Headers */, - 8314D71E1A35503B00EEE8E6 /* PSID.h in Headers */, - 8314D7351A35627200EEE8E6 /* MD5_Defs.h in Headers */, - 8314D78B1A3562A400EEE8E6 /* voice.h in Headers */, - 8314D7281A35503B00EEE8E6 /* SmartPtr.h in Headers */, - 8314D6E71A35502100EEE8E6 /* SystemRAMBank.h in Headers */, - 8314D6EC1A35502100EEE8E6 /* c64cia.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXHeadersBuildPhase section */ - -/* Begin PBXNativeTarget section */ - 8314D6541A354E7800EEE8E6 /* sidplayfp */ = { - isa = PBXNativeTarget; - buildConfigurationList = 8314D66B1A354E7800EEE8E6 /* Build configuration list for PBXNativeTarget "sidplayfp" */; - buildPhases = ( - 8314D6501A354E7800EEE8E6 /* Sources */, - 8314D6511A354E7800EEE8E6 /* Frameworks */, - 8314D6521A354E7800EEE8E6 /* Headers */, - 8314D6531A354E7800EEE8E6 /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = sidplayfp; - productName = libsidplay; - productReference = 8314D6551A354E7800EEE8E6 /* sidplayfp.framework */; - productType = "com.apple.product-type.framework"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 8314D64C1A354E7800EEE8E6 /* Project object */ = { - isa = PBXProject; - attributes = { - LastUpgradeCheck = 1020; - ORGANIZATIONNAME = "Christopher Snowhill"; - TargetAttributes = { - 8314D6541A354E7800EEE8E6 = { - CreatedOnToolsVersion = 6.1.1; - DevelopmentTeam = ""; - ProvisioningStyle = Automatic; - }; - }; - }; - buildConfigurationList = 8314D64F1A354E7800EEE8E6 /* Build configuration list for PBXProject "sidplayfp" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = en; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 8314D64B1A354E7800EEE8E6; - productRefGroup = 8314D6561A354E7800EEE8E6 /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 8314D6541A354E7800EEE8E6 /* sidplayfp */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 8314D6531A354E7800EEE8E6 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 8314D6501A354E7800EEE8E6 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 8352739D1CDA849F00BCCF86 /* SidTuneInfo.cpp in Sources */, - 8314D7721A3562A400EEE8E6 /* dac.cc in Sources */, - 8314D6AD1A354F6800EEE8E6 /* sidbuilder.cpp in Sources */, - 8314D6F51A35502100EEE8E6 /* tod.cpp in Sources */, - 8314D7DE1A3563EE00EEE8E6 /* Filter6581.cpp in Sources */, - 8314D6931A354F4700EEE8E6 /* psiddrv.cpp in Sources */, - 8314D7891A3562A400EEE8E6 /* version.cc in Sources */, - 8314D78A1A3562A400EEE8E6 /* voice.cc in Sources */, - 8314D7331A35627200EEE8E6 /* MD5.cpp in Sources */, - 8314D7F51A3563EE00EEE8E6 /* version.cc in Sources */, - 835273981CDA844500BCCF86 /* md5Factory.cpp in Sources */, - 8314D7D81A3563EE00EEE8E6 /* EnvelopeGenerator.cpp in Sources */, - 8314D77D1A3562A400EEE8E6 /* pot.cc in Sources */, - 8314D7831A3562A400EEE8E6 /* sid.cc in Sources */, - 8314D6FB1A35502100EEE8E6 /* mos6510debug.cpp in Sources */, - 8314D68D1A354F4700EEE8E6 /* EventScheduler.cpp in Sources */, - 8314D6EA1A35502100EEE8E6 /* c64.cpp in Sources */, - 8314D7E21A3563EE00EEE8E6 /* FilterModelConfig.cpp in Sources */, - 8314D71B1A35503B00EEE8E6 /* prg.cpp in Sources */, - 8314D68F1A354F4700EEE8E6 /* mixer.cpp in Sources */, - 8314D78C1A3562A400EEE8E6 /* wave.cc in Sources */, - 8314D7ED1A3563EE00EEE8E6 /* test.cpp in Sources */, - 8314D7171A35503B00EEE8E6 /* MUS.cpp in Sources */, - 8314D7191A35503B00EEE8E6 /* p00.cpp in Sources */, - 8314D79F1A3562A400EEE8E6 /* resid-emu.cpp in Sources */, - 8314D6AF1A354F6800EEE8E6 /* SidConfig.cpp in Sources */, - 8314D71D1A35503B00EEE8E6 /* PSID.cpp in Sources */, - 83226DAE209951C8009DA017 /* Integrator8580.cpp in Sources */, - 8314D7F01A3563EE00EEE8E6 /* SID.cpp in Sources */, - 8314D7E61A3563EE00EEE8E6 /* OpAmp.cpp in Sources */, - 8314D6951A354F4700EEE8E6 /* reloc65.cpp in Sources */, - 8314D7F91A3563EE00EEE8E6 /* WaveformGenerator.cpp in Sources */, - 8314D7F31A3563EE00EEE8E6 /* Spline.cpp in Sources */, - 8314D79E1A3562A400EEE8E6 /* resid-builder.cpp in Sources */, - 8314D7E01A3563EE00EEE8E6 /* Filter8580.cpp in Sources */, - 8314D6991A354F4700EEE8E6 /* sidemu.cpp in Sources */, - 8314D6911A354F4700EEE8E6 /* player.cpp in Sources */, - 8314D7DC1A3563EE00EEE8E6 /* Filter.cpp in Sources */, - 8314D7FC1A3563EE00EEE8E6 /* residfp-emu.cpp in Sources */, - 8314D6FE1A35502100EEE8E6 /* mmu.cpp in Sources */, - 8314D7DA1A3563EE00EEE8E6 /* ExternalFilter.cpp in Sources */, - 8314D7D61A3563EE00EEE8E6 /* Dac.cpp in Sources */, - 8314D7741A3562A400EEE8E6 /* envelope.cc in Sources */, - 83226DA12099510D009DA017 /* SerialPort.cpp in Sources */, - 8314D6F91A35502100EEE8E6 /* mos6510.cpp in Sources */, - 8314D7221A35503B00EEE8E6 /* SidTuneBase.cpp in Sources */, - 8314D7F71A3563EE00EEE8E6 /* WaveformCalculator.cpp in Sources */, - 8314D6B51A354F6800EEE8E6 /* SidTune.cpp in Sources */, - 8314D6F11A35502100EEE8E6 /* mos6526.cpp in Sources */, - 8314D6F31A35502100EEE8E6 /* timer.cpp in Sources */, - 8314D7011A35502100EEE8E6 /* mos656x.cpp in Sources */, - 8352739C1CDA849F00BCCF86 /* SidInfo.cpp in Sources */, - 8314D7261A35503B00EEE8E6 /* SidTuneTools.cpp in Sources */, - 8314D7761A3562A400EEE8E6 /* extfilt.cc in Sources */, - 8314D7EB1A3563EE00EEE8E6 /* SincResampler.cpp in Sources */, - 8314D7FB1A3563EE00EEE8E6 /* residfp-builder.cpp in Sources */, - 8314D7781A3562A400EEE8E6 /* filter.cc in Sources */, - 8314D7E41A3563EE00EEE8E6 /* Integrator.cpp in Sources */, - 83226DAC209951C8009DA017 /* FilterModelConfig8580.cpp in Sources */, - 8314D6B31A354F6800EEE8E6 /* sidplayfp.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin XCBuildConfiguration section */ - 8314D6691A354E7800EEE8E6 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = NO; - CURRENT_PROJECT_VERSION = 1; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - HAVE_CONFIG_H, - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_INHIBIT_ALL_WARNINGS = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, - "sidplay-residfp-code/libsidplayfp/src", - ); - MACOSX_DEPLOYMENT_TARGET = 10.13; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = macosx; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 8314D66A1A354E7800EEE8E6 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = YES; - CURRENT_PROJECT_VERSION = 1; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = HAVE_CONFIG_H; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_INHIBIT_ALL_WARNINGS = YES; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, - "sidplay-residfp-code/libsidplayfp/src", - ); - MACOSX_DEPLOYMENT_TARGET = 10.13; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = macosx; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 8314D66C1A354E7800EEE8E6 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - DEFINES_MODULE = YES; - DEVELOPMENT_TEAM = ""; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - FRAMEWORK_VERSION = A; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, - libsidplay, - libsidplay/resid, - libsidplay/residfp, - "sidplay-residfp-code/libsidplayfp/src", - "sidplay-residfp-code/libsidplayfp/src/builders/residfp-builder/residfp", - ); - INFOPLIST_FILE = libsidplay/Info.plist; - INSTALL_PATH = "@loader_path/../Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cogx.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = sidplayfp; - PROVISIONING_PROFILE_SPECIFIER = ""; - SDKROOT = macosx; - SKIP_INSTALL = YES; - USE_HEADERMAP = NO; - }; - name = Debug; - }; - 8314D66D1A354E7800EEE8E6 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - CODE_SIGN_IDENTITY = ""; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - DEFINES_MODULE = YES; - DEVELOPMENT_TEAM = ""; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - FRAMEWORK_VERSION = A; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include, - libsidplay, - libsidplay/resid, - libsidplay/residfp, - "sidplay-residfp-code/libsidplayfp/src", - "sidplay-residfp-code/libsidplayfp/src/builders/residfp-builder/residfp", - ); - INFOPLIST_FILE = libsidplay/Info.plist; - INSTALL_PATH = "@loader_path/../Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cogx.$(PRODUCT_NAME:rfc1034identifier)"; - PRODUCT_NAME = sidplayfp; - PROVISIONING_PROFILE_SPECIFIER = ""; - SDKROOT = macosx; - SKIP_INSTALL = YES; - USE_HEADERMAP = NO; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 8314D64F1A354E7800EEE8E6 /* Build configuration list for PBXProject "sidplayfp" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 8314D6691A354E7800EEE8E6 /* Debug */, - 8314D66A1A354E7800EEE8E6 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 8314D66B1A354E7800EEE8E6 /* Build configuration list for PBXNativeTarget "sidplayfp" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 8314D66C1A354E7800EEE8E6 /* Debug */, - 8314D66D1A354E7800EEE8E6 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 8314D64C1A354E7800EEE8E6 /* Project object */; -} diff --git a/Frameworks/libsidplay/sidplayfp.xcodeproj/xcshareddata/xcschemes/sidplayfp.xcscheme b/Frameworks/libsidplay/sidplayfp.xcodeproj/xcshareddata/xcschemes/sidplayfp.xcscheme deleted file mode 100644 index 74fe3f33e..000000000 --- a/Frameworks/libsidplay/sidplayfp.xcodeproj/xcshareddata/xcschemes/sidplayfp.xcscheme +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - From 72702ed1e17f1152cad29820996de2f6491d8767 Mon Sep 17 00:00:00 2001 From: Dzmitry Neviadomski Date: Wed, 24 Feb 2021 11:48:01 +0300 Subject: [PATCH 2/5] Add libsidplayfp submodule and supporting files. --- .gitmodules | 3 + Frameworks/libsidplayfp/Info.plist | 22 + .../builders/resid-builder/resid/siddefs.h | 94 +++ .../resid-builder/resid/wave6581_PST.h | 533 ++++++++++++++++++ .../resid-builder/resid/wave6581_PS_.h | 533 ++++++++++++++++++ .../resid-builder/resid/wave6581_P_T.h | 533 ++++++++++++++++++ .../resid-builder/resid/wave6581__ST.h | 533 ++++++++++++++++++ .../resid-builder/resid/wave8580_PST.h | 533 ++++++++++++++++++ .../resid-builder/resid/wave8580_PS_.h | 533 ++++++++++++++++++ .../resid-builder/resid/wave8580_P_T.h | 533 ++++++++++++++++++ .../resid-builder/resid/wave8580__ST.h | 533 ++++++++++++++++++ .../residfp-builder/residfp/siddefs-fp.h | 62 ++ .../libsidplayfp/generated/src/config.h | 216 +++++++ .../generated/src/sidplayfp/sidversion.h | 14 + .../generated/src/sidtune/sidplayer1.bin | 407 +++++++++++++ .../generated/src/sidtune/sidplayer2.bin | 408 ++++++++++++++ Frameworks/libsidplayfp/sidplayfp | 1 + .../sidplayfp.xcodeproj/project.pbxproj | 307 ++++++++++ Frameworks/libsidplayfp/update-generated.sh | 21 + .../sidplay/sidplay.xcodeproj/project.pbxproj | 42 +- 20 files changed, 5830 insertions(+), 31 deletions(-) create mode 100644 Frameworks/libsidplayfp/Info.plist create mode 100644 Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/siddefs.h create mode 100644 Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave6581_PST.h create mode 100644 Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave6581_PS_.h create mode 100644 Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave6581_P_T.h create mode 100644 Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave6581__ST.h create mode 100644 Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave8580_PST.h create mode 100644 Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave8580_PS_.h create mode 100644 Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave8580_P_T.h create mode 100644 Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave8580__ST.h create mode 100644 Frameworks/libsidplayfp/generated/src/builders/residfp-builder/residfp/siddefs-fp.h create mode 100644 Frameworks/libsidplayfp/generated/src/config.h create mode 100644 Frameworks/libsidplayfp/generated/src/sidplayfp/sidversion.h create mode 100644 Frameworks/libsidplayfp/generated/src/sidtune/sidplayer1.bin create mode 100644 Frameworks/libsidplayfp/generated/src/sidtune/sidplayer2.bin create mode 160000 Frameworks/libsidplayfp/sidplayfp create mode 100644 Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj create mode 100755 Frameworks/libsidplayfp/update-generated.sh diff --git a/.gitmodules b/.gitmodules index 7f73699c7..00326eb1b 100644 --- a/.gitmodules +++ b/.gitmodules @@ -16,3 +16,6 @@ [submodule "Frameworks/shpakovski/MASShortcut"] path = Frameworks/shpakovski/MASShortcut url = https://github.com/shpakovski/MASShortcut.git +[submodule "Frameworks/libsidplayfp/sidplayfp"] + path = Frameworks/libsidplayfp/sidplayfp + url = https://github.com/libsidplayfp/libsidplayfp.git diff --git a/Frameworks/libsidplayfp/Info.plist b/Frameworks/libsidplayfp/Info.plist new file mode 100644 index 000000000..9bcb24442 --- /dev/null +++ b/Frameworks/libsidplayfp/Info.plist @@ -0,0 +1,22 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + $(PRODUCT_BUNDLE_PACKAGE_TYPE) + CFBundleShortVersionString + 1.0 + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + + diff --git a/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/siddefs.h b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/siddefs.h new file mode 100644 index 000000000..1830401df --- /dev/null +++ b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/siddefs.h @@ -0,0 +1,94 @@ +// --------------------------------------------------------------------------- +// This file is part of reSID, a MOS6581 SID emulator engine. +// Copyright (C) 2010 Dag Lem +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// --------------------------------------------------------------------------- + +#ifndef RESID_SIDDEFS_H +#define RESID_SIDDEFS_H + +// Compilation configuration. +#define RESID_INLINING 1 +#define RESID_INLINE inline +#define RESID_BRANCH_HINTS 1 + +#define NEW_8580_FILTER 1 + +// Compiler specifics. +#define HAVE_BOOL 1 +#define HAVE_BUILTIN_EXPECT 1 +#define HAVE_LOG1P 1 + +// Define bool, true, and false for C++ compilers that lack these keywords. +#if !HAVE_BOOL +typedef int bool; +const bool true = 1; +const bool false = 0; +#endif + +#if HAVE_LOG1P +#define HAS_LOG1P +#endif + +// Branch prediction macros, lifted off the Linux kernel. +#if RESID_BRANCH_HINTS && HAVE_BUILTIN_EXPECT +#define likely(x) __builtin_expect(!!(x), 1) +#define unlikely(x) __builtin_expect(!!(x), 0) +#else +#define likely(x) (x) +#define unlikely(x) (x) +#endif + +namespace reSID { + +// We could have used the smallest possible data type for each SID register, +// however this would give a slower engine because of data type conversions. +// An int is assumed to be at least 32 bits (necessary in the types reg24 +// and cycle_count). GNU does not support 16-bit machines +// (GNU Coding Standards: Portability between CPUs), so this should be +// a valid assumption. + +typedef unsigned int reg4; +typedef unsigned int reg8; +typedef unsigned int reg12; +typedef unsigned int reg16; +typedef unsigned int reg24; + +typedef int cycle_count; +typedef short short_point[2]; +typedef double double_point[2]; + +enum chip_model { MOS6581, MOS8580 }; + +enum sampling_method { + SAMPLE_FAST, + SAMPLE_INTERPOLATE, + SAMPLE_RESAMPLE, + SAMPLE_RESAMPLE_FASTMEM +}; + +} // namespace reSID + +extern "C" +{ +#ifndef RESID_VERSION_CC +extern const char* resid_version_string; +#else +const char* resid_version_string = VERSION; +#endif +} + +#endif // not RESID_SIDDEFS_H diff --git a/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave6581_PST.h b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave6581_PST.h new file mode 100644 index 000000000..781b053af --- /dev/null +++ b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave6581_PST.h @@ -0,0 +1,533 @@ +// --------------------------------------------------------------------------- +// This file is part of reSID, a MOS6581 SID emulator engine. +// Copyright (C) 2010 Dag Lem +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// --------------------------------------------------------------------------- + +{ +/* 0x000: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x008: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x010: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x018: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x020: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x028: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x030: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x038: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x040: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x048: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x050: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x058: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x060: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x068: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x070: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x078: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x080: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x088: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x090: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x098: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x100: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x108: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x110: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x118: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x120: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x128: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x130: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x138: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x140: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x148: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x150: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x158: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x160: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x168: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x170: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x178: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x180: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x188: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x190: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x198: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x200: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x208: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x210: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x218: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x220: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x228: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x230: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x238: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x240: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x248: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x250: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x258: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x260: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x268: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x270: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x278: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x280: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x288: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x290: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x298: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x300: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x308: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x310: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x318: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x320: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x328: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x330: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x338: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x340: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x348: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x350: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x358: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x360: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x368: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x370: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x378: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x380: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x388: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x390: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x398: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x3f0, +/* 0x400: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x408: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x410: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x418: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x420: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x428: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x430: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x438: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x440: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x448: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x450: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x458: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x460: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x468: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x470: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x478: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x480: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x488: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x490: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x498: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x500: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x508: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x510: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x518: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x520: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x528: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x530: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x538: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x540: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x548: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x550: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x558: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x560: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x568: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x570: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x578: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x580: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x588: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x590: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x598: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x600: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x608: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x610: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x618: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x620: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x628: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x630: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x638: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x640: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x648: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x650: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x658: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x660: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x668: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x670: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x678: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x680: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x688: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x690: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x698: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x700: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x708: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x710: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x718: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x720: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x728: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x730: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x738: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x740: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x748: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x750: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x758: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x760: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x768: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x770: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x778: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x780: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x788: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x790: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x798: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x200, +/* 0x7f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x300, +/* 0x7f8: */ 0x000, 0x000, 0x000, 0x780, 0x780, 0x7e0, 0x7f0, 0x7f0, +/* 0x800: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x808: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x810: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x818: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x820: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x828: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x830: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x838: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x840: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x848: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x850: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x858: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x860: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x868: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x870: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x878: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x880: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x888: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x890: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x898: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x900: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x908: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x910: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x918: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x920: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x928: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x930: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x938: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x940: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x948: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x950: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x958: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x960: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x968: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x970: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x978: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x980: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x988: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x990: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x998: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaa0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaa8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xab0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xab8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xac0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xac8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xad0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xad8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xae0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xae8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaf8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xba0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xba8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbe0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbe8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbf8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x3f0, +/* 0xc00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xca0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xca8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xce0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xce8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcf8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xda0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xda8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xde0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xde8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdf8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xea0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xea8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xeb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xeb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xec0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xec8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xed0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xed8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xee0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xee8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xef0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xef8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfa0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfa8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfe0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfe8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x200, +/* 0xff0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x300, +/* 0xff8: */ 0x000, 0x000, 0x000, 0x780, 0x780, 0x7e0, 0x7f0, 0x7f0, +}, diff --git a/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave6581_PS_.h b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave6581_PS_.h new file mode 100644 index 000000000..8efb6f095 --- /dev/null +++ b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave6581_PS_.h @@ -0,0 +1,533 @@ +// --------------------------------------------------------------------------- +// This file is part of reSID, a MOS6581 SID emulator engine. +// Copyright (C) 2010 Dag Lem +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// --------------------------------------------------------------------------- + +{ +/* 0x000: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x008: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x010: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x018: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x020: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x028: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x030: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x038: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x040: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x048: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x050: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x058: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x060: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x068: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x070: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x078: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x080: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x088: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x090: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x098: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x070, +/* 0x100: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x108: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x110: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x118: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x120: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x128: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x130: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x138: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x140: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x148: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x150: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x158: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x160: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x168: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x170: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x178: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, +/* 0x180: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x188: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x190: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x198: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, +/* 0x1c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x020, 0x1f0, +/* 0x200: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x208: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x210: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x218: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x220: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x228: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x230: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x238: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x240: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x248: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x250: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x258: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x260: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x268: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x270: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x278: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, +/* 0x280: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x288: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x290: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x298: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x2c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x2f0, +/* 0x300: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x308: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x310: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x318: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x320: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x328: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x330: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x338: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x340: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x348: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x350: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x358: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x360: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x368: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x370: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x378: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x370, +/* 0x380: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x388: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x390: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x398: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x3b0, +/* 0x3c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x3d0, +/* 0x3e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x3e0, +/* 0x3f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x300, 0x3f0, +/* 0x3f8: */ 0x000, 0x300, 0x380, 0x3f0, 0x3e0, 0x3f0, 0x3f0, 0x3f0, +/* 0x400: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x408: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x410: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x418: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x420: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x428: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x430: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x438: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x440: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x448: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x450: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x458: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x460: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x468: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x470: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x478: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, +/* 0x480: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x488: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x490: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x498: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x4f0, +/* 0x500: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x508: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x510: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x518: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x520: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x528: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x530: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x538: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x540: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x548: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x550: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x558: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x560: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x568: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x570: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x578: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x570, +/* 0x580: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x588: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x590: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x598: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x5b0, +/* 0x5c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x5d0, +/* 0x5e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x5e0, +/* 0x5f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, 0x5f0, +/* 0x5f8: */ 0x000, 0x400, 0x400, 0x5f0, 0x5c0, 0x5f0, 0x5f0, 0x5f0, +/* 0x600: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x608: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x610: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x618: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x620: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x628: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x630: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x638: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x640: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x648: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x650: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x658: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x660: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x668: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x670: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x678: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x670, +/* 0x680: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x688: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x690: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x698: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, 0x6b0, +/* 0x6c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, 0x400, 0x6d0, +/* 0x6e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0x6e8: */ 0x000, 0x000, 0x000, 0x400, 0x000, 0x400, 0x400, 0x6e0, +/* 0x6f0: */ 0x000, 0x000, 0x000, 0x400, 0x000, 0x600, 0x600, 0x6f0, +/* 0x6f8: */ 0x000, 0x600, 0x600, 0x6f0, 0x600, 0x6f0, 0x6f0, 0x6f0, +/* 0x700: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x708: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x710: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x718: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0x720: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x728: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0x730: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0x738: */ 0x000, 0x000, 0x000, 0x400, 0x000, 0x400, 0x600, 0x730, +/* 0x740: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x748: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0x750: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0x758: */ 0x000, 0x000, 0x000, 0x400, 0x000, 0x600, 0x600, 0x750, +/* 0x760: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x600, +/* 0x768: */ 0x000, 0x000, 0x000, 0x600, 0x000, 0x600, 0x600, 0x760, +/* 0x770: */ 0x000, 0x000, 0x000, 0x600, 0x000, 0x600, 0x600, 0x770, +/* 0x778: */ 0x000, 0x700, 0x700, 0x770, 0x700, 0x770, 0x770, 0x770, +/* 0x780: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x788: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x600, +/* 0x790: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x600, +/* 0x798: */ 0x000, 0x000, 0x000, 0x600, 0x000, 0x600, 0x600, 0x790, +/* 0x7a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x600, +/* 0x7a8: */ 0x000, 0x000, 0x000, 0x600, 0x000, 0x700, 0x700, 0x7a0, +/* 0x7b0: */ 0x000, 0x000, 0x000, 0x700, 0x000, 0x700, 0x700, 0x7b0, +/* 0x7b8: */ 0x400, 0x700, 0x700, 0x7b0, 0x780, 0x7b0, 0x7b0, 0x7b0, +/* 0x7c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x700, +/* 0x7c8: */ 0x000, 0x000, 0x000, 0x700, 0x000, 0x700, 0x700, 0x7c0, +/* 0x7d0: */ 0x000, 0x000, 0x000, 0x700, 0x400, 0x700, 0x700, 0x7d0, +/* 0x7d8: */ 0x400, 0x700, 0x780, 0x7d0, 0x780, 0x7d0, 0x7d0, 0x7d0, +/* 0x7e0: */ 0x000, 0x400, 0x400, 0x780, 0x600, 0x780, 0x780, 0x7e0, +/* 0x7e8: */ 0x600, 0x780, 0x780, 0x7e0, 0x7c0, 0x7e0, 0x7e0, 0x7e0, +/* 0x7f0: */ 0x700, 0x7c0, 0x7c0, 0x7f0, 0x7e0, 0x7f0, 0x7f0, 0x7f0, +/* 0x7f8: */ 0x7e0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, +/* 0x800: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x808: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x810: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x818: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x820: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x828: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x830: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x838: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x840: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x848: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x850: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x858: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x860: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x868: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x870: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x878: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x880: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x888: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x890: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x898: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x070, +/* 0x900: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x908: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x910: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x918: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x920: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x928: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x930: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x938: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x940: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x948: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x950: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x958: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x960: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x968: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x970: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x978: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, +/* 0x980: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x988: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x990: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x998: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, +/* 0x9c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x020, 0x1f0, +/* 0xa00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, +/* 0xa80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaa0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaa8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xab0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xab8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0xac0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xac8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xad0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xad8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xae0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xae8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaf8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x2f0, +/* 0xb00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x370, +/* 0xb80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xba0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xba8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x3b0, +/* 0xbc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x3d0, +/* 0xbe0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbe8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x3e0, +/* 0xbf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x300, 0x3f0, +/* 0xbf8: */ 0x000, 0x300, 0x380, 0x3f0, 0x3e0, 0x3f0, 0x3f0, 0x3f0, +/* 0xc00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, +/* 0xc80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xca0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xca8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xce0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xce8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcf8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x4f0, +/* 0xd00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x570, +/* 0xd80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xda0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xda8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x5b0, +/* 0xdc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x5d0, +/* 0xde0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xde8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x5e0, +/* 0xdf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, 0x5f0, +/* 0xdf8: */ 0x000, 0x400, 0x400, 0x5f0, 0x5c0, 0x5f0, 0x5f0, 0x5f0, +/* 0xe00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x670, +/* 0xe80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xea0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xea8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xeb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xeb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, 0x6b0, +/* 0xec0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xec8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xed0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xed8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, 0x6d0, +/* 0xee0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0xee8: */ 0x000, 0x000, 0x000, 0x400, 0x000, 0x400, 0x400, 0x6e0, +/* 0xef0: */ 0x000, 0x000, 0x000, 0x400, 0x000, 0x600, 0x600, 0x6f0, +/* 0xef8: */ 0x000, 0x600, 0x600, 0x6f0, 0x600, 0x6f0, 0x6f0, 0x6f0, +/* 0xf00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0xf20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0xf30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0xf38: */ 0x000, 0x000, 0x000, 0x400, 0x000, 0x400, 0x600, 0x730, +/* 0xf40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0xf50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0xf58: */ 0x000, 0x000, 0x000, 0x400, 0x000, 0x600, 0x600, 0x750, +/* 0xf60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x600, +/* 0xf68: */ 0x000, 0x000, 0x000, 0x600, 0x000, 0x600, 0x600, 0x760, +/* 0xf70: */ 0x000, 0x000, 0x000, 0x600, 0x000, 0x600, 0x600, 0x770, +/* 0xf78: */ 0x000, 0x700, 0x700, 0x770, 0x700, 0x770, 0x770, 0x770, +/* 0xf80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x600, +/* 0xf90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x600, +/* 0xf98: */ 0x000, 0x000, 0x000, 0x600, 0x000, 0x600, 0x600, 0x790, +/* 0xfa0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x600, +/* 0xfa8: */ 0x000, 0x000, 0x000, 0x600, 0x000, 0x700, 0x700, 0x7a0, +/* 0xfb0: */ 0x000, 0x000, 0x000, 0x700, 0x000, 0x700, 0x700, 0x7b0, +/* 0xfb8: */ 0x400, 0x700, 0x700, 0x7b0, 0x780, 0x7b0, 0x7b0, 0x7b0, +/* 0xfc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x700, +/* 0xfc8: */ 0x000, 0x000, 0x000, 0x700, 0x000, 0x700, 0x700, 0x7c0, +/* 0xfd0: */ 0x000, 0x000, 0x000, 0x700, 0x400, 0x700, 0x700, 0x7d0, +/* 0xfd8: */ 0x400, 0x700, 0x780, 0x7d0, 0x780, 0x7d0, 0x7d0, 0x7d0, +/* 0xfe0: */ 0x000, 0x400, 0x400, 0x780, 0x600, 0x780, 0x780, 0x7e0, +/* 0xfe8: */ 0x600, 0x780, 0x780, 0x7e0, 0x7c0, 0x7e0, 0x7e0, 0x7e0, +/* 0xff0: */ 0x700, 0x7c0, 0x7c0, 0x7f0, 0x7c0, 0x7f0, 0x7f0, 0x7f0, +/* 0xff8: */ 0x7e0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, +}, diff --git a/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave6581_P_T.h b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave6581_P_T.h new file mode 100644 index 000000000..93667e576 --- /dev/null +++ b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave6581_P_T.h @@ -0,0 +1,533 @@ +// --------------------------------------------------------------------------- +// This file is part of reSID, a MOS6581 SID emulator engine. +// Copyright (C) 2010 Dag Lem +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// --------------------------------------------------------------------------- + +{ +/* 0x000: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x008: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x010: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x018: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x020: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x028: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x030: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x038: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x040: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x048: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x050: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x058: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x060: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x068: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x070: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x078: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x080: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x088: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x090: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x098: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x100: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x108: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x110: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x118: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x120: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x128: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x130: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x138: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x140: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x148: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x150: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x158: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x160: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x168: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x170: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x178: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x180: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x188: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x190: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x198: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x200, 0x380, 0x3f0, +/* 0x200: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x208: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x210: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x218: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x220: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x228: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x230: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x238: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x240: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x248: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x250: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x258: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x260: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x268: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x270: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x278: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x280: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x288: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x290: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x298: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2f8: */ 0x000, 0x000, 0x000, 0x400, 0x000, 0x400, 0x400, 0x5f0, +/* 0x300: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x308: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x310: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x318: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x320: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x328: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x330: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x338: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x340: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x348: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x350: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x358: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x360: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x368: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0x370: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0x378: */ 0x000, 0x000, 0x000, 0x600, 0x000, 0x600, 0x600, 0x6f0, +/* 0x380: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x388: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x390: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x398: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0x3a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x600, +/* 0x3b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x600, +/* 0x3b8: */ 0x000, 0x000, 0x000, 0x600, 0x000, 0x600, 0x700, 0x770, +/* 0x3c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x600, +/* 0x3d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x600, +/* 0x3d8: */ 0x000, 0x000, 0x000, 0x700, 0x400, 0x700, 0x700, 0x7b0, +/* 0x3e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, 0x700, +/* 0x3e8: */ 0x000, 0x400, 0x400, 0x700, 0x600, 0x700, 0x780, 0x7d0, +/* 0x3f0: */ 0x000, 0x400, 0x600, 0x780, 0x600, 0x780, 0x780, 0x7e0, +/* 0x3f8: */ 0x700, 0x7c0, 0x7c0, 0x7f0, 0x7e0, 0x7f0, 0x7f0, 0x7f0, +/* 0x400: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x408: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x410: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x418: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x420: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x428: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x430: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x438: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x440: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x448: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x450: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x458: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x460: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x468: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x470: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x478: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x480: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x488: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x490: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x498: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x4c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x4e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x4f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x4f8: */ 0x000, 0x000, 0x000, 0x800, 0x800, 0x800, 0x800, 0x9f0, +/* 0x500: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x508: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x510: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x518: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x520: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x528: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x530: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x538: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x540: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x548: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x550: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x558: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x560: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x568: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x570: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x578: */ 0x000, 0x800, 0x800, 0x800, 0x800, 0xa00, 0xa00, 0xaf0, +/* 0x580: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x588: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x590: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x598: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x5a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, 0x800, 0x800, +/* 0x5b0: */ 0x000, 0x000, 0x000, 0x800, 0x000, 0x800, 0x800, 0xa00, +/* 0x5b8: */ 0x000, 0x800, 0x800, 0xa00, 0x800, 0xa00, 0xb00, 0xb70, +/* 0x5c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x5c8: */ 0x000, 0x000, 0x000, 0x800, 0x000, 0x800, 0x800, 0xa00, +/* 0x5d0: */ 0x000, 0x000, 0x000, 0x800, 0x000, 0x800, 0x800, 0xa00, +/* 0x5d8: */ 0x000, 0x800, 0x800, 0xa00, 0x800, 0xb00, 0xb00, 0xbb0, +/* 0x5e0: */ 0x000, 0x000, 0x000, 0x800, 0x800, 0x800, 0x800, 0xb00, +/* 0x5e8: */ 0x800, 0x800, 0x800, 0xb00, 0x800, 0xb00, 0xb80, 0xbd0, +/* 0x5f0: */ 0x800, 0x800, 0x800, 0xb80, 0xa00, 0xb80, 0xb80, 0xbe0, +/* 0x5f8: */ 0xa00, 0xb80, 0xbc0, 0xbf0, 0xbe0, 0xbf0, 0xbf0, 0xbf0, +/* 0x600: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x608: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x610: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x618: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x620: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x628: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x630: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x638: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0xc00, +/* 0x640: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x648: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x650: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x658: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, 0x800, 0xc00, +/* 0x660: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x668: */ 0x000, 0x000, 0x000, 0x800, 0x000, 0x800, 0x800, 0xc00, +/* 0x670: */ 0x000, 0x000, 0x000, 0x800, 0x000, 0x800, 0x800, 0xc00, +/* 0x678: */ 0x000, 0x800, 0x800, 0xc00, 0xc00, 0xc00, 0xc00, 0xcf0, +/* 0x680: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x688: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x690: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x698: */ 0x000, 0x000, 0x000, 0x800, 0x000, 0x800, 0x800, 0xc00, +/* 0x6a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x6a8: */ 0x000, 0x000, 0x000, 0x800, 0x000, 0x800, 0x800, 0xc00, +/* 0x6b0: */ 0x000, 0x000, 0x000, 0x800, 0x000, 0x800, 0xc00, 0xc00, +/* 0x6b8: */ 0x800, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xd00, 0xd70, +/* 0x6c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x6c8: */ 0x000, 0x000, 0x000, 0x800, 0x800, 0x800, 0xc00, 0xc00, +/* 0x6d0: */ 0x000, 0x800, 0x800, 0xc00, 0x800, 0xc00, 0xc00, 0xc00, +/* 0x6d8: */ 0x800, 0xc00, 0xc00, 0xc00, 0xc00, 0xd00, 0xd00, 0xdb0, +/* 0x6e0: */ 0x000, 0x800, 0x800, 0xc00, 0x800, 0xc00, 0xc00, 0xd00, +/* 0x6e8: */ 0x800, 0xc00, 0xc00, 0xd00, 0xc00, 0xd00, 0xd80, 0xdd0, +/* 0x6f0: */ 0xc00, 0xc00, 0xc00, 0xd00, 0xc00, 0xd80, 0xd80, 0xde0, +/* 0x6f8: */ 0xc00, 0xd80, 0xdc0, 0xdf0, 0xdc0, 0xdf0, 0xdf0, 0xdf0, +/* 0x700: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x708: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x710: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x718: */ 0x000, 0x000, 0x000, 0x800, 0x800, 0xc00, 0xc00, 0xe00, +/* 0x720: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x728: */ 0x000, 0x800, 0x800, 0xc00, 0x800, 0xc00, 0xc00, 0xe00, +/* 0x730: */ 0x000, 0x800, 0x800, 0xc00, 0x800, 0xc00, 0xc00, 0xe00, +/* 0x738: */ 0x800, 0xc00, 0xc00, 0xe00, 0xc00, 0xe00, 0xe00, 0xe70, +/* 0x740: */ 0x000, 0x000, 0x000, 0x800, 0x000, 0x800, 0x800, 0xc00, +/* 0x748: */ 0x000, 0x800, 0x800, 0xc00, 0x800, 0xc00, 0xc00, 0xe00, +/* 0x750: */ 0x000, 0x800, 0x800, 0xc00, 0x800, 0xc00, 0xc00, 0xe00, +/* 0x758: */ 0xc00, 0xc00, 0xc00, 0xe00, 0xe00, 0xe00, 0xe00, 0xeb0, +/* 0x760: */ 0x800, 0x800, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xe00, +/* 0x768: */ 0xc00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xed0, +/* 0x770: */ 0xc00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe80, 0xe80, 0xee0, +/* 0x778: */ 0xe00, 0xe80, 0xec0, 0xef0, 0xec0, 0xef0, 0xef0, 0xef0, +/* 0x780: */ 0x000, 0x000, 0x000, 0x800, 0x800, 0x800, 0x800, 0xc00, +/* 0x788: */ 0x800, 0x800, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xf00, +/* 0x790: */ 0x800, 0xc00, 0xc00, 0xc00, 0xc00, 0xe00, 0xe00, 0xf00, +/* 0x798: */ 0xc00, 0xe00, 0xe00, 0xf00, 0xe00, 0xf00, 0xf00, 0xf30, +/* 0x7a0: */ 0x800, 0xc00, 0xc00, 0xe00, 0xc00, 0xe00, 0xe00, 0xf00, +/* 0x7a8: */ 0xc00, 0xe00, 0xe00, 0xf00, 0xe00, 0xf00, 0xf00, 0xf50, +/* 0x7b0: */ 0xe00, 0xe00, 0xe00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf60, +/* 0x7b8: */ 0xf00, 0xf00, 0xf40, 0xf70, 0xf40, 0xf70, 0xf70, 0xf70, +/* 0x7c0: */ 0xc00, 0xc00, 0xc00, 0xe00, 0xe00, 0xe00, 0xe00, 0xf00, +/* 0x7c8: */ 0xe00, 0xe00, 0xe00, 0xf80, 0xf00, 0xf80, 0xf80, 0xf90, +/* 0x7d0: */ 0xe00, 0xf00, 0xf00, 0xf80, 0xf00, 0xf80, 0xf80, 0xfa0, +/* 0x7d8: */ 0xf00, 0xf80, 0xf80, 0xfb0, 0xf80, 0xfb0, 0xfb0, 0xfb0, +/* 0x7e0: */ 0xe00, 0xf00, 0xf00, 0xf80, 0xf00, 0xf80, 0xfc0, 0xfc0, +/* 0x7e8: */ 0xf80, 0xfc0, 0xfc0, 0xfd0, 0xfc0, 0xfd0, 0xfd0, 0xfd0, +/* 0x7f0: */ 0xf80, 0xfc0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, +/* 0x7f8: */ 0xfe0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, +/* 0x800: */ 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xfe0, +/* 0x808: */ 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfc0, 0xf80, +/* 0x810: */ 0xfd0, 0xfd0, 0xfd0, 0xfc0, 0xfd0, 0xfc0, 0xfc0, 0xf80, +/* 0x818: */ 0xfc0, 0xfc0, 0xfc0, 0xf00, 0xf80, 0xf00, 0xf00, 0xe00, +/* 0x820: */ 0xfb0, 0xfb0, 0xfb0, 0xf80, 0xfb0, 0xf80, 0xf80, 0xf00, +/* 0x828: */ 0xfa0, 0xf80, 0xf80, 0xf00, 0xf80, 0xf00, 0xf00, 0xe00, +/* 0x830: */ 0xf90, 0xf80, 0xf80, 0xf00, 0xf80, 0xf00, 0xe00, 0xe00, +/* 0x838: */ 0xf00, 0xe00, 0xe00, 0xe00, 0xe00, 0xc00, 0xc00, 0xc00, +/* 0x840: */ 0xf70, 0xf70, 0xf70, 0xf40, 0xf70, 0xf40, 0xf00, 0xf00, +/* 0x848: */ 0xf60, 0xf00, 0xf00, 0xf00, 0xf00, 0xe00, 0xe00, 0xe00, +/* 0x850: */ 0xf50, 0xf00, 0xf00, 0xe00, 0xf00, 0xe00, 0xe00, 0xc00, +/* 0x858: */ 0xf00, 0xe00, 0xe00, 0xc00, 0xe00, 0xc00, 0xc00, 0x800, +/* 0x860: */ 0xf30, 0xf00, 0xf00, 0xe00, 0xf00, 0xe00, 0xe00, 0xc00, +/* 0x868: */ 0xf00, 0xe00, 0xe00, 0xc00, 0xc00, 0xc00, 0xc00, 0x800, +/* 0x870: */ 0xf00, 0xe00, 0xc00, 0xc00, 0xc00, 0xc00, 0x800, 0x800, +/* 0x878: */ 0xc00, 0x800, 0x800, 0x800, 0x800, 0x000, 0x000, 0x000, +/* 0x880: */ 0xef0, 0xef0, 0xef0, 0xec0, 0xef0, 0xec0, 0xe80, 0xe00, +/* 0x888: */ 0xee0, 0xe80, 0xe80, 0xe00, 0xe00, 0xe00, 0xe00, 0xc00, +/* 0x890: */ 0xed0, 0xe80, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xc00, +/* 0x898: */ 0xe00, 0xe00, 0xc00, 0xc00, 0xc00, 0xc00, 0x800, 0x800, +/* 0x8a0: */ 0xeb0, 0xe00, 0xe00, 0xe00, 0xe00, 0xc00, 0xc00, 0xc00, +/* 0x8a8: */ 0xe00, 0xc00, 0xc00, 0x800, 0xc00, 0x800, 0x800, 0x000, +/* 0x8b0: */ 0xe00, 0xc00, 0xc00, 0x800, 0xc00, 0x800, 0x800, 0x000, +/* 0x8b8: */ 0xc00, 0x800, 0x800, 0x000, 0x800, 0x000, 0x000, 0x000, +/* 0x8c0: */ 0xe70, 0xe00, 0xe00, 0xc00, 0xe00, 0xc00, 0xc00, 0x800, +/* 0x8c8: */ 0xe00, 0xc00, 0xc00, 0x800, 0xc00, 0x800, 0x800, 0x000, +/* 0x8d0: */ 0xe00, 0xc00, 0xc00, 0x800, 0xc00, 0x800, 0x800, 0x000, +/* 0x8d8: */ 0x800, 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8e0: */ 0xe00, 0xc00, 0xc00, 0x800, 0x800, 0x000, 0x000, 0x000, +/* 0x8e8: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8f0: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x900: */ 0xdf0, 0xdf0, 0xdf0, 0xdc0, 0xdf0, 0xdc0, 0xd80, 0xc00, +/* 0x908: */ 0xde0, 0xd80, 0xd80, 0xc00, 0xd80, 0xc00, 0xc00, 0xc00, +/* 0x910: */ 0xdd0, 0xd80, 0xd00, 0xc00, 0xd00, 0xc00, 0xc00, 0x800, +/* 0x918: */ 0xd00, 0xc00, 0xc00, 0x800, 0xc00, 0x800, 0x800, 0x000, +/* 0x920: */ 0xdb0, 0xd00, 0xd00, 0xc00, 0xc00, 0xc00, 0xc00, 0x800, +/* 0x928: */ 0xc00, 0xc00, 0xc00, 0x800, 0xc00, 0x800, 0x800, 0x000, +/* 0x930: */ 0xc00, 0xc00, 0x800, 0x800, 0x800, 0x000, 0x000, 0x000, +/* 0x938: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x940: */ 0xd70, 0xd00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0x800, +/* 0x948: */ 0xc00, 0xc00, 0x800, 0x000, 0x800, 0x000, 0x000, 0x000, +/* 0x950: */ 0xc00, 0x800, 0x800, 0x000, 0x800, 0x000, 0x000, 0x000, +/* 0x958: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x960: */ 0xc00, 0x800, 0x800, 0x000, 0x800, 0x000, 0x000, 0x000, +/* 0x968: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x970: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x978: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x980: */ 0xcf0, 0xc00, 0xc00, 0xc00, 0xc00, 0x800, 0x800, 0x000, +/* 0x988: */ 0xc00, 0x800, 0x800, 0x000, 0x800, 0x000, 0x000, 0x000, +/* 0x990: */ 0xc00, 0x800, 0x800, 0x000, 0x800, 0x000, 0x000, 0x000, +/* 0x998: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9a0: */ 0xc00, 0x800, 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9c0: */ 0xc00, 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa00: */ 0xbf0, 0xbf0, 0xbf0, 0xbe0, 0xbf0, 0xbc0, 0xbc0, 0xa00, +/* 0xa08: */ 0xbe0, 0xbc0, 0xb80, 0xa00, 0xb80, 0xa00, 0x800, 0x800, +/* 0xa10: */ 0xbd0, 0xb80, 0xb00, 0x800, 0xb00, 0x800, 0x800, 0x800, +/* 0xa18: */ 0xb00, 0x800, 0x800, 0x800, 0x800, 0x000, 0x000, 0x000, +/* 0xa20: */ 0xbb0, 0xb00, 0xb00, 0x800, 0xa00, 0x800, 0x800, 0x000, +/* 0xa28: */ 0xa00, 0x800, 0x800, 0x000, 0x800, 0x000, 0x000, 0x000, +/* 0xa30: */ 0xa00, 0x800, 0x800, 0x000, 0x800, 0x000, 0x000, 0x000, +/* 0xa38: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa40: */ 0xb70, 0xb00, 0xa00, 0x800, 0xa00, 0x800, 0x800, 0x000, +/* 0xa48: */ 0xa00, 0x800, 0x800, 0x000, 0x800, 0x000, 0x000, 0x000, +/* 0xa50: */ 0x800, 0x800, 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa60: */ 0x800, 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa80: */ 0xaf0, 0xa00, 0xa00, 0x800, 0x800, 0x800, 0x800, 0x000, +/* 0xa88: */ 0x800, 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa90: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaa0: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaa8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xab0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xab8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xac0: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xac8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xad0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xad8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xae0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xae8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaf8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb00: */ 0x9f0, 0x900, 0x800, 0x800, 0x800, 0x000, 0x000, 0x000, +/* 0xb08: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb10: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb20: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb40: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb80: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xba0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xba8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbe0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbe8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbf8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc00: */ 0x7f0, 0x7f0, 0x7f0, 0x7e0, 0x7f0, 0x7c0, 0x7c0, 0x700, +/* 0xc08: */ 0x7e0, 0x7c0, 0x780, 0x600, 0x780, 0x600, 0x600, 0x000, +/* 0xc10: */ 0x7d0, 0x780, 0x780, 0x600, 0x700, 0x400, 0x400, 0x000, +/* 0xc18: */ 0x700, 0x400, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc20: */ 0x7b0, 0x780, 0x700, 0x400, 0x700, 0x400, 0x000, 0x000, +/* 0xc28: */ 0x600, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc30: */ 0x600, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc40: */ 0x770, 0x700, 0x700, 0x000, 0x600, 0x000, 0x000, 0x000, +/* 0xc48: */ 0x600, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc50: */ 0x600, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc60: */ 0x400, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc80: */ 0x6f0, 0x600, 0x600, 0x000, 0x600, 0x000, 0x000, 0x000, +/* 0xc88: */ 0x400, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc90: */ 0x400, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xca0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xca8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xce0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xce8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcf8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd00: */ 0x5f0, 0x580, 0x400, 0x000, 0x400, 0x000, 0x000, 0x000, +/* 0xd08: */ 0x400, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xda0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xda8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xde0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xde8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdf8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe00: */ 0x3f0, 0x3c0, 0x300, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xea0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xea8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xeb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xeb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xec0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xec8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xed0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xed8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xee0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xee8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xef0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xef8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfa0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfa8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfe0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfe8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xff0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xff8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +}, diff --git a/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave6581__ST.h b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave6581__ST.h new file mode 100644 index 000000000..dc578b716 --- /dev/null +++ b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave6581__ST.h @@ -0,0 +1,533 @@ +// --------------------------------------------------------------------------- +// This file is part of reSID, a MOS6581 SID emulator engine. +// Copyright (C) 2010 Dag Lem +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// --------------------------------------------------------------------------- + +{ +/* 0x000: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x008: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x010: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x018: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x020: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x028: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x030: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x038: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x040: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x048: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x050: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x058: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x060: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x068: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x070: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x078: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x080: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x088: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x090: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x098: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x0c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0f8: */ 0x000, 0x000, 0x000, 0x000, 0x070, 0x070, 0x070, 0x070, +/* 0x100: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x108: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x110: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x118: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x120: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x128: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x130: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x138: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x140: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x148: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x150: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x158: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x160: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x168: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x170: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x178: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x180: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x188: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x190: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x198: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x1c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1f8: */ 0x0e0, 0x0e0, 0x0e0, 0x0e0, 0x0f0, 0x0f0, 0x0f0, 0x0f0, +/* 0x200: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x208: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x210: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x218: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x220: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x228: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x230: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x238: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x240: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x248: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x250: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x258: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x260: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x268: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x270: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x278: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x280: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x288: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x290: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x298: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x2c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2f8: */ 0x000, 0x000, 0x000, 0x000, 0x070, 0x070, 0x070, 0x070, +/* 0x300: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x308: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x310: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x318: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x320: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x328: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x330: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x338: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x340: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x348: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x350: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x358: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x360: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x368: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x370: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x378: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x380: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x388: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x390: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x398: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x3c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3f0: */ 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, +/* 0x3f8: */ 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1f0, 0x1f0, 0x3f0, 0x3f0, +/* 0x400: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x408: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x410: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x418: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x420: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x428: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x430: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x438: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x440: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x448: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x450: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x458: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x460: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x468: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x470: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x478: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x480: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x488: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x490: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x498: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x4c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4f8: */ 0x000, 0x000, 0x000, 0x000, 0x070, 0x070, 0x070, 0x070, +/* 0x500: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x508: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x510: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x518: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x520: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x528: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x530: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x538: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x540: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x548: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x550: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x558: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x560: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x568: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x570: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x578: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x580: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x588: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x590: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x598: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x5c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5f8: */ 0x0e0, 0x0e0, 0x0e0, 0x0e0, 0x0f0, 0x0f0, 0x0f0, 0x1f0, +/* 0x600: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x608: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x610: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x618: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x620: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x628: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x630: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x638: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x640: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x648: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x650: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x658: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x660: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x668: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x670: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x678: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x680: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x688: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x690: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x698: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x6c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6f8: */ 0x000, 0x000, 0x000, 0x000, 0x070, 0x070, 0x070, 0x070, +/* 0x700: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x708: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x710: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x718: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x720: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x728: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x730: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x738: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x740: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x748: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x750: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x758: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x760: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x768: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x770: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x778: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x780: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x788: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x790: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x798: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x7c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7e0: */ 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, +/* 0x7e8: */ 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, +/* 0x7f0: */ 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, +/* 0x7f8: */ 0x3e0, 0x3e0, 0x3f0, 0x3f0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, +/* 0x800: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x808: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x810: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x818: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x820: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x828: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x830: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x838: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x840: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x848: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x850: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x858: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x860: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x868: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x870: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x878: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x880: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x888: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x890: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x898: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x8c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8f8: */ 0x000, 0x000, 0x000, 0x000, 0x070, 0x070, 0x070, 0x070, +/* 0x900: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x908: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x910: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x918: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x920: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x928: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x930: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x938: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x940: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x948: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x950: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x958: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x960: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x968: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x970: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x978: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x980: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x988: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x990: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x998: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x9c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9f8: */ 0x0e0, 0x0e0, 0x0e0, 0x0e0, 0x0f0, 0x0f0, 0x0f0, 0x0f0, +/* 0xa00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0xa80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaa0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaa8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xab0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xab8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0xac0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xac8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xad0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xad8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xae0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xae8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaf8: */ 0x000, 0x000, 0x000, 0x000, 0x070, 0x070, 0x070, 0x070, +/* 0xb00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0xb40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0xb80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xba0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xba8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0xbc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbe0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbe8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbf0: */ 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, +/* 0xbf8: */ 0x1e0, 0x1e0, 0x1e0, 0x1e0, 0x1f0, 0x1f0, 0x3f0, 0x3f0, +/* 0xc00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0xc80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xca0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xca8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0xcc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xce0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xce8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcf8: */ 0x000, 0x000, 0x000, 0x000, 0x070, 0x070, 0x070, 0x070, +/* 0xd00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0xd40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0xd80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xda0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xda8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0xdc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xde0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xde8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdf8: */ 0x0e0, 0x0e0, 0x0e0, 0x0e0, 0x0f0, 0x0f0, 0x0f0, 0x1f0, +/* 0xe00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0xe80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xea0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xea8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xeb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xeb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0xec0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xec8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xed0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xed8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xee0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xee8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xef0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xef8: */ 0x000, 0x000, 0x000, 0x000, 0x070, 0x070, 0x070, 0x070, +/* 0xf00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0xf40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0xf80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfa0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfa8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0xfc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfe0: */ 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, +/* 0xfe8: */ 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, +/* 0xff0: */ 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, +/* 0xff8: */ 0x3e0, 0x3e0, 0x3f0, 0x3f0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, +}, diff --git a/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave8580_PST.h b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave8580_PST.h new file mode 100644 index 000000000..93015d5aa --- /dev/null +++ b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave8580_PST.h @@ -0,0 +1,533 @@ +// --------------------------------------------------------------------------- +// This file is part of reSID, a MOS6581 SID emulator engine. +// Copyright (C) 2010 Dag Lem +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// --------------------------------------------------------------------------- + +{ +/* 0x000: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x008: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x010: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x018: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x020: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x028: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x030: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x038: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x040: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x048: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x050: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x058: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x060: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x068: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x070: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x078: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x080: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x088: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x090: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x098: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x100: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x108: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x110: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x118: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x120: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x128: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x130: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x138: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x140: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x148: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x150: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x158: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x160: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x168: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x170: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x178: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x180: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x188: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x190: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x198: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x200: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x208: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x210: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x218: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x220: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x228: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x230: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x238: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x240: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x248: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x250: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x258: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x260: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x268: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x270: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x278: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x280: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x288: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x290: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x298: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x300: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x308: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x310: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x318: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x320: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x328: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x330: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x338: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x340: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x348: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x350: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x358: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x360: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x368: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x370: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x378: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x380: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x388: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x390: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x398: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x1f0, +/* 0x400: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x408: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x410: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x418: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x420: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x428: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x430: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x438: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x440: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x448: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x450: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x458: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x460: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x468: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x470: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x478: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x480: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x488: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x490: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x498: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x500: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x508: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x510: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x518: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x520: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x528: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x530: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x538: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x540: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x548: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x550: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x558: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x560: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x568: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x570: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x578: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x580: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x588: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x590: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x598: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x600: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x608: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x610: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x618: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x620: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x628: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x630: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x638: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x640: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x648: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x650: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x658: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x660: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x668: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x670: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x678: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x680: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x688: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x690: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x698: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x700: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x708: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x710: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x718: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x720: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x728: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x730: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x738: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x740: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x748: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x750: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x758: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x760: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x768: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x770: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x778: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x780: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x788: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x790: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x798: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x200, 0x700, +/* 0x7f0: */ 0x600, 0x200, 0x700, 0x700, 0x700, 0x700, 0x700, 0x780, +/* 0x7f8: */ 0x780, 0x780, 0x7c0, 0x7c0, 0x7e0, 0x7e0, 0x7f0, 0x7f0, +/* 0x800: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x808: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x810: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x818: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x820: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x828: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x830: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x838: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x840: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x848: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x850: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x858: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x860: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x868: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x870: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x878: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x880: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x888: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x890: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x898: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x900: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x908: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x910: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x918: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x920: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x928: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x930: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x938: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x940: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x948: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x950: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x958: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x960: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x968: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x970: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x978: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x980: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x988: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x990: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x998: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaa0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaa8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xab0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xab8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xac0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xac8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xad0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xad8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xae0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xae8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaf8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xba0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xba8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbe0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbe8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbf8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x080, 0x1e0, 0x3f0, +/* 0xc00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xca0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xca8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xce0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xce8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcf8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xda0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xda8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xde0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xde8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0xdf8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x8c0, 0x9f0, +/* 0xe00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, 0x800, +/* 0xe40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, 0x800, +/* 0xe60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, 0x000, +/* 0xe68: */ 0x000, 0x000, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xe70: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xe78: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xe80: */ 0x000, 0x000, 0x800, 0x000, 0x000, 0x800, 0x800, 0x800, +/* 0xe88: */ 0x800, 0x000, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xe90: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xe98: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xea0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xea8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xeb0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xeb8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xec0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xec8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xed0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xed8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xee0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xee8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xc00, 0xc00, +/* 0xef0: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xef8: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xcf0, +/* 0xf00: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xf08: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xf10: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xf18: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xf20: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xf28: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xf30: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xf38: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xf40: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xf48: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xf50: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xf58: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xf60: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xf68: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xe00, +/* 0xf70: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xf78: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe30, +/* 0xf80: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xf88: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xf90: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xf98: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xfa0: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xfa8: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xfb0: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xf00, 0xf00, +/* 0xfb8: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0xfc0: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0xfc8: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0xfd0: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0xfd8: */ 0xf00, 0xf00, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, +/* 0xfe0: */ 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, +/* 0xfe8: */ 0xf80, 0xf80, 0xf80, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, +/* 0xff0: */ 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfe0, 0xfe0, 0xfe0, +/* 0xff8: */ 0xfe0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, +}, diff --git a/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave8580_PS_.h b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave8580_PS_.h new file mode 100644 index 000000000..19af95013 --- /dev/null +++ b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave8580_PS_.h @@ -0,0 +1,533 @@ +// --------------------------------------------------------------------------- +// This file is part of reSID, a MOS6581 SID emulator engine. +// Copyright (C) 2010 Dag Lem +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// --------------------------------------------------------------------------- + +{ +/* 0x000: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x008: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x010: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x018: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x020: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x028: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x030: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x038: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x040: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x048: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x050: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x058: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x060: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x068: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x070: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x078: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, +/* 0x080: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x088: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x090: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x098: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x0c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x0f0, +/* 0x100: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x108: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x110: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x118: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x120: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x128: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x130: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x138: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x140: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x148: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x150: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x158: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x160: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x168: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x170: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x178: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x070, +/* 0x180: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x188: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x190: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x198: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, +/* 0x1c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x1e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x070, 0x070, 0x1f0, +/* 0x200: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x208: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x210: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x218: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x220: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x228: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x230: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x238: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x240: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x248: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x250: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x258: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x260: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x268: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x270: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x278: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, +/* 0x280: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x288: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x290: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x298: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, +/* 0x2c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x2e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, 0x0f0, +/* 0x300: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x308: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x310: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x318: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x320: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x328: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x330: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x338: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x340: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x348: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x350: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x358: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x360: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x368: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x370: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x378: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x170, +/* 0x380: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x388: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x390: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x398: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x3b0, +/* 0x3c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x3d0, +/* 0x3e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x3e0, +/* 0x3f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x3f0, +/* 0x3f8: */ 0x000, 0x0c0, 0x1c0, 0x3f0, 0x1e0, 0x3f0, 0x3f0, 0x3f0, +/* 0x400: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x408: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x410: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x418: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x420: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x428: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x430: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x438: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x440: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x448: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x450: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x458: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x460: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x468: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x470: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x478: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, +/* 0x480: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x488: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x490: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x498: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x4c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x0f0, +/* 0x500: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x508: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x510: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x518: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x520: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x528: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x530: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x538: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x540: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x548: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x550: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x558: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x560: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x568: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x570: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x578: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x070, +/* 0x580: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x588: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x590: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x598: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x0b0, +/* 0x5c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x0a0, +/* 0x5e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x5e0, +/* 0x5f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x5f0, +/* 0x5f8: */ 0x000, 0x000, 0x000, 0x5f0, 0x0c0, 0x5f0, 0x5f0, 0x5f0, +/* 0x600: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x608: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x610: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x618: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x620: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x628: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x630: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x638: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x640: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x648: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x650: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x658: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x660: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x668: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x670: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x678: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x470, +/* 0x680: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x688: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x690: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x698: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x430, +/* 0x6c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x650, +/* 0x6e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x6e0, +/* 0x6f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x6f0, +/* 0x6f8: */ 0x000, 0x400, 0x400, 0x6f0, 0x400, 0x6f0, 0x6f0, 0x6f0, +/* 0x700: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x708: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x710: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x718: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x720: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x728: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x730: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x738: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x630, +/* 0x740: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x748: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x750: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x758: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, 0x610, +/* 0x760: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0x768: */ 0x000, 0x000, 0x000, 0x400, 0x000, 0x400, 0x400, 0x700, +/* 0x770: */ 0x000, 0x000, 0x400, 0x400, 0x400, 0x400, 0x400, 0x700, +/* 0x778: */ 0x400, 0x600, 0x600, 0x770, 0x600, 0x770, 0x770, 0x770, +/* 0x780: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x788: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0x790: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, 0x600, +/* 0x798: */ 0x000, 0x400, 0x400, 0x600, 0x400, 0x600, 0x600, 0x790, +/* 0x7a0: */ 0x000, 0x400, 0x400, 0x400, 0x400, 0x400, 0x400, 0x600, +/* 0x7a8: */ 0x400, 0x400, 0x400, 0x600, 0x600, 0x600, 0x600, 0x780, +/* 0x7b0: */ 0x400, 0x600, 0x600, 0x600, 0x600, 0x600, 0x600, 0x780, +/* 0x7b8: */ 0x600, 0x700, 0x700, 0x780, 0x700, 0x790, 0x7b0, 0x7b0, +/* 0x7c0: */ 0x600, 0x600, 0x600, 0x600, 0x600, 0x600, 0x600, 0x700, +/* 0x7c8: */ 0x600, 0x600, 0x600, 0x700, 0x600, 0x700, 0x700, 0x7c0, +/* 0x7d0: */ 0x600, 0x700, 0x700, 0x700, 0x700, 0x700, 0x700, 0x7c0, +/* 0x7d8: */ 0x700, 0x780, 0x780, 0x7c0, 0x780, 0x7c0, 0x7c0, 0x7d0, +/* 0x7e0: */ 0x700, 0x780, 0x780, 0x780, 0x780, 0x780, 0x780, 0x7c0, +/* 0x7e8: */ 0x780, 0x7c0, 0x7c0, 0x7e0, 0x7c0, 0x7e0, 0x7e0, 0x7e0, +/* 0x7f0: */ 0x7c0, 0x7c0, 0x7c0, 0x7e0, 0x7e0, 0x7f0, 0x7f0, 0x7f0, +/* 0x7f8: */ 0x7e0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, 0xff0, +/* 0x800: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x808: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x810: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x818: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x820: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x828: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x830: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x838: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x840: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x848: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x850: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x858: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x860: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x868: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x870: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x878: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, +/* 0x880: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x888: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x890: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x898: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x8c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x8f0, +/* 0x900: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x908: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x910: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x918: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x920: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x928: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x930: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x938: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x940: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x948: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x950: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x958: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x960: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x968: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x970: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x978: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x870, +/* 0x980: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x988: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x990: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x998: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x830, +/* 0x9c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, 0x8d0, +/* 0x9e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x9e8: */ 0x000, 0x000, 0x000, 0x800, 0x000, 0x800, 0x800, 0x8e0, +/* 0x9f0: */ 0x000, 0x000, 0x000, 0x800, 0x800, 0x800, 0x800, 0x8f0, +/* 0x9f8: */ 0x800, 0x800, 0x800, 0x9f0, 0x800, 0x9f0, 0x9f0, 0x9f0, +/* 0xa00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0xa40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0xa70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0xa78: */ 0x000, 0x000, 0x000, 0x800, 0x000, 0x800, 0x800, 0x870, +/* 0xa80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0xaa0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaa8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0xab0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0xab8: */ 0x000, 0x000, 0x000, 0x800, 0x800, 0x800, 0x800, 0x830, +/* 0xac0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xac8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0xad0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, 0x800, 0x800, +/* 0xad8: */ 0x000, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x810, +/* 0xae0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xae8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x840, +/* 0xaf0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x870, +/* 0xaf8: */ 0x800, 0x800, 0x800, 0x870, 0x800, 0x8f0, 0xaf0, 0xaf0, +/* 0xb00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0xb10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0xb18: */ 0x000, 0x000, 0x000, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xb20: */ 0x000, 0x000, 0x000, 0x800, 0x000, 0x000, 0x800, 0x800, +/* 0xb28: */ 0x000, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xb30: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xb38: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x830, +/* 0xb40: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xb48: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xb50: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xb58: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x810, +/* 0xb60: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xb68: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xa00, +/* 0xb70: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xa00, +/* 0xb78: */ 0x800, 0x800, 0x800, 0xa00, 0x800, 0xa30, 0xb70, 0xb70, +/* 0xb80: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xb88: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xb90: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xb98: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xb10, +/* 0xba0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xba8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xb00, +/* 0xbb0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xb00, +/* 0xbb8: */ 0x800, 0xa00, 0xa00, 0xb00, 0xa00, 0xb80, 0xb90, 0xbb0, +/* 0xbc0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xa00, +/* 0xbc8: */ 0x800, 0x800, 0x800, 0xa00, 0x800, 0xa00, 0xa00, 0xb80, +/* 0xbd0: */ 0x800, 0xa00, 0xa00, 0xa00, 0xa00, 0xa00, 0xa00, 0xb80, +/* 0xbd8: */ 0xa00, 0xb00, 0xb00, 0xb80, 0xb00, 0xbc0, 0xbc0, 0xbd0, +/* 0xbe0: */ 0xa00, 0xb00, 0xb00, 0xb00, 0xb00, 0xb80, 0xb80, 0xbc0, +/* 0xbe8: */ 0xb00, 0xb80, 0xb80, 0xbc0, 0xb80, 0xbc0, 0xbe0, 0xbe0, +/* 0xbf0: */ 0xb80, 0xbc0, 0xbc0, 0xbe0, 0xbc0, 0xbe0, 0xbe0, 0xbf0, +/* 0xbf8: */ 0xbe0, 0xbf0, 0xbf0, 0xbf0, 0xbf0, 0xbf0, 0xbf0, 0xbf0, +/* 0xc00: */ 0x000, 0x000, 0x000, 0x800, 0x000, 0x000, 0x000, 0x800, +/* 0xc08: */ 0x000, 0x000, 0x000, 0x800, 0x000, 0x000, 0x000, 0x800, +/* 0xc10: */ 0x000, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xc18: */ 0x000, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xc20: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xc28: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xc30: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xc38: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x810, +/* 0xc40: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xc48: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xc50: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xc58: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xc60: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xc68: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xc70: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xc78: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xc70, +/* 0xc80: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xc88: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xc90: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xc98: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xca0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xca8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xcb0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xcb8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xc00, 0xc30, +/* 0xcc0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xcc8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xc00, +/* 0xcd0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xc00, +/* 0xcd8: */ 0x800, 0x800, 0x800, 0xc00, 0x800, 0xc00, 0xc00, 0xc10, +/* 0xce0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xc00, +/* 0xce8: */ 0x800, 0x800, 0x800, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xcf0: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc70, +/* 0xcf8: */ 0xc00, 0xc00, 0xc00, 0xc70, 0xc00, 0xcf0, 0xcf0, 0xcf0, +/* 0xd00: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xd08: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xd10: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xd18: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xc00, +/* 0xd20: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xd28: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xc00, +/* 0xd30: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xc00, 0xc00, +/* 0xd38: */ 0x800, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc30, +/* 0xd40: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xc00, +/* 0xd48: */ 0x800, 0x800, 0x800, 0xc00, 0x800, 0xc00, 0xc00, 0xc00, +/* 0xd50: */ 0x800, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xd58: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc10, +/* 0xd60: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xd68: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xd70: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xd78: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc10, 0xc70, 0xd70, +/* 0xd80: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xd88: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xd90: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xd98: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xda0: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xda8: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xd00, +/* 0xdb0: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xd00, +/* 0xdb8: */ 0xc00, 0xc00, 0xc00, 0xd00, 0xc00, 0xd00, 0xd80, 0xdb0, +/* 0xdc0: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xdc8: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xd80, +/* 0xdd0: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xd80, +/* 0xdd8: */ 0xc00, 0xc00, 0xc00, 0xd80, 0xd00, 0xd80, 0xd80, 0xdd0, +/* 0xde0: */ 0xc00, 0xc00, 0xc00, 0xd00, 0xc00, 0xd00, 0xd00, 0xdc0, +/* 0xde8: */ 0xd00, 0xd80, 0xd80, 0xdc0, 0xd80, 0xdc0, 0xdc0, 0xde0, +/* 0xdf0: */ 0xd80, 0xdc0, 0xdc0, 0xde0, 0xdc0, 0xde0, 0xde0, 0xdf0, +/* 0xdf8: */ 0xde0, 0xdf0, 0xdf0, 0xdf0, 0xdf0, 0xdf0, 0xdf0, 0xdf0, +/* 0xe00: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xe08: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xe10: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xe18: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xe20: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xe28: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xe30: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xe38: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xe30, +/* 0xe40: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xe48: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xe50: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xe00, +/* 0xe58: */ 0xc00, 0xc00, 0xc00, 0xe00, 0xc00, 0xe00, 0xe00, 0xe10, +/* 0xe60: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xe00, +/* 0xe68: */ 0xc00, 0xc00, 0xc00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xe70: */ 0xc00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xe78: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe10, 0xe30, 0xe70, +/* 0xe80: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xe00, +/* 0xe88: */ 0xc00, 0xc00, 0xc00, 0xe00, 0xc00, 0xe00, 0xe00, 0xe00, +/* 0xe90: */ 0xc00, 0xc00, 0xc00, 0xe00, 0xc00, 0xe00, 0xe00, 0xe00, +/* 0xe98: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xea0: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xea8: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xeb0: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xeb8: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xeb0, +/* 0xec0: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xec8: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xed0: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xed8: */ 0xe00, 0xe00, 0xe00, 0xe80, 0xe00, 0xe80, 0xe80, 0xed0, +/* 0xee0: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xec0, +/* 0xee8: */ 0xe00, 0xe00, 0xe00, 0xec0, 0xe80, 0xec0, 0xec0, 0xee0, +/* 0xef0: */ 0xe80, 0xe80, 0xe80, 0xec0, 0xec0, 0xee0, 0xee0, 0xef0, +/* 0xef8: */ 0xec0, 0xef0, 0xef0, 0xef0, 0xef0, 0xef0, 0xef0, 0xef0, +/* 0xf00: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xf08: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xf10: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xf18: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xf00, +/* 0xf20: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xf00, +/* 0xf28: */ 0xe00, 0xe00, 0xe00, 0xf00, 0xe00, 0xf00, 0xf00, 0xf00, +/* 0xf30: */ 0xe00, 0xe00, 0xe00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0xf38: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf30, +/* 0xf40: */ 0xe00, 0xe00, 0xe00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0xf48: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0xf50: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0xf58: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf50, +/* 0xf60: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0xf68: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf40, 0xf40, 0xf60, +/* 0xf70: */ 0xf00, 0xf00, 0xf00, 0xf40, 0xf00, 0xf40, 0xf60, 0xf70, +/* 0xf78: */ 0xf40, 0xf60, 0xf60, 0xf70, 0xf70, 0xf70, 0xf70, 0xf70, +/* 0xf80: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf80, +/* 0xf88: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf80, 0xf80, 0xf80, +/* 0xf90: */ 0xf00, 0xf00, 0xf00, 0xf80, 0xf00, 0xf80, 0xf80, 0xf80, +/* 0xf98: */ 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf90, +/* 0xfa0: */ 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, +/* 0xfa8: */ 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xfa0, +/* 0xfb0: */ 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xfb0, +/* 0xfb8: */ 0xf80, 0xfa0, 0xfa0, 0xfb0, 0xfb0, 0xfb0, 0xfb0, 0xfb0, +/* 0xfc0: */ 0xf80, 0xf80, 0xf80, 0xfc0, 0xf80, 0xfc0, 0xfc0, 0xfc0, +/* 0xfc8: */ 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, +/* 0xfd0: */ 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfd0, +/* 0xfd8: */ 0xfc0, 0xfc0, 0xfc0, 0xfd0, 0xfd0, 0xfd0, 0xfd0, 0xfd0, +/* 0xfe0: */ 0xfc0, 0xfc0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, +/* 0xfe8: */ 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, +/* 0xff0: */ 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, +/* 0xff8: */ 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, +}, diff --git a/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave8580_P_T.h b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave8580_P_T.h new file mode 100644 index 000000000..bcca37ff2 --- /dev/null +++ b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave8580_P_T.h @@ -0,0 +1,533 @@ +// --------------------------------------------------------------------------- +// This file is part of reSID, a MOS6581 SID emulator engine. +// Copyright (C) 2010 Dag Lem +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// --------------------------------------------------------------------------- + +{ +/* 0x000: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x008: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x010: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x018: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x020: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x028: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x030: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x038: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x040: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x048: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x050: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x058: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x060: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x068: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x070: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x078: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x080: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x088: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x090: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x098: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x070, +/* 0x100: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x108: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x110: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x118: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x120: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x128: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x130: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x138: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x140: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x148: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x150: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x158: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x160: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x168: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x170: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x178: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x180: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x188: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x190: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x198: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1f8: */ 0x000, 0x000, 0x000, 0x1c0, 0x000, 0x3c0, 0x3f0, 0x3f0, +/* 0x200: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x208: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x210: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x218: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x220: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x228: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x230: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x238: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x240: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x248: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x250: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x258: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x260: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x268: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x270: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x278: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x280: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x288: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x290: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x298: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2f8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x0c0, 0x5e0, 0x5f0, +/* 0x300: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x308: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x310: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x318: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x320: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x328: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x330: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x338: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x340: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x348: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x350: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x358: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x360: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x368: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x370: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0x378: */ 0x000, 0x000, 0x000, 0x400, 0x400, 0x600, 0x600, 0x6f0, +/* 0x380: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x388: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x390: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x398: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, +/* 0x3a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, 0x400, +/* 0x3b0: */ 0x000, 0x000, 0x000, 0x400, 0x400, 0x400, 0x400, 0x600, +/* 0x3b8: */ 0x400, 0x400, 0x600, 0x600, 0x600, 0x600, 0x700, 0x770, +/* 0x3c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x400, 0x400, 0x400, +/* 0x3c8: */ 0x400, 0x400, 0x400, 0x400, 0x400, 0x600, 0x600, 0x600, +/* 0x3d0: */ 0x400, 0x400, 0x400, 0x600, 0x600, 0x600, 0x600, 0x700, +/* 0x3d8: */ 0x600, 0x600, 0x600, 0x700, 0x700, 0x700, 0x780, 0x7b0, +/* 0x3e0: */ 0x600, 0x600, 0x600, 0x700, 0x600, 0x700, 0x700, 0x700, +/* 0x3e8: */ 0x700, 0x700, 0x700, 0x780, 0x780, 0x780, 0x780, 0x7c0, +/* 0x3f0: */ 0x780, 0x780, 0x780, 0x7c0, 0x780, 0x7c0, 0x7c0, 0x7e0, +/* 0x3f8: */ 0x7c0, 0x7e0, 0x7e0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, +/* 0x400: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x408: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x410: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x418: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x420: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x428: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x430: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x438: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x440: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x448: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x450: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x458: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x460: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x468: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x470: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x478: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x480: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x488: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x490: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x498: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, 0x800, 0x800, +/* 0x4c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x4d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x4d8: */ 0x000, 0x000, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x4e0: */ 0x000, 0x000, 0x000, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x4e8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x4f0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x4f8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x8e0, 0x9f0, +/* 0x500: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x508: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x510: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x518: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x800, +/* 0x520: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x528: */ 0x000, 0x000, 0x000, 0x800, 0x000, 0x800, 0x800, 0x800, +/* 0x530: */ 0x000, 0x000, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x538: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x540: */ 0x000, 0x000, 0x000, 0x800, 0x000, 0x800, 0x800, 0x800, +/* 0x548: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x550: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x558: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x560: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x568: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x570: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x578: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xaf0, +/* 0x580: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x588: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x590: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x598: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x5a0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x5a8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x5b0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x5b8: */ 0x800, 0x800, 0x800, 0xa00, 0xa00, 0xa00, 0xa00, 0xb70, +/* 0x5c0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x5c8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xa00, +/* 0x5d0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xa00, 0xa00, +/* 0x5d8: */ 0xa00, 0xa00, 0xa00, 0xb00, 0xa00, 0xb00, 0xb00, 0xbb0, +/* 0x5e0: */ 0xa00, 0xa00, 0xa00, 0xa00, 0xa00, 0xa00, 0xb00, 0xb00, +/* 0x5e8: */ 0xa00, 0xb00, 0xb00, 0xb80, 0xb00, 0xb80, 0xb80, 0xbc0, +/* 0x5f0: */ 0xb00, 0xb80, 0xb80, 0xb80, 0xb80, 0xbc0, 0xbc0, 0xbe0, +/* 0x5f8: */ 0xbc0, 0xbc0, 0xbe0, 0xbf0, 0xbe0, 0xbf0, 0xbf0, 0xbf0, +/* 0x600: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x608: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x610: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x618: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x620: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x628: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x630: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x638: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xc00, 0xc00, +/* 0x640: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x648: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x650: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xc00, +/* 0x658: */ 0x800, 0x800, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x660: */ 0x800, 0x800, 0x800, 0xc00, 0x800, 0xc00, 0xc00, 0xc00, +/* 0x668: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x670: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x678: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xcf0, +/* 0x680: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0xc00, 0xc00, +/* 0x688: */ 0xc00, 0x800, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x690: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x698: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x6a0: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x6a8: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x6b0: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x6b8: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xd70, +/* 0x6c0: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x6c8: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x6d0: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x6d8: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xd00, 0xd00, 0xd90, +/* 0x6e0: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xd00, +/* 0x6e8: */ 0xc00, 0xd00, 0xd00, 0xd00, 0xd00, 0xd80, 0xd80, 0xdc0, +/* 0x6f0: */ 0xd00, 0xd00, 0xd80, 0xd80, 0xd80, 0xdc0, 0xdc0, 0xde0, +/* 0x6f8: */ 0xdc0, 0xdc0, 0xde0, 0xdf0, 0xde0, 0xdf0, 0xdf0, 0xdf0, +/* 0x700: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x708: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x710: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x718: */ 0xc00, 0xc00, 0xc00, 0xe00, 0xc00, 0xe00, 0xe00, 0xe00, +/* 0x720: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xe00, +/* 0x728: */ 0xc00, 0xc00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0x730: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0x738: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe70, +/* 0x740: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0x748: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0x750: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0x758: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe80, +/* 0x760: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0x768: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe80, 0xec0, +/* 0x770: */ 0xe00, 0xe00, 0xe00, 0xe80, 0xe80, 0xe80, 0xec0, 0xee0, +/* 0x778: */ 0xec0, 0xec0, 0xec0, 0xee0, 0xee0, 0xef0, 0xef0, 0xef0, +/* 0x780: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0x788: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xf00, 0xf00, 0xf00, +/* 0x790: */ 0xe00, 0xe00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0x798: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0x7a0: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0x7a8: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf40, +/* 0x7b0: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf40, +/* 0x7b8: */ 0xf00, 0xf40, 0xf40, 0xf60, 0xf60, 0xf70, 0xf70, 0xf70, +/* 0x7c0: */ 0xf00, 0xf00, 0xf00, 0xf80, 0xf00, 0xf80, 0xf80, 0xf80, +/* 0x7c8: */ 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, +/* 0x7d0: */ 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, +/* 0x7d8: */ 0xf80, 0xf80, 0xf80, 0xfa0, 0xfa0, 0xfb0, 0xfb0, 0xfb0, +/* 0x7e0: */ 0xf80, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, +/* 0x7e8: */ 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfd0, 0xfd0, 0xfd0, +/* 0x7f0: */ 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, +/* 0x7f8: */ 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, +/* 0x800: */ 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, +/* 0x808: */ 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfc0, +/* 0x810: */ 0xfd0, 0xfd0, 0xfd0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, +/* 0x818: */ 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xf80, +/* 0x820: */ 0xfb0, 0xfb0, 0xfb0, 0xfa0, 0xfa0, 0xf80, 0xf80, 0xf80, +/* 0x828: */ 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, +/* 0x830: */ 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, +/* 0x838: */ 0xf80, 0xf80, 0xf80, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0x840: */ 0xf70, 0xf70, 0xf70, 0xf60, 0xf60, 0xf40, 0xf40, 0xf00, +/* 0x848: */ 0xf40, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0x850: */ 0xf40, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0x858: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0x860: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0x868: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xe00, 0xe00, +/* 0x870: */ 0xf00, 0xf00, 0xf00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0x878: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0x880: */ 0xef0, 0xef0, 0xef0, 0xee0, 0xee0, 0xec0, 0xec0, 0xe80, +/* 0x888: */ 0xee0, 0xec0, 0xe80, 0xe80, 0xe80, 0xe00, 0xe00, 0xe00, +/* 0x890: */ 0xec0, 0xe80, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0x898: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0x8a0: */ 0xe80, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0x8a8: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0x8b0: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0x8b8: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0x8c0: */ 0xe70, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0x8c8: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0x8d0: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xc00, 0xc00, +/* 0x8d8: */ 0xe00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x8e0: */ 0xe00, 0xe00, 0xe00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x8e8: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x8f0: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x8f8: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x900: */ 0xdf0, 0xdf0, 0xdf0, 0xde0, 0xdf0, 0xde0, 0xdc0, 0xdc0, +/* 0x908: */ 0xde0, 0xdc0, 0xdc0, 0xd80, 0xd80, 0xd80, 0xd00, 0xd00, +/* 0x910: */ 0xdc0, 0xd80, 0xd80, 0xd00, 0xd00, 0xd00, 0xd00, 0xc00, +/* 0x918: */ 0xd00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x920: */ 0xd90, 0xd00, 0xd00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x928: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x930: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x938: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x940: */ 0xd70, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x948: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x950: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x958: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x960: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x968: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x970: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0x800, +/* 0x978: */ 0xc00, 0xc00, 0xc00, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x980: */ 0xcf0, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x988: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x990: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0x998: */ 0xc00, 0xc00, 0xc00, 0x800, 0xc00, 0x800, 0x800, 0x800, +/* 0x9a0: */ 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0x800, 0x800, +/* 0x9a8: */ 0xc00, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x9b0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x9b8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x9c0: */ 0xc00, 0xc00, 0xc00, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x9c8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x9d0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x9d8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x9e0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x9e8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x9f0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0x9f8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xa00: */ 0xbf0, 0xbf0, 0xbf0, 0xbe0, 0xbf0, 0xbe0, 0xbc0, 0xbc0, +/* 0xa08: */ 0xbe0, 0xbc0, 0xbc0, 0xb80, 0xb80, 0xb80, 0xb80, 0xb00, +/* 0xa10: */ 0xbc0, 0xb80, 0xb80, 0xb00, 0xb80, 0xb00, 0xb00, 0xb00, +/* 0xa18: */ 0xb00, 0xb00, 0xa00, 0xa00, 0xa00, 0xa00, 0xa00, 0xa00, +/* 0xa20: */ 0xbb0, 0xb00, 0xb00, 0xa00, 0xb00, 0xa00, 0xa00, 0xa00, +/* 0xa28: */ 0xa00, 0xa00, 0xa00, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xa30: */ 0xa00, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xa38: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xa40: */ 0xb70, 0xb00, 0xa00, 0xa00, 0xa00, 0x800, 0x800, 0x800, +/* 0xa48: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xa50: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xa58: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xa60: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xa68: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xa70: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xa78: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xa80: */ 0xaf0, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xa88: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xa90: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xa98: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xaa0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xaa8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xab0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xab8: */ 0x800, 0x800, 0x800, 0x000, 0x800, 0x000, 0x000, 0x000, +/* 0xac0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xac8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x000, 0x000, +/* 0xad0: */ 0x800, 0x800, 0x000, 0x000, 0x800, 0x000, 0x000, 0x000, +/* 0xad8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xae0: */ 0x800, 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xae8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaf8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb00: */ 0x9f0, 0x9e0, 0x880, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xb08: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xb10: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xb18: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x000, 0x000, 0x000, +/* 0xb20: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x000, 0x000, 0x000, +/* 0xb28: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb30: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb40: */ 0x800, 0x800, 0x800, 0x000, 0x800, 0x000, 0x000, 0x000, +/* 0xb48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb80: */ 0x800, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xba0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xba8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbe0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbe8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbf8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc00: */ 0x7f0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, 0x7e0, 0x7e0, 0x7c0, +/* 0xc08: */ 0x7e0, 0x7c0, 0x7c0, 0x780, 0x7c0, 0x780, 0x780, 0x780, +/* 0xc10: */ 0x7c0, 0x780, 0x780, 0x780, 0x780, 0x700, 0x700, 0x700, +/* 0xc18: */ 0x780, 0x700, 0x700, 0x600, 0x700, 0x600, 0x600, 0x600, +/* 0xc20: */ 0x7b0, 0x780, 0x700, 0x700, 0x700, 0x600, 0x600, 0x600, +/* 0xc28: */ 0x700, 0x600, 0x600, 0x600, 0x600, 0x400, 0x400, 0x400, +/* 0xc30: */ 0x600, 0x600, 0x600, 0x400, 0x400, 0x400, 0x400, 0x400, +/* 0xc38: */ 0x400, 0x400, 0x400, 0x000, 0x400, 0x000, 0x000, 0x000, +/* 0xc40: */ 0x770, 0x700, 0x600, 0x600, 0x600, 0x600, 0x400, 0x400, +/* 0xc48: */ 0x600, 0x400, 0x400, 0x400, 0x400, 0x000, 0x000, 0x000, +/* 0xc50: */ 0x400, 0x400, 0x400, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc60: */ 0x400, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc80: */ 0x6f0, 0x640, 0x600, 0x400, 0x400, 0x000, 0x000, 0x000, +/* 0xc88: */ 0x400, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xca0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xca8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xce0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xce8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcf8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd00: */ 0x5f0, 0x5e0, 0x4c0, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xda0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xda8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xde0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xde8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdf8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe00: */ 0x3f0, 0x3f0, 0x3e0, 0x000, 0x1c0, 0x000, 0x000, 0x000, +/* 0xe08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xea0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xea8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xeb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xeb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xec0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xec8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xed0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xed8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xee0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xee8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xef0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xef8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf00: */ 0x070, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xf98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfa0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfa8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfe0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xfe8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xff0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xff8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +}, diff --git a/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave8580__ST.h b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave8580__ST.h new file mode 100644 index 000000000..05fb3c886 --- /dev/null +++ b/Frameworks/libsidplayfp/generated/src/builders/resid-builder/resid/wave8580__ST.h @@ -0,0 +1,533 @@ +// --------------------------------------------------------------------------- +// This file is part of reSID, a MOS6581 SID emulator engine. +// Copyright (C) 2010 Dag Lem +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// --------------------------------------------------------------------------- + +{ +/* 0x000: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x008: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x010: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x018: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x020: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x028: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x030: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x038: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x040: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x048: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x050: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x058: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x060: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x068: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x070: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x078: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x080: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x088: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x090: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x098: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x0f8: */ 0x000, 0x000, 0x000, 0x000, 0x070, 0x070, 0x070, 0x070, +/* 0x100: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x108: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x110: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x118: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x120: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x128: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x130: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x138: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x140: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x148: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x150: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x158: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x160: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x168: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x170: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x178: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x180: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x188: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x190: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x198: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x1f8: */ 0x0e0, 0x0e0, 0x0e0, 0x0e0, 0x0f0, 0x0f0, 0x0f0, 0x0f0, +/* 0x200: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x208: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x210: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x218: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x220: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x228: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x230: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x238: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x240: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x248: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x250: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x258: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x260: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x268: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x270: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x278: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x280: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x288: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x290: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x298: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x2f8: */ 0x000, 0x000, 0x000, 0x000, 0x070, 0x070, 0x070, 0x070, +/* 0x300: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x308: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x310: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x318: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x320: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x328: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x330: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x338: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x340: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x348: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x350: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x358: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x360: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x368: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x370: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x378: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x380: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x388: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x390: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x398: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x3c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x3f0: */ 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, +/* 0x3f8: */ 0x1e0, 0x1e0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, +/* 0x400: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x408: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x410: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x418: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x420: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x428: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x430: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x438: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x440: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x448: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x450: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x458: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x460: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x468: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x470: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x478: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x480: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x488: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x490: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x498: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x4f8: */ 0x000, 0x000, 0x000, 0x000, 0x070, 0x070, 0x070, 0x070, +/* 0x500: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x508: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x510: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x518: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x520: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x528: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x530: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x538: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x540: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x548: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x550: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x558: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x560: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x568: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x570: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x578: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x580: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x588: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x590: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x598: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x5f8: */ 0x0e0, 0x0e0, 0x0e0, 0x0e0, 0x0f0, 0x0f0, 0x0f0, 0x1f0, +/* 0x600: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x608: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x610: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x618: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x620: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x628: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x630: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x638: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x640: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x648: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x650: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x658: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x660: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x668: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x670: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x678: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x680: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x688: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x690: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x698: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x6f8: */ 0x000, 0x000, 0x000, 0x000, 0x070, 0x070, 0x070, 0x070, +/* 0x700: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x708: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x710: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x718: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x720: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x728: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x730: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x738: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x740: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x748: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x750: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x758: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x760: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x768: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x770: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x778: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x780: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x788: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x790: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x798: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0x7c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x7e0: */ 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, +/* 0x7e8: */ 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, 0x380, +/* 0x7f0: */ 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3c0, 0x3e0, +/* 0x7f8: */ 0x7f0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, 0x7f0, +/* 0x800: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x808: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x810: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x818: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x820: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x828: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x830: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x838: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x840: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x848: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x850: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x858: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x860: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x868: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x870: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x878: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x880: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x888: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x890: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x898: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x8f8: */ 0x000, 0x000, 0x000, 0x000, 0x070, 0x070, 0x070, 0x070, +/* 0x900: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x908: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x910: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x918: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x920: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x928: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x930: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x938: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x940: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x948: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x950: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x958: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x960: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x968: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x970: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x978: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0x980: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x988: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x990: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x998: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9a0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9a8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9b0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9b8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9c0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9c8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9d0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9d8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9e0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9e8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9f0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0x9f8: */ 0x0e0, 0x0e0, 0x0e0, 0x0e0, 0x0f0, 0x0f0, 0x0f0, 0x0f0, +/* 0xa00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0xa80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xa98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaa0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaa8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xab0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xab8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xac0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xac8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xad0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xad8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xae0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xae8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xaf8: */ 0x000, 0x000, 0x000, 0x000, 0x070, 0x070, 0x070, 0x070, +/* 0xb00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0xb80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xb98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xba0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xba8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0xbc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbe0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbe8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xbf0: */ 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, 0x1c0, +/* 0xbf8: */ 0x1e0, 0x1e0, 0x1f0, 0x1f0, 0x1f0, 0x1f0, 0x3f0, 0x3f0, +/* 0xc00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0xc80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xc98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xca0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xca8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xce0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xce8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xcf8: */ 0x000, 0x000, 0x000, 0x000, 0x070, 0x070, 0x070, 0x070, +/* 0xd00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd78: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x030, 0x030, +/* 0xd80: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd88: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd90: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xd98: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xda0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xda8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdb0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdb8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x010, +/* 0xdc0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdc8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdd0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdd8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xde0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xde8: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdf0: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xdf8: */ 0x0e0, 0x0e0, 0x0e0, 0x0e0, 0x0f0, 0x0f0, 0x1f0, 0x1f0, +/* 0xe00: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe08: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe10: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe18: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe20: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe28: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe30: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe38: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe40: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe48: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe50: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe58: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe60: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe68: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe70: */ 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, 0x000, +/* 0xe78: */ 0x000, 0x000, 0x000, 0x000, 0x800, 0x000, 0x830, 0x830, +/* 0xe80: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xe88: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xe90: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xe98: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xea0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xea8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xeb0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xeb8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xec0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xec8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xed0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xed8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xee0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xee8: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xef0: */ 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, 0x800, +/* 0xef8: */ 0x800, 0x800, 0x800, 0x800, 0x870, 0x870, 0x870, 0x8f0, +/* 0xf00: */ 0xc00, 0xe00, 0xe00, 0xc00, 0xc00, 0xe00, 0xe00, 0xe00, +/* 0xf08: */ 0xe00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xf10: */ 0xc00, 0xe00, 0xe00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xf18: */ 0xe00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, 0xc00, +/* 0xf20: */ 0xc00, 0xe00, 0xe00, 0xc00, 0xc00, 0xe00, 0xe00, 0xe00, +/* 0xf28: */ 0xe00, 0xe00, 0xe00, 0xc00, 0xe00, 0xc00, 0xe00, 0xe00, +/* 0xf30: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xf38: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xf40: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xf48: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xf50: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xf58: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xf60: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xf68: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xf70: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, +/* 0xf78: */ 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe00, 0xe30, 0xe30, +/* 0xf80: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0xf88: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0xf90: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0xf98: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0xfa0: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0xfa8: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0xfb0: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, +/* 0xfb8: */ 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf00, 0xf10, +/* 0xfc0: */ 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, +/* 0xfc8: */ 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, +/* 0xfd0: */ 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, +/* 0xfd8: */ 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, 0xf80, +/* 0xfe0: */ 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, +/* 0xfe8: */ 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, 0xfc0, +/* 0xff0: */ 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, 0xfe0, +/* 0xff8: */ 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, 0xff0, +}, diff --git a/Frameworks/libsidplayfp/generated/src/builders/residfp-builder/residfp/siddefs-fp.h b/Frameworks/libsidplayfp/generated/src/builders/residfp-builder/residfp/siddefs-fp.h new file mode 100644 index 000000000..5c438e54c --- /dev/null +++ b/Frameworks/libsidplayfp/generated/src/builders/residfp-builder/residfp/siddefs-fp.h @@ -0,0 +1,62 @@ +// --------------------------------------------------------------------------- +// This file is part of reSID, a MOS6581 SID emulator engine. +// Copyright (C) 1999 Dag Lem +// +// This program is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. +// --------------------------------------------------------------------------- + +#ifndef SIDDEFS_FP_H +#define SIDDEFS_FP_H + +// Compilation configuration. +#define RESID_BRANCH_HINTS 1 + +// Compiler specifics. +#define HAVE_BUILTIN_EXPECT 1 + +#ifndef M_PI +# define M_PI 3.14159265358979323846 +#endif + +// Branch prediction macros, lifted off the Linux kernel. +#if RESID_BRANCH_HINTS && HAVE_BUILTIN_EXPECT +# define likely(x) __builtin_expect(!!(x), 1) +# define unlikely(x) __builtin_expect(!!(x), 0) +#else +# define likely(x) (x) +# define unlikely(x) (x) +#endif + +namespace reSIDfp { + +typedef enum { MOS6581=1, MOS8580 } ChipModel; + +typedef enum { DECIMATE=1, RESAMPLE } SamplingMethod; +} + +extern "C" +{ +#ifndef __VERSION_CC__ +extern const char* residfp_version_string; +#else +const char* residfp_version_string = "2.1.0"; +#endif +} + +// Inlining on/off. +#define RESID_INLINING 1 +#define RESID_INLINE inline + +#endif // SIDDEFS_FP_H diff --git a/Frameworks/libsidplayfp/generated/src/config.h b/Frameworks/libsidplayfp/generated/src/config.h new file mode 100644 index 000000000..b02971732 --- /dev/null +++ b/Frameworks/libsidplayfp/generated/src/config.h @@ -0,0 +1,216 @@ +/* src/config.h. Generated from config.h.in by configure. */ +/* src/config.h.in. Generated from configure.ac by autoheader. */ + +/* Define if building universal (internal helper macro) */ +/* #undef AC_APPLE_UNIVERSAL_BUILD */ + +/* Define for threaded driver */ +#define EXSID_THREADED 1 + +/* Algorithm AES in gcrypt library */ +/* #undef GCRYPT_WITH_AES */ + +/* Algorithm ARCFOUR in gcrypt library */ +/* #undef GCRYPT_WITH_ARCFOUR */ + +/* Algorithm BLOWFISH in gcrypt library */ +/* #undef GCRYPT_WITH_BLOWFISH */ + +/* Algorithm CAST5 in gcrypt library */ +/* #undef GCRYPT_WITH_CAST5 */ + +/* Algorithm CRC in gcrypt library */ +/* #undef GCRYPT_WITH_CRC */ + +/* Algorithm DES in gcrypt library */ +/* #undef GCRYPT_WITH_DES */ + +/* Algorithm DSA in gcrypt library */ +/* #undef GCRYPT_WITH_DSA */ + +/* Algorithm ELGAMAL in gcrypt library */ +/* #undef GCRYPT_WITH_ELGAMAL */ + +/* Algorithm HAVAL in gcrypt library */ +/* #undef GCRYPT_WITH_HAVAL */ + +/* Algorithm IDEA in gcrypt library */ +/* #undef GCRYPT_WITH_IDEA */ + +/* Algorithm MD2 in gcrypt library */ +/* #undef GCRYPT_WITH_MD2 */ + +/* Algorithm MD4 in gcrypt library */ +/* #undef GCRYPT_WITH_MD4 */ + +/* Algorithm MD5 in gcrypt library */ +/* #undef GCRYPT_WITH_MD5 */ + +/* Algorithm RFC2268 in gcrypt library */ +/* #undef GCRYPT_WITH_RFC2268 */ + +/* Algorithm RMD160 in gcrypt library */ +/* #undef GCRYPT_WITH_RMD160 */ + +/* Algorithm RSA in gcrypt library */ +/* #undef GCRYPT_WITH_RSA */ + +/* Algorithm SERPENT in gcrypt library */ +/* #undef GCRYPT_WITH_SERPENT */ + +/* Algorithm SHA0 in gcrypt library */ +/* #undef GCRYPT_WITH_SHA0 */ + +/* Algorithm SHA1 in gcrypt library */ +/* #undef GCRYPT_WITH_SHA1 */ + +/* Algorithm SHA224 in gcrypt library */ +/* #undef GCRYPT_WITH_SHA224 */ + +/* Algorithm SHA256 in gcrypt library */ +/* #undef GCRYPT_WITH_SHA256 */ + +/* Algorithm SHA384 in gcrypt library */ +/* #undef GCRYPT_WITH_SHA384 */ + +/* Algorithm SHA512 in gcrypt library */ +/* #undef GCRYPT_WITH_SHA512 */ + +/* Algorithm TIGER in gcrypt library */ +/* #undef GCRYPT_WITH_TIGER */ + +/* Algorithm TWOFISH in gcrypt library */ +/* #undef GCRYPT_WITH_TWOFISH */ + +/* Algorithm WHIRLPOOL in gcrypt library */ +/* #undef GCRYPT_WITH_WHIRLPOOL */ + +/* define if the compiler supports basic C++11 syntax */ +#define HAVE_CXX11 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_DLFCN_H 1 + +/* Define to 1 if you have libexsid (-lexsid). */ +/* #undef HAVE_EXSID */ + +/* Define to 1 if you have ftd2xx.h */ +/* #undef HAVE_FTD2XX */ + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_FTD2XX_H */ + +/* Define to 1 if you have ftdi.h */ +#define HAVE_FTDI 1 + +/* Gcrypt library is available */ +/* #undef HAVE_GCRYPT */ + +/* Define to 1 if you have the header file. */ +#define HAVE_INTTYPES_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_MEMORY_H 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_MMINTRIN_H */ + +/* Define to 1 if you have pthread.h */ +#define HAVE_PTHREAD_H 1 + +/* Have PTHREAD_PRIO_INHERIT. */ +#define HAVE_PTHREAD_PRIO_INHERIT 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDINT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STDLIB_H 1 + +/* Define to 1 if you have the `strcasecmp' function. */ +#define HAVE_STRCASECMP 1 + +/* Define to 1 if you have the `stricmp' function. */ +/* #undef HAVE_STRICMP */ + +/* Define to 1 if you have the header file. */ +#define HAVE_STRINGS_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_STRING_H 1 + +/* Define to 1 if you have the `strncasecmp' function. */ +#define HAVE_STRNCASECMP 1 + +/* Define to 1 if you have the `strnicmp' function. */ +/* #undef HAVE_STRNICMP */ + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_STAT_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_SYS_TYPES_H 1 + +/* Define to 1 if you have the header file. */ +#define HAVE_UNISTD_H 1 + +/* Define to 1 if you have the header file. */ +/* #undef HAVE_UNITTEST___UNITTEST___H */ + +/* Define to the sub-directory where libtool stores uninstalled libraries. */ +#define LT_OBJDIR ".libs/" + +/* Name of package */ +#define PACKAGE "libsidplayfp" + +/* Define to the address where bug reports for this package should be sent. */ +#define PACKAGE_BUGREPORT "" + +/* Define to the full name of this package. */ +#define PACKAGE_NAME "libsidplayfp" + +/* Define to the full name and version of this package. */ +#define PACKAGE_STRING "libsidplayfp 2.1.0" + +/* Define to the one symbol short name of this package. */ +#define PACKAGE_TARNAME "libsidplayfp" + +/* Define to the home page for this package. */ +#define PACKAGE_URL "http://sourceforge.net/projects/sidplay-residfp/" + +/* Define to the version of this package. */ +#define PACKAGE_VERSION "2.1.0" + +/* Define to necessary symbol if this constant uses a non-standard name on + your system. */ +/* #undef PTHREAD_CREATE_JOINABLE */ + +/* Shared library extension */ +#define SHLIBEXT ".dylib" + +/* The size of `int', as computed by sizeof. */ +#define SIZEOF_INT 4 + +/* The size of `short', as computed by sizeof. */ +#define SIZEOF_SHORT 2 + +/* Define to 1 if you have the ANSI C header files. */ +#define STDC_HEADERS 1 + +/* Version number of package */ +#define VERSION "2.1.0" + +/* Path to VICE testsuite. */ +/* #undef VICE_TESTSUITE */ + +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +#if defined AC_APPLE_UNIVERSAL_BUILD +# if defined __BIG_ENDIAN__ +# define WORDS_BIGENDIAN 1 +# endif +#else +# ifndef WORDS_BIGENDIAN +/* # undef WORDS_BIGENDIAN */ +# endif +#endif diff --git a/Frameworks/libsidplayfp/generated/src/sidplayfp/sidversion.h b/Frameworks/libsidplayfp/generated/src/sidplayfp/sidversion.h new file mode 100644 index 000000000..297698c0f --- /dev/null +++ b/Frameworks/libsidplayfp/generated/src/sidplayfp/sidversion.h @@ -0,0 +1,14 @@ +#ifndef LIBSIDPLAYFP_VERSION_H +#define LIBSIDPLAYFP_VERSION_H + +#ifndef SIDPLAYFP_H +# error Do not include directly. +#endif + + + +#define LIBSIDPLAYFP_VERSION_MAJ 2 +#define LIBSIDPLAYFP_VERSION_MIN 1 +#define LIBSIDPLAYFP_VERSION_LEV 0 + +#endif diff --git a/Frameworks/libsidplayfp/generated/src/sidtune/sidplayer1.bin b/Frameworks/libsidplayfp/generated/src/sidtune/sidplayer1.bin new file mode 100644 index 000000000..0e4f9d1e0 --- /dev/null +++ b/Frameworks/libsidplayfp/generated/src/sidtune/sidplayer1.bin @@ -0,0 +1,407 @@ + 0x01, 0x00, 0x6f, 0x36, 0x35, 0x00, 0x00, 0x00, + 0x00, 0x10, 0x91, 0x0c, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x40, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xe0, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x61, 0xe1, 0x60, 0x01, + 0x02, 0x04, 0x00, 0x07, 0x0e, 0x02, 0x02, 0xfe, + 0x02, 0x02, 0xfe, 0xfe, 0x00, 0x01, 0x00, 0xff, + 0x00, 0x02, 0x04, 0x05, 0x07, 0x09, 0x0b, 0x1e, + 0x18, 0x8b, 0x7e, 0xfa, 0x06, 0xac, 0xf3, 0xe6, + 0x8f, 0xf8, 0x2e, 0x86, 0x8e, 0x96, 0x9f, 0xa8, + 0xb3, 0xbd, 0xc8, 0xd4, 0xe1, 0xee, 0xfd, 0x8c, + 0x78, 0x64, 0x50, 0x3c, 0x28, 0x14, 0x00, 0x00, + 0x02, 0x03, 0x05, 0x07, 0x08, 0x0a, 0x0c, 0x0d, + 0x0f, 0x11, 0x12, 0x00, 0xe0, 0x00, 0x05, 0x0a, + 0x0f, 0xf9, 0x00, 0xf5, 0x00, 0x00, 0x00, 0x10, + 0x00, 0x00, 0x20, 0x00, 0x00, 0x30, 0x00, 0x00, + 0x40, 0x00, 0x00, 0x50, 0x00, 0x00, 0x60, 0x00, + 0x00, 0x70, 0x00, 0x00, 0x80, 0x00, 0x00, 0x90, + 0x00, 0x00, 0xa0, 0x00, 0xa9, 0x00, 0x8d, 0x00, + 0xe0, 0xa2, 0x95, 0xa0, 0x42, 0xad, 0xa6, 0x02, + 0xf0, 0x04, 0xa2, 0x25, 0xa0, 0x40, 0x8e, 0x5b, + 0xe1, 0x8c, 0x5c, 0xe1, 0xea, 0xea, 0xea, 0xea, + 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, + 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, + 0xea, 0xea, 0xea, 0xea, 0x60, 0xa9, 0x00, 0x8d, + 0x00, 0xe0, 0x86, 0x61, 0x84, 0x62, 0xa0, 0xbc, + 0x99, 0x00, 0xe0, 0x88, 0xd0, 0xfa, 0xa0, 0x72, + 0x99, 0xbc, 0xe0, 0x88, 0xd0, 0xfa, 0x8d, 0x15, + 0xd4, 0x8d, 0x16, 0xd4, 0xa9, 0x08, 0x8d, 0x25, + 0xe0, 0x8d, 0x17, 0xd4, 0x8d, 0x26, 0xe0, 0x8d, + 0x18, 0xd4, 0xa9, 0x90, 0x8d, 0x27, 0xe0, 0xa9, + 0x60, 0x8d, 0x28, 0xe0, 0xa9, 0x0c, 0x8d, 0x29, + 0xe0, 0xad, 0x5b, 0xe1, 0x8d, 0x2d, 0xe0, 0xad, + 0x5c, 0xe1, 0x8d, 0x2e, 0xe0, 0xa9, 0xff, 0x8d, + 0xcc, 0xe0, 0xa9, 0xd4, 0x85, 0x64, 0xa2, 0x02, + 0xa9, 0xff, 0x9d, 0x0b, 0xe0, 0xa9, 0x01, 0x9d, + 0x30, 0xe0, 0x9d, 0x2a, 0xe0, 0x8a, 0x9d, 0x33, + 0xe0, 0x9d, 0xae, 0xe0, 0xa9, 0x04, 0x9d, 0x39, + 0xe0, 0xbd, 0xa8, 0xe1, 0x9d, 0xba, 0xe0, 0xa9, + 0x5b, 0x9d, 0x7e, 0xe0, 0xbd, 0x65, 0xe1, 0x85, + 0x63, 0xa9, 0x00, 0xa8, 0x91, 0x63, 0xc8, 0x91, + 0x63, 0xc8, 0x91, 0x63, 0xa9, 0x08, 0x9d, 0x17, + 0xe0, 0x9d, 0x9c, 0xe0, 0xc8, 0x91, 0x63, 0xc8, + 0x91, 0x63, 0xa9, 0x40, 0x9d, 0x1a, 0xe0, 0x91, + 0x63, 0xa9, 0x20, 0x9d, 0x1d, 0xe0, 0xc8, 0x91, + 0x63, 0xa9, 0xf5, 0x9d, 0x20, 0xe0, 0xc8, 0x91, + 0x63, 0xca, 0x10, 0xa4, 0x8a, 0xa2, 0x17, 0x9d, + 0x3e, 0xe1, 0xca, 0x10, 0xfa, 0xa5, 0x61, 0x18, + 0x69, 0x06, 0x85, 0x63, 0xa9, 0x00, 0xaa, 0xa8, + 0x65, 0x62, 0x85, 0x64, 0x9d, 0xab, 0xe0, 0x9d, + 0xb4, 0xe0, 0xa5, 0x63, 0x9d, 0xa8, 0xe0, 0x9d, + 0xb1, 0xe0, 0x18, 0x71, 0x61, 0x85, 0x63, 0xa5, + 0x64, 0xc8, 0x71, 0x61, 0xc8, 0xe8, 0xe0, 0x03, + 0xd0, 0xe0, 0xa6, 0x63, 0xa8, 0x60, 0xa9, 0x00, + 0x8d, 0x04, 0xd4, 0x8d, 0x0b, 0xd4, 0x8d, 0x12, + 0xd4, 0x8d, 0x01, 0xd4, 0x8d, 0x08, 0xd4, 0x8d, + 0x0f, 0xd4, 0xa9, 0x08, 0x8d, 0x17, 0xd4, 0xad, + 0x5b, 0xe1, 0x8d, 0x04, 0xdc, 0xad, 0x5c, 0xe1, + 0x8d, 0x05, 0xdc, 0x60, 0xea, 0xea, 0xea, 0xea, + 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, + 0xea, 0xea, 0x60, 0xa9, 0x08, 0x8d, 0x00, 0xe0, + 0x6c, 0x5d, 0xe1, 0xea, 0xea, 0xea, 0xad, 0x00, + 0xe0, 0x30, 0xf0, 0x09, 0x80, 0xa8, 0x29, 0x07, + 0xf0, 0xee, 0xd8, 0x8c, 0x00, 0xe0, 0xea, 0xa5, + 0xfb, 0x8d, 0x56, 0xe1, 0xa5, 0xfc, 0x8d, 0x57, + 0xe1, 0xa5, 0xfd, 0x8d, 0x58, 0xe1, 0xa5, 0xfe, + 0x8d, 0x59, 0xe1, 0xa5, 0xff, 0x8d, 0x5a, 0xe1, + 0xad, 0x23, 0xe0, 0x18, 0x6d, 0xd9, 0xe0, 0x48, + 0x29, 0x07, 0xa8, 0xad, 0xdc, 0xe0, 0x69, 0x00, + 0x85, 0xff, 0x68, 0x46, 0xff, 0x6a, 0x46, 0xff, + 0x6a, 0x46, 0xff, 0x6a, 0x18, 0x6d, 0x24, 0xe0, + 0x8c, 0x15, 0xd4, 0x8d, 0x16, 0xd4, 0xad, 0x25, + 0xe0, 0x8d, 0x17, 0xd4, 0xad, 0x26, 0xe0, 0x8d, + 0x18, 0xd4, 0xa9, 0xd4, 0x85, 0xfc, 0xa2, 0x00, + 0xad, 0x00, 0xe0, 0x3d, 0x62, 0xe1, 0xf0, 0x51, + 0xbd, 0x65, 0xe1, 0x85, 0xfb, 0xbd, 0x0e, 0xe0, + 0x18, 0x7d, 0x51, 0xe0, 0xa8, 0xbd, 0x11, 0xe0, + 0x7d, 0x54, 0xe0, 0x48, 0x98, 0x18, 0x7d, 0xcd, + 0xe0, 0xa0, 0x00, 0x91, 0xfb, 0x68, 0x7d, 0xd0, + 0xe0, 0xc8, 0x91, 0xfb, 0xbd, 0x14, 0xe0, 0x18, + 0x7d, 0x69, 0xe0, 0x85, 0xff, 0xbd, 0x17, 0xe0, + 0x7d, 0x6c, 0xe0, 0x48, 0xa5, 0xff, 0x18, 0x7d, + 0xd3, 0xe0, 0xc8, 0x91, 0xfb, 0x68, 0x7d, 0xd6, + 0xe0, 0xc8, 0x91, 0xfb, 0xbd, 0x1d, 0xe0, 0xc8, + 0xc8, 0x91, 0xfb, 0xbd, 0x20, 0xe0, 0xc8, 0x91, + 0xfb, 0xe8, 0xe0, 0x03, 0xd0, 0xa2, 0xac, 0x1a, + 0xe0, 0xae, 0x1b, 0xe0, 0xad, 0x1c, 0xe0, 0x8c, + 0x04, 0xd4, 0x8e, 0x0b, 0xd4, 0x8d, 0x12, 0xd4, + 0xae, 0x2d, 0xe0, 0xac, 0x2e, 0xe0, 0x8e, 0x04, + 0xdc, 0x8c, 0x05, 0xdc, 0xad, 0x1b, 0xd4, 0x8d, + 0xbe, 0xe0, 0xad, 0x1c, 0xd4, 0x8d, 0xbf, 0xe0, + 0xa2, 0x00, 0xad, 0x00, 0xe0, 0x3d, 0x62, 0xe1, + 0xf0, 0x10, 0x8e, 0x2f, 0xe0, 0x20, 0x36, 0xe5, + 0xad, 0x00, 0xe0, 0x29, 0x78, 0xf0, 0x03, 0x4c, + 0x0c, 0xe5, 0xe8, 0xe0, 0x03, 0xd0, 0xe3, 0xad, + 0xc9, 0xe0, 0xd0, 0x52, 0xad, 0xca, 0xe0, 0x0d, + 0xcb, 0xe0, 0xf0, 0x78, 0xad, 0xdf, 0xe0, 0xd0, + 0x28, 0xad, 0xca, 0xe0, 0xf0, 0x28, 0x18, 0x6d, + 0xbd, 0xe0, 0xb0, 0x07, 0xcd, 0xcc, 0xe0, 0x90, + 0x60, 0xf0, 0x5e, 0xa9, 0x00, 0x8d, 0xdf, 0xe0, + 0xad, 0xcb, 0xe0, 0xf0, 0x54, 0xee, 0xdf, 0xe0, + 0xad, 0xbd, 0xe0, 0xed, 0xcb, 0xe0, 0x4c, 0xb4, + 0xe4, 0xad, 0xcb, 0xe0, 0xf0, 0xd3, 0xad, 0xbd, + 0xe0, 0x38, 0xed, 0xcb, 0xe0, 0xb0, 0x3a, 0xa9, + 0x00, 0x8d, 0xdf, 0xe0, 0xad, 0xca, 0xe0, 0xd0, + 0x30, 0xee, 0xdf, 0xe0, 0xd0, 0x28, 0xce, 0xe0, + 0xe0, 0xd0, 0x29, 0xad, 0xdf, 0xe0, 0xd0, 0x11, + 0xee, 0xdf, 0xe0, 0xad, 0xcb, 0xe0, 0xd0, 0x02, + 0xa9, 0x20, 0x8d, 0xe0, 0xe0, 0xa9, 0x00, 0xf0, + 0x10, 0xce, 0xdf, 0xe0, 0xad, 0xca, 0xe0, 0xd0, + 0x02, 0xa9, 0x20, 0x8d, 0xe0, 0xe0, 0xad, 0xcc, + 0xe0, 0x8d, 0xbd, 0xe0, 0xa2, 0x00, 0xbd, 0xc3, + 0xe0, 0xf0, 0x44, 0xa9, 0x00, 0x85, 0xff, 0xbc, + 0xc0, 0xe0, 0xb9, 0xbd, 0xe0, 0xbc, 0xc6, 0xe0, + 0xf0, 0x0e, 0x30, 0x08, 0x0a, 0x26, 0xff, 0x88, + 0xd0, 0xfa, 0xf0, 0x04, 0x4a, 0xc8, 0xd0, 0xfc, + 0xbc, 0xc3, 0xe0, 0x88, 0xd0, 0x0b, 0x9d, 0xcd, + 0xe0, 0xa5, 0xff, 0x9d, 0xd0, 0xe0, 0x4c, 0x02, + 0xe5, 0x88, 0xd0, 0x0b, 0x9d, 0xd3, 0xe0, 0xa5, + 0xff, 0x9d, 0xd6, 0xe0, 0x4c, 0x02, 0xe5, 0x8d, + 0xd9, 0xe0, 0xa5, 0xff, 0x8d, 0xdc, 0xe0, 0xe8, + 0xe0, 0x03, 0xd0, 0xb2, 0xad, 0x00, 0xe0, 0x29, + 0x7f, 0x8d, 0x00, 0xe0, 0xad, 0x56, 0xe1, 0x85, + 0xfb, 0xad, 0x57, 0xe1, 0x85, 0xfc, 0xad, 0x58, + 0xe1, 0x85, 0xfd, 0xad, 0x59, 0xe1, 0x85, 0xfe, + 0xad, 0x5a, 0xe1, 0x85, 0xff, 0x6c, 0x5d, 0xe1, + 0xbd, 0x60, 0xe0, 0xd0, 0x03, 0x4c, 0x9f, 0xe6, + 0x4c, 0xba, 0xe5, 0xde, 0x30, 0xe0, 0xd0, 0x03, + 0x4c, 0xa0, 0xe6, 0xbd, 0x36, 0xe0, 0x30, 0xe8, + 0xd0, 0x1a, 0xbd, 0x3f, 0xe0, 0xf0, 0x05, 0xde, + 0x3f, 0xe0, 0xd0, 0x10, 0xbd, 0x39, 0xe0, 0xdd, + 0x30, 0xe0, 0x90, 0x08, 0xbd, 0x1a, 0xe0, 0x29, + 0xfe, 0x9d, 0x1a, 0xe0, 0xbd, 0x42, 0xe0, 0xf0, + 0x56, 0x0a, 0xbd, 0x0e, 0xe0, 0xb0, 0x1d, 0x7d, + 0x45, 0xe0, 0x9d, 0x0e, 0xe0, 0xa8, 0xbd, 0x11, + 0xe0, 0x7d, 0x48, 0xe0, 0x9d, 0x11, 0xe0, 0x48, + 0x98, 0xdd, 0x8d, 0xe0, 0x68, 0xfd, 0x90, 0xe0, + 0xb0, 0x1f, 0x90, 0x2e, 0xfd, 0x45, 0xe0, 0x9d, + 0x0e, 0xe0, 0xbd, 0x11, 0xe0, 0xfd, 0x48, 0xe0, + 0x9d, 0x11, 0xe0, 0xbd, 0x8d, 0xe0, 0xdd, 0x0e, + 0xe0, 0xbd, 0x90, 0xe0, 0xfd, 0x11, 0xe0, 0x90, + 0x11, 0xbd, 0x8d, 0xe0, 0x9d, 0x0e, 0xe0, 0xbd, + 0x90, 0xe0, 0x9d, 0x11, 0xe0, 0xa9, 0x00, 0x9d, + 0x42, 0xe0, 0xbd, 0x60, 0xe0, 0xf0, 0x55, 0xbd, + 0x4b, 0xe0, 0xf0, 0x4b, 0xa0, 0x00, 0xde, 0x4e, + 0xe0, 0xd0, 0x31, 0xbd, 0x51, 0xe0, 0x1d, 0x54, + 0xe0, 0xd0, 0x1b, 0xbd, 0x5d, 0xe0, 0x9d, 0x57, + 0xe0, 0x9d, 0x4e, 0xe0, 0xbd, 0x4b, 0xe0, 0x0a, + 0xbd, 0x5a, 0xe0, 0x90, 0x04, 0x49, 0xff, 0x69, + 0x00, 0x9d, 0x4b, 0xe0, 0xd0, 0x10, 0xbd, 0x57, + 0xe0, 0x9d, 0x4e, 0xe0, 0x98, 0x38, 0xfd, 0x4b, + 0xe0, 0x9d, 0x4b, 0xe0, 0xc9, 0x00, 0x10, 0x01, + 0x88, 0x18, 0x7d, 0x51, 0xe0, 0x9d, 0x51, 0xe0, + 0x98, 0x7d, 0x54, 0xe0, 0x9d, 0x54, 0xe0, 0xbd, + 0x36, 0xe0, 0x30, 0x15, 0xbd, 0x93, 0xe0, 0xf0, + 0x10, 0x18, 0x7d, 0x14, 0xe0, 0x9d, 0x14, 0xe0, + 0xbd, 0x96, 0xe0, 0x7d, 0x17, 0xe0, 0x9d, 0x17, + 0xe0, 0xbd, 0x63, 0xe0, 0xf0, 0x4b, 0xa0, 0x00, + 0xde, 0x66, 0xe0, 0xd0, 0x31, 0xbd, 0x69, 0xe0, + 0x1d, 0x6c, 0xe0, 0xd0, 0x1b, 0xbd, 0x72, 0xe0, + 0x9d, 0x6f, 0xe0, 0x9d, 0x66, 0xe0, 0xbd, 0x63, + 0xe0, 0x0a, 0xbd, 0x75, 0xe0, 0x90, 0x04, 0x49, + 0xff, 0x69, 0x00, 0x9d, 0x63, 0xe0, 0xd0, 0x10, + 0xbd, 0x6f, 0xe0, 0x9d, 0x66, 0xe0, 0x98, 0x38, + 0xfd, 0x63, 0xe0, 0x9d, 0x63, 0xe0, 0xc9, 0x00, + 0x10, 0x01, 0x88, 0x18, 0x7d, 0x69, 0xe0, 0x9d, + 0x69, 0xe0, 0x98, 0x7d, 0x6c, 0xe0, 0x9d, 0x6c, + 0xe0, 0xbd, 0x36, 0xe0, 0x10, 0x03, 0x4c, 0x9f, + 0xe6, 0xa0, 0x00, 0xbd, 0xa2, 0xe0, 0xf0, 0x1c, + 0x10, 0x01, 0xc8, 0x18, 0x6d, 0x23, 0xe0, 0x48, + 0x29, 0x07, 0x8d, 0x23, 0xe0, 0x68, 0x6a, 0x4a, + 0x4a, 0x18, 0x79, 0xa6, 0xe1, 0x18, 0x6d, 0x24, + 0xe0, 0x8d, 0x24, 0xe0, 0x60, 0xbd, 0xa8, 0xe0, + 0x85, 0xfd, 0xbd, 0xab, 0xe0, 0x85, 0xfe, 0xd0, + 0x04, 0x60, 0x20, 0x98, 0xe8, 0xad, 0x00, 0xe0, + 0x3d, 0x62, 0xe1, 0xf0, 0xf4, 0xa0, 0x00, 0xb1, + 0xfd, 0x85, 0xff, 0xc8, 0xb1, 0xfd, 0xa8, 0xa5, + 0xfd, 0x18, 0x69, 0x02, 0x85, 0xfd, 0x9d, 0xa8, + 0xe0, 0xa5, 0xfe, 0x69, 0x00, 0x85, 0xfe, 0x9d, + 0xab, 0xe0, 0xa5, 0xff, 0x29, 0x03, 0xd0, 0xd2, + 0xbd, 0x8d, 0xe0, 0x9d, 0x0e, 0xe0, 0xbd, 0x90, + 0xe0, 0x9d, 0x11, 0xe0, 0xa5, 0xff, 0x9d, 0x05, + 0xe0, 0x98, 0x9d, 0x02, 0xe0, 0x29, 0x07, 0xa8, + 0xb9, 0x67, 0xe1, 0x8d, 0x6f, 0xe1, 0xbd, 0x02, + 0xe0, 0x29, 0x38, 0x4a, 0x4a, 0x4a, 0x7d, 0x81, + 0xe0, 0x85, 0xfd, 0xbd, 0x02, 0xe0, 0x29, 0xc0, + 0x0a, 0x2a, 0x2a, 0xa8, 0xb9, 0x6f, 0xe1, 0x85, + 0xfe, 0xbd, 0x02, 0xe0, 0x29, 0x07, 0xf0, 0x62, + 0xa8, 0xb9, 0x72, 0xe1, 0x65, 0xfe, 0x18, 0x7d, + 0x84, 0xe0, 0x10, 0x05, 0x18, 0x69, 0x0c, 0xe6, + 0xfd, 0xc9, 0x0c, 0x90, 0x04, 0xe9, 0x0c, 0xc6, + 0xfd, 0x85, 0xfe, 0xa8, 0xb9, 0x86, 0xe1, 0x85, + 0xff, 0xb9, 0x7a, 0xe1, 0xa4, 0xfd, 0x88, 0x30, + 0x06, 0x46, 0xff, 0x6a, 0x88, 0x10, 0xfa, 0x18, + 0x7d, 0x87, 0xe0, 0x9d, 0x8d, 0xe0, 0xa5, 0xff, + 0x7d, 0x8a, 0xe0, 0x9d, 0x90, 0xe0, 0xbd, 0x05, + 0xe0, 0xd0, 0x03, 0x4c, 0xa0, 0xe6, 0xbd, 0x45, + 0xe0, 0x1d, 0x48, 0xe0, 0xf0, 0x16, 0xbd, 0x0e, + 0xe0, 0xdd, 0x8d, 0xe0, 0xbd, 0x11, 0xe0, 0xfd, + 0x90, 0xe0, 0xa9, 0xfe, 0x6a, 0x9d, 0x42, 0xe0, + 0x90, 0x11, 0xf0, 0x4a, 0x9d, 0x42, 0xe0, 0xbd, + 0x8d, 0xe0, 0x9d, 0x0e, 0xe0, 0xbd, 0x90, 0xe0, + 0x9d, 0x11, 0xe0, 0xbd, 0x36, 0xe0, 0x0a, 0xd0, + 0x35, 0xbd, 0x93, 0xe0, 0xf0, 0x0c, 0xbd, 0x99, + 0xe0, 0x9d, 0x14, 0xe0, 0xbd, 0x9c, 0xe0, 0x9d, + 0x17, 0xe0, 0xbd, 0x9f, 0xe0, 0xf0, 0x0f, 0xa4, + 0xfd, 0x18, 0x79, 0x92, 0xe1, 0xa4, 0xfe, 0x18, + 0x79, 0x9a, 0xe1, 0x18, 0x90, 0x08, 0xbd, 0xa2, + 0xe0, 0xf0, 0x0b, 0xbd, 0xa5, 0xe0, 0x8d, 0x24, + 0xe0, 0xa9, 0x00, 0x8d, 0x23, 0xe0, 0xbd, 0x3c, + 0xe0, 0x9d, 0x3f, 0xe0, 0xbd, 0x05, 0xe0, 0x29, + 0x40, 0x9d, 0x36, 0xe0, 0xbd, 0x05, 0xe0, 0x4a, + 0x4a, 0x29, 0x07, 0xd0, 0x30, 0xbd, 0x05, 0xe0, + 0x30, 0x14, 0xad, 0x27, 0xe0, 0x29, 0x3c, 0xd0, + 0x1e, 0xad, 0x27, 0xe0, 0x0a, 0x2a, 0x2a, 0xd0, + 0x02, 0xa9, 0x04, 0x4c, 0x70, 0xe8, 0xad, 0x28, + 0xe0, 0xf0, 0x0c, 0x29, 0x3f, 0xd0, 0x08, 0xad, + 0x28, 0xe0, 0x0a, 0x2a, 0x2a, 0xd0, 0x66, 0xa9, + 0x10, 0x8d, 0x00, 0xe0, 0x60, 0xc9, 0x01, 0xd0, + 0x13, 0xbd, 0x05, 0xe0, 0x29, 0x20, 0xd0, 0x06, + 0xad, 0x29, 0xe0, 0x4c, 0x70, 0xe8, 0xbd, 0x2a, + 0xe0, 0x4c, 0x70, 0xe8, 0xa8, 0xbd, 0x05, 0xe0, + 0x29, 0xa0, 0xc9, 0x80, 0xf0, 0x30, 0x85, 0xff, + 0x18, 0xad, 0x27, 0xe0, 0xd0, 0x01, 0x38, 0x88, + 0x88, 0xf0, 0x06, 0x6a, 0xb0, 0x4e, 0x88, 0xd0, + 0xfa, 0xa4, 0xff, 0x85, 0xff, 0xf0, 0x26, 0x46, + 0xff, 0xb0, 0x41, 0xf0, 0x42, 0x65, 0xff, 0xb0, + 0x3e, 0xc8, 0x10, 0x19, 0x46, 0xff, 0xb0, 0x34, + 0x65, 0xff, 0x90, 0x11, 0xb0, 0x31, 0xad, 0x28, + 0xe0, 0xf0, 0x29, 0x88, 0x88, 0xf0, 0x06, 0x4a, + 0xb0, 0x22, 0x88, 0xd0, 0xfa, 0x9d, 0x30, 0xe0, + 0xbd, 0x1a, 0xe0, 0x29, 0xf6, 0x9d, 0x1a, 0xe0, + 0x38, 0xbd, 0x02, 0xe0, 0x29, 0x07, 0xd0, 0x03, + 0x7e, 0x36, 0xe0, 0xbd, 0x1a, 0xe0, 0x69, 0x00, + 0x9d, 0x1a, 0xe0, 0x60, 0xa9, 0x10, 0x2c, 0xa9, + 0x18, 0x8d, 0x00, 0xe0, 0x60, 0x98, 0x48, 0xa5, + 0xff, 0x4a, 0x90, 0x03, 0x4c, 0x42, 0xea, 0x4a, + 0x4a, 0xb0, 0x1e, 0x4a, 0xb0, 0x0e, 0x9d, 0x9c, + 0xe0, 0x9d, 0x17, 0xe0, 0x68, 0x9d, 0x99, 0xe0, + 0x9d, 0x14, 0xe0, 0x60, 0x4a, 0x90, 0x02, 0x09, + 0xf8, 0x9d, 0x8a, 0xe0, 0x68, 0x9d, 0x87, 0xe0, + 0x60, 0x4a, 0xb0, 0x03, 0x4c, 0x4a, 0xe9, 0x4a, + 0xb0, 0x61, 0x4a, 0xb0, 0x0f, 0xd0, 0x08, 0x68, + 0x9d, 0xa5, 0xe0, 0x8d, 0x24, 0xe0, 0x60, 0x68, + 0x9d, 0x3c, 0xe0, 0x60, 0xd0, 0x48, 0x68, 0x9d, + 0x7e, 0xe0, 0xc9, 0x5b, 0xf0, 0x33, 0xa8, 0x4a, + 0x4a, 0x4a, 0x38, 0xe9, 0x0b, 0x18, 0x7d, 0x84, + 0xe0, 0x30, 0x0c, 0xc9, 0x0c, 0x90, 0x11, 0xe9, + 0x0c, 0xde, 0x81, 0xe0, 0x4c, 0x0b, 0xe9, 0xc9, + 0xf5, 0xb0, 0x05, 0x69, 0x0c, 0xfe, 0x81, 0xe0, + 0x9d, 0x84, 0xe0, 0x98, 0x29, 0x07, 0x38, 0xe9, + 0x03, 0x18, 0x7d, 0x81, 0xe0, 0x9d, 0x81, 0xe0, + 0x60, 0xbd, 0x78, 0xe0, 0x9d, 0x81, 0xe0, 0xbd, + 0x7b, 0xe0, 0x9d, 0x84, 0xe0, 0x60, 0x68, 0x9d, + 0xc6, 0xe0, 0x60, 0x4a, 0xb0, 0x08, 0x9d, 0x0b, + 0xe0, 0x68, 0x9d, 0x08, 0xe0, 0x60, 0x4a, 0x6a, + 0x6a, 0x6d, 0x5b, 0xe1, 0x8d, 0x2d, 0xe0, 0x68, + 0x6d, 0x5c, 0xe1, 0x8d, 0x2e, 0xe0, 0x60, 0x4a, + 0x90, 0x03, 0x4c, 0xd3, 0xe9, 0x4a, 0xb0, 0x40, + 0x4a, 0xb0, 0x17, 0x4a, 0xb0, 0x0f, 0x68, 0x8d, + 0x27, 0xe0, 0x4a, 0x4a, 0x4a, 0xa8, 0xb9, 0xaf, + 0xe1, 0x8d, 0x28, 0xe0, 0x60, 0x68, 0x9d, 0x5d, + 0xe0, 0x60, 0x4a, 0xb0, 0x05, 0x68, 0x8d, 0x01, + 0xe0, 0x60, 0x68, 0xf0, 0x11, 0x9d, 0x75, 0xe0, + 0xbc, 0x63, 0xe0, 0xd0, 0x08, 0x9d, 0x63, 0xe0, + 0xa9, 0x01, 0x9d, 0x66, 0xe0, 0x60, 0x9d, 0x63, + 0xe0, 0x9d, 0x69, 0xe0, 0x9d, 0x6c, 0xe0, 0x60, + 0x4a, 0xb0, 0x30, 0x4a, 0xb0, 0x05, 0x68, 0x9d, + 0x39, 0xe0, 0x60, 0x68, 0xa0, 0x00, 0x4a, 0x90, + 0x02, 0xc8, 0x18, 0x48, 0x29, 0x07, 0x79, 0xac, + 0xe1, 0x9d, 0x78, 0xe0, 0x9d, 0x81, 0xe0, 0x68, + 0x4a, 0x4a, 0x4a, 0x18, 0x79, 0xad, 0xe1, 0x9d, + 0x7b, 0xe0, 0x9d, 0x84, 0xe0, 0xa9, 0x5b, 0x9d, + 0x7e, 0xe0, 0x60, 0x4a, 0xb0, 0x05, 0x68, 0x9d, + 0xa2, 0xe0, 0x60, 0x68, 0x8d, 0xcc, 0xe0, 0x60, + 0x4a, 0xb0, 0x27, 0x4a, 0xb0, 0x0d, 0x4a, 0xb0, + 0x05, 0x68, 0x8d, 0x29, 0xe0, 0x60, 0x68, 0x9d, + 0x9f, 0xe0, 0x60, 0x4a, 0xb0, 0x0f, 0x68, 0x9d, + 0x93, 0xe0, 0xa0, 0x00, 0x0a, 0x90, 0x01, 0x88, + 0x98, 0x9d, 0x96, 0xe0, 0x60, 0x68, 0x9d, 0x72, + 0xe0, 0x60, 0x4a, 0xb0, 0x1c, 0x4a, 0xb0, 0x15, + 0x68, 0x9d, 0xb7, 0xe0, 0xa5, 0xfd, 0x9d, 0xb1, + 0xe0, 0xa5, 0xfe, 0x9d, 0xb4, 0xe0, 0xbd, 0x33, + 0xe0, 0x9d, 0xae, 0xe0, 0x60, 0x68, 0x6c, 0x5f, + 0xe1, 0x4a, 0xb0, 0x1e, 0x68, 0xd0, 0x0a, 0x9d, + 0x4b, 0xe0, 0x9d, 0x51, 0xe0, 0x9d, 0x54, 0xe0, + 0x60, 0x9d, 0x5a, 0xe0, 0xbc, 0x4b, 0xe0, 0xd0, + 0x08, 0x9d, 0x4b, 0xe0, 0xa9, 0x01, 0x9d, 0x4e, + 0xe0, 0x60, 0x68, 0x9d, 0x2a, 0xe0, 0x60, 0x4a, + 0x90, 0x08, 0x9d, 0x48, 0xe0, 0x68, 0x9d, 0x45, + 0xe0, 0x60, 0x68, 0x4a, 0xb0, 0x61, 0x4a, 0xb0, + 0x25, 0x4a, 0xb0, 0x05, 0x4a, 0xa0, 0xf0, 0xd0, + 0x06, 0x0a, 0x0a, 0x0a, 0x0a, 0xa0, 0x0f, 0x85, + 0xff, 0x98, 0xb0, 0x09, 0x3d, 0x1d, 0xe0, 0x05, + 0xff, 0x9d, 0x1d, 0xe0, 0x60, 0x3d, 0x20, 0xe0, + 0x05, 0xff, 0x9d, 0x20, 0xe0, 0x60, 0x4a, 0xb0, + 0x38, 0x4a, 0xb0, 0x64, 0x85, 0xff, 0xbd, 0xba, + 0xe0, 0xdd, 0xa9, 0xe1, 0xf0, 0x54, 0xfe, 0xba, + 0xe0, 0xa8, 0xa5, 0xfd, 0x99, 0xe1, 0xe0, 0xa5, + 0xfe, 0x99, 0xf0, 0xe0, 0xbd, 0x33, 0xe0, 0x99, + 0x2f, 0xe1, 0xa4, 0xff, 0xb9, 0x17, 0xe1, 0xf0, + 0x36, 0x85, 0xfe, 0xb9, 0xff, 0xe0, 0x85, 0xfd, + 0xb9, 0x3e, 0xe1, 0x9d, 0x33, 0xe0, 0x60, 0xb0, + 0x4b, 0x4a, 0xb0, 0x3c, 0xa8, 0xa5, 0xfd, 0x99, + 0xff, 0xe0, 0xa5, 0xfe, 0x99, 0x17, 0xe1, 0xbd, + 0x33, 0xe0, 0x99, 0x3e, 0xe1, 0xbd, 0xba, 0xe0, + 0xdd, 0xa9, 0xe1, 0xf0, 0x0d, 0xfe, 0xba, 0xe0, + 0xa8, 0xa9, 0x00, 0x99, 0xf0, 0xe0, 0x60, 0xa9, + 0x30, 0x2c, 0xa9, 0x28, 0x8d, 0x00, 0xe0, 0x60, + 0x0a, 0x0a, 0x0a, 0x0a, 0x4d, 0x25, 0xe0, 0x29, + 0xf0, 0x4d, 0x25, 0xe0, 0x8d, 0x25, 0xe0, 0x60, + 0x4d, 0x26, 0xe0, 0x29, 0x0f, 0x4d, 0x26, 0xe0, + 0x8d, 0x26, 0xe0, 0x60, 0x4a, 0xb0, 0x0b, 0x4a, + 0xb0, 0x04, 0x8d, 0xca, 0xe0, 0x60, 0x8d, 0xcb, + 0xe0, 0x60, 0x4a, 0x90, 0x03, 0x4c, 0xa5, 0xeb, + 0x4a, 0xa8, 0xf0, 0x21, 0x88, 0xf0, 0x34, 0x88, + 0xf0, 0x42, 0x88, 0xf0, 0x4a, 0x88, 0xf0, 0x52, + 0x88, 0xf0, 0x5c, 0x88, 0xf0, 0x66, 0x88, 0xf0, + 0x73, 0x29, 0x07, 0x09, 0x10, 0xb0, 0x03, 0x4c, + 0xb7, 0xea, 0x4c, 0x7f, 0xea, 0xac, 0x26, 0xe0, + 0xb0, 0x07, 0xc8, 0x98, 0x29, 0x0f, 0xd0, 0x07, + 0x60, 0x98, 0x29, 0x0f, 0xf0, 0x04, 0x88, 0x8c, + 0x26, 0xe0, 0x60, 0xbd, 0x62, 0xe1, 0x49, 0xff, + 0x2d, 0x25, 0xe0, 0x90, 0x03, 0x1d, 0x62, 0xe1, + 0x8d, 0x25, 0xe0, 0x60, 0xbd, 0x1a, 0xe0, 0x29, + 0xfb, 0x90, 0x55, 0x09, 0x04, 0xb0, 0x51, 0xbd, + 0x1a, 0xe0, 0x29, 0xfd, 0x90, 0x4a, 0x09, 0x02, + 0xb0, 0x46, 0xad, 0x25, 0xe0, 0x29, 0xf7, 0x90, + 0x02, 0x09, 0x08, 0x8d, 0x25, 0xe0, 0x60, 0xad, + 0x26, 0xe0, 0x29, 0x7f, 0x90, 0x02, 0x09, 0x80, + 0x8d, 0x26, 0xe0, 0x60, 0x98, 0x8d, 0xbd, 0xe0, + 0x8d, 0xdf, 0xe0, 0xc8, 0x8c, 0xe0, 0xe0, 0x2a, + 0x8d, 0xc9, 0xe0, 0x60, 0x98, 0x2a, 0x9d, 0x60, + 0xe0, 0x60, 0x4a, 0xb0, 0x27, 0x4a, 0xb0, 0x14, + 0xd0, 0x02, 0xa9, 0x08, 0x0a, 0x0a, 0x0a, 0x0a, + 0x5d, 0x1a, 0xe0, 0x29, 0xf0, 0x5d, 0x1a, 0xe0, + 0x9d, 0x1a, 0xe0, 0x60, 0x0a, 0x0a, 0x0a, 0x0a, + 0x4d, 0x26, 0xe0, 0x29, 0x70, 0x4d, 0x26, 0xe0, + 0x8d, 0x26, 0xe0, 0x60, 0x4a, 0x90, 0x04, 0x9d, + 0xc0, 0xe0, 0x60, 0xa8, 0xf0, 0x20, 0x88, 0xf0, + 0x40, 0x88, 0xf0, 0x63, 0x29, 0x03, 0x9d, 0xc3, + 0xe0, 0xa9, 0x00, 0x9d, 0xcd, 0xe0, 0x9d, 0xd0, + 0xe0, 0x9d, 0xd3, 0xe0, 0x9d, 0xd6, 0xe0, 0x8d, + 0xd9, 0xe0, 0x8d, 0xdc, 0xe0, 0x60, 0xbd, 0xb7, + 0xe0, 0xf0, 0x05, 0xde, 0xb7, 0xe0, 0xf0, 0x12, + 0xbd, 0x33, 0xe0, 0xdd, 0xae, 0xe0, 0xd0, 0x0b, + 0xbd, 0xb1, 0xe0, 0x85, 0xfd, 0xbd, 0xb4, 0xe0, + 0x85, 0xfe, 0x60, 0xa9, 0x38, 0x8d, 0x00, 0xe0, + 0x60, 0xbd, 0xba, 0xe0, 0xdd, 0xa8, 0xe1, 0xf0, + 0x18, 0xde, 0xba, 0xe0, 0xa8, 0x88, 0xb9, 0xf0, + 0xe0, 0xf0, 0x0d, 0x85, 0xfe, 0xb9, 0xe1, 0xe0, + 0x85, 0xfd, 0xb9, 0x2f, 0xe1, 0x9d, 0x33, 0xe0, + 0x60, 0xa9, 0x20, 0x8d, 0x00, 0xe0, 0x60, 0xad, + 0x00, 0xe0, 0x5d, 0x62, 0xe1, 0x8d, 0x00, 0xe0, + 0xa9, 0x01, 0x9d, 0x30, 0xe0, 0x60, 0xad, 0x00, + 0xe0, 0x29, 0x07, 0x8d, 0x81, 0xec, 0xd0, 0x03, + 0x20, 0xe9, 0xe2, 0x60, 0x00, 0xa2, 0x51, 0xa0, + 0xec, 0x8e, 0x5d, 0xe1, 0x8c, 0x5e, 0xe1, 0x20, + 0xcf, 0xe1, 0xa2, 0x00, 0xa0, 0x09, 0x20, 0x00, + 0xe2, 0xa9, 0x07, 0x8d, 0x00, 0xe0, 0x8d, 0x81, + 0xec, 0x60, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x29, + 0xff, 0xf0, 0xf6, 0x4c, 0x29, 0xe3, 0xa9, 0x07, + 0x8d, 0x00, 0xe0, 0x60, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, diff --git a/Frameworks/libsidplayfp/generated/src/sidtune/sidplayer2.bin b/Frameworks/libsidplayfp/generated/src/sidtune/sidplayer2.bin new file mode 100644 index 000000000..f88a43af9 --- /dev/null +++ b/Frameworks/libsidplayfp/generated/src/sidtune/sidplayer2.bin @@ -0,0 +1,408 @@ + 0x01, 0x00, 0x6f, 0x36, 0x35, 0x00, 0x00, 0x00, + 0x00, 0x10, 0x9e, 0x0c, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x40, 0x00, 0x00, 0x04, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0xf0, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x61, 0xf1, 0x60, 0x01, + 0x02, 0x04, 0x00, 0x07, 0x0e, 0x02, 0x02, 0xfe, + 0x02, 0x02, 0xfe, 0xfe, 0x00, 0x01, 0x00, 0xff, + 0x00, 0x02, 0x04, 0x05, 0x07, 0x09, 0x0b, 0x1e, + 0x18, 0x8b, 0x7e, 0xfa, 0x06, 0xac, 0xf3, 0xe6, + 0x8f, 0xf8, 0x2e, 0x86, 0x8e, 0x96, 0x9f, 0xa8, + 0xb3, 0xbd, 0xc8, 0xd4, 0xe1, 0xee, 0xfd, 0x8c, + 0x78, 0x64, 0x50, 0x3c, 0x28, 0x14, 0x00, 0x00, + 0x02, 0x03, 0x05, 0x07, 0x08, 0x0a, 0x0c, 0x0d, + 0x0f, 0x11, 0x12, 0x00, 0xe0, 0x00, 0x05, 0x0a, + 0x0f, 0xf9, 0x00, 0xf5, 0x00, 0x00, 0x00, 0x10, + 0x00, 0x00, 0x20, 0x00, 0x00, 0x30, 0x00, 0x00, + 0x40, 0x00, 0x00, 0x50, 0x00, 0x00, 0x60, 0x00, + 0x00, 0x70, 0x00, 0x00, 0x80, 0x00, 0x00, 0x90, + 0x00, 0x00, 0xa0, 0x00, 0xa9, 0x00, 0x8d, 0x00, + 0xf0, 0xa2, 0x95, 0xa0, 0x42, 0xad, 0xa6, 0x02, + 0xf0, 0x04, 0xa2, 0x25, 0xa0, 0x40, 0x8e, 0x5b, + 0xf1, 0x8c, 0x5c, 0xf1, 0xea, 0xea, 0xea, 0xea, + 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, + 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, + 0xea, 0xea, 0xea, 0xea, 0x60, 0xa9, 0x00, 0x8d, + 0x00, 0xf0, 0x86, 0x61, 0x84, 0x62, 0xa0, 0xbc, + 0x99, 0x00, 0xf0, 0x88, 0xd0, 0xfa, 0xa0, 0x72, + 0x99, 0xbc, 0xf0, 0x88, 0xd0, 0xfa, 0x8d, 0x15, + 0xd5, 0x8d, 0x16, 0xd5, 0xa9, 0x08, 0x8d, 0x25, + 0xf0, 0x8d, 0x17, 0xd5, 0x8d, 0x26, 0xf0, 0x8d, + 0x18, 0xd5, 0xa9, 0x90, 0x8d, 0x27, 0xf0, 0xa9, + 0x60, 0x8d, 0x28, 0xf0, 0xa9, 0x0c, 0x8d, 0x29, + 0xf0, 0xad, 0x5b, 0xf1, 0x8d, 0x2d, 0xf0, 0xad, + 0x5c, 0xf1, 0x8d, 0x2e, 0xf0, 0xa9, 0xff, 0x8d, + 0xcc, 0xf0, 0xa9, 0xd5, 0x85, 0x64, 0xa2, 0x02, + 0xa9, 0xff, 0x9d, 0x0b, 0xf0, 0xa9, 0x01, 0x9d, + 0x30, 0xf0, 0x9d, 0x2a, 0xf0, 0x8a, 0x9d, 0x33, + 0xf0, 0x9d, 0xae, 0xf0, 0xa9, 0x04, 0x9d, 0x39, + 0xf0, 0xbd, 0xa8, 0xf1, 0x9d, 0xba, 0xf0, 0xa9, + 0x5b, 0x9d, 0x7e, 0xf0, 0xbd, 0x65, 0xf1, 0x85, + 0x63, 0xa9, 0x00, 0xa8, 0x91, 0x63, 0xc8, 0x91, + 0x63, 0xc8, 0x91, 0x63, 0xa9, 0x08, 0x9d, 0x17, + 0xf0, 0x9d, 0x9c, 0xf0, 0xc8, 0x91, 0x63, 0xc8, + 0x91, 0x63, 0xa9, 0x40, 0x9d, 0x1a, 0xf0, 0x91, + 0x63, 0xa9, 0x20, 0x9d, 0x1d, 0xf0, 0xc8, 0x91, + 0x63, 0xa9, 0xf5, 0x9d, 0x20, 0xf0, 0xc8, 0x91, + 0x63, 0xca, 0x10, 0xa4, 0x8a, 0xa2, 0x17, 0x9d, + 0x3e, 0xf1, 0xca, 0x10, 0xfa, 0xa5, 0x61, 0x18, + 0x69, 0x06, 0x85, 0x63, 0xa9, 0x00, 0xaa, 0xa8, + 0x65, 0x62, 0x85, 0x64, 0x9d, 0xab, 0xf0, 0x9d, + 0xb4, 0xf0, 0xa5, 0x63, 0x9d, 0xa8, 0xf0, 0x9d, + 0xb1, 0xf0, 0x18, 0x71, 0x61, 0x85, 0x63, 0xa5, + 0x64, 0xc8, 0x71, 0x61, 0xc8, 0xe8, 0xe0, 0x03, + 0xd0, 0xe0, 0xa6, 0x63, 0xa8, 0x60, 0xa9, 0x00, + 0x8d, 0x04, 0xd5, 0x8d, 0x0b, 0xd5, 0x8d, 0x12, + 0xd5, 0x8d, 0x01, 0xd5, 0x8d, 0x08, 0xd5, 0x8d, + 0x0f, 0xd5, 0xa9, 0x08, 0x8d, 0x17, 0xd5, 0xad, + 0x5b, 0xf1, 0x8d, 0x04, 0xdc, 0xad, 0x5c, 0xf1, + 0x8d, 0x05, 0xdc, 0x60, 0xea, 0xea, 0xea, 0xea, + 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, 0xea, + 0xea, 0xea, 0x60, 0xa9, 0x08, 0x8d, 0x00, 0xf0, + 0x6c, 0x5d, 0xf1, 0xea, 0xea, 0xea, 0xad, 0x00, + 0xf0, 0x30, 0xf0, 0x09, 0x80, 0xa8, 0x29, 0x07, + 0xf0, 0xee, 0xd8, 0x8c, 0x00, 0xf0, 0xea, 0xa5, + 0xfb, 0x8d, 0x56, 0xf1, 0xa5, 0xfc, 0x8d, 0x57, + 0xf1, 0xa5, 0xfd, 0x8d, 0x58, 0xf1, 0xa5, 0xfe, + 0x8d, 0x59, 0xf1, 0xa5, 0xff, 0x8d, 0x5a, 0xf1, + 0xad, 0x23, 0xf0, 0x18, 0x6d, 0xd9, 0xf0, 0x48, + 0x29, 0x07, 0xa8, 0xad, 0xdc, 0xf0, 0x69, 0x00, + 0x85, 0xff, 0x68, 0x46, 0xff, 0x6a, 0x46, 0xff, + 0x6a, 0x46, 0xff, 0x6a, 0x18, 0x6d, 0x24, 0xf0, + 0x8c, 0x15, 0xd5, 0x8d, 0x16, 0xd5, 0xad, 0x25, + 0xf0, 0x8d, 0x17, 0xd5, 0xad, 0x26, 0xf0, 0x8d, + 0x18, 0xd5, 0xa9, 0xd5, 0x85, 0xfc, 0xa2, 0x00, + 0xad, 0x00, 0xf0, 0x3d, 0x62, 0xf1, 0xf0, 0x51, + 0xbd, 0x65, 0xf1, 0x85, 0xfb, 0xbd, 0x0e, 0xf0, + 0x18, 0x7d, 0x51, 0xf0, 0xa8, 0xbd, 0x11, 0xf0, + 0x7d, 0x54, 0xf0, 0x48, 0x98, 0x18, 0x7d, 0xcd, + 0xf0, 0xa0, 0x00, 0x91, 0xfb, 0x68, 0x7d, 0xd0, + 0xf0, 0xc8, 0x91, 0xfb, 0xbd, 0x14, 0xf0, 0x18, + 0x7d, 0x69, 0xf0, 0x85, 0xff, 0xbd, 0x17, 0xf0, + 0x7d, 0x6c, 0xf0, 0x48, 0xa5, 0xff, 0x18, 0x7d, + 0xd3, 0xf0, 0xc8, 0x91, 0xfb, 0x68, 0x7d, 0xd6, + 0xf0, 0xc8, 0x91, 0xfb, 0xbd, 0x1d, 0xf0, 0xc8, + 0xc8, 0x91, 0xfb, 0xbd, 0x20, 0xf0, 0xc8, 0x91, + 0xfb, 0xe8, 0xe0, 0x03, 0xd0, 0xa2, 0xac, 0x1a, + 0xf0, 0xae, 0x1b, 0xf0, 0xad, 0x1c, 0xf0, 0x8c, + 0x04, 0xd5, 0x8e, 0x0b, 0xd5, 0x8d, 0x12, 0xd5, + 0xae, 0x2d, 0xf0, 0xac, 0x2e, 0xf0, 0x8e, 0x04, + 0xdc, 0x8c, 0x05, 0xdc, 0xad, 0x1b, 0xd5, 0x8d, + 0xbe, 0xf0, 0xad, 0x1c, 0xd5, 0x8d, 0xbf, 0xf0, + 0xa2, 0x00, 0xad, 0x00, 0xf0, 0x3d, 0x62, 0xf1, + 0xf0, 0x10, 0x8e, 0x2f, 0xf0, 0x20, 0x36, 0xf5, + 0xad, 0x00, 0xf0, 0x29, 0x78, 0xf0, 0x03, 0x4c, + 0x0c, 0xf5, 0xe8, 0xe0, 0x03, 0xd0, 0xe3, 0xad, + 0xc9, 0xf0, 0xd0, 0x52, 0xad, 0xca, 0xf0, 0x0d, + 0xcb, 0xf0, 0xf0, 0x78, 0xad, 0xdf, 0xf0, 0xd0, + 0x28, 0xad, 0xca, 0xf0, 0xf0, 0x28, 0x18, 0x6d, + 0xbd, 0xf0, 0xb0, 0x07, 0xcd, 0xcc, 0xf0, 0x90, + 0x60, 0xf0, 0x5e, 0xa9, 0x00, 0x8d, 0xdf, 0xf0, + 0xad, 0xcb, 0xf0, 0xf0, 0x54, 0xee, 0xdf, 0xf0, + 0xad, 0xbd, 0xf0, 0xed, 0xcb, 0xf0, 0x4c, 0xb4, + 0xf4, 0xad, 0xcb, 0xf0, 0xf0, 0xd3, 0xad, 0xbd, + 0xf0, 0x38, 0xed, 0xcb, 0xf0, 0xb0, 0x3a, 0xa9, + 0x00, 0x8d, 0xdf, 0xf0, 0xad, 0xca, 0xf0, 0xd0, + 0x30, 0xee, 0xdf, 0xf0, 0xd0, 0x28, 0xce, 0xe0, + 0xf0, 0xd0, 0x29, 0xad, 0xdf, 0xf0, 0xd0, 0x11, + 0xee, 0xdf, 0xf0, 0xad, 0xcb, 0xf0, 0xd0, 0x02, + 0xa9, 0x20, 0x8d, 0xe0, 0xf0, 0xa9, 0x00, 0xf0, + 0x10, 0xce, 0xdf, 0xf0, 0xad, 0xca, 0xf0, 0xd0, + 0x02, 0xa9, 0x20, 0x8d, 0xe0, 0xf0, 0xad, 0xcc, + 0xf0, 0x8d, 0xbd, 0xf0, 0xa2, 0x00, 0xbd, 0xc3, + 0xf0, 0xf0, 0x44, 0xa9, 0x00, 0x85, 0xff, 0xbc, + 0xc0, 0xf0, 0xb9, 0xbd, 0xf0, 0xbc, 0xc6, 0xf0, + 0xf0, 0x0e, 0x30, 0x08, 0x0a, 0x26, 0xff, 0x88, + 0xd0, 0xfa, 0xf0, 0x04, 0x4a, 0xc8, 0xd0, 0xfc, + 0xbc, 0xc3, 0xf0, 0x88, 0xd0, 0x0b, 0x9d, 0xcd, + 0xf0, 0xa5, 0xff, 0x9d, 0xd0, 0xf0, 0x4c, 0x02, + 0xf5, 0x88, 0xd0, 0x0b, 0x9d, 0xd3, 0xf0, 0xa5, + 0xff, 0x9d, 0xd6, 0xf0, 0x4c, 0x02, 0xf5, 0x8d, + 0xd9, 0xf0, 0xa5, 0xff, 0x8d, 0xdc, 0xf0, 0xe8, + 0xe0, 0x03, 0xd0, 0xb2, 0xad, 0x00, 0xf0, 0x29, + 0x7f, 0x8d, 0x00, 0xf0, 0xad, 0x56, 0xf1, 0x85, + 0xfb, 0xad, 0x57, 0xf1, 0x85, 0xfc, 0xad, 0x58, + 0xf1, 0x85, 0xfd, 0xad, 0x59, 0xf1, 0x85, 0xfe, + 0xad, 0x5a, 0xf1, 0x85, 0xff, 0x6c, 0x5d, 0xf1, + 0xbd, 0x60, 0xf0, 0xd0, 0x03, 0x4c, 0x9f, 0xf6, + 0x4c, 0xba, 0xf5, 0xde, 0x30, 0xf0, 0xd0, 0x03, + 0x4c, 0xa0, 0xf6, 0xbd, 0x36, 0xf0, 0x30, 0xe8, + 0xd0, 0x1a, 0xbd, 0x3f, 0xf0, 0xf0, 0x05, 0xde, + 0x3f, 0xf0, 0xd0, 0x10, 0xbd, 0x39, 0xf0, 0xdd, + 0x30, 0xf0, 0x90, 0x08, 0xbd, 0x1a, 0xf0, 0x29, + 0xfe, 0x9d, 0x1a, 0xf0, 0xbd, 0x42, 0xf0, 0xf0, + 0x56, 0x0a, 0xbd, 0x0e, 0xf0, 0xb0, 0x1d, 0x7d, + 0x45, 0xf0, 0x9d, 0x0e, 0xf0, 0xa8, 0xbd, 0x11, + 0xf0, 0x7d, 0x48, 0xf0, 0x9d, 0x11, 0xf0, 0x48, + 0x98, 0xdd, 0x8d, 0xf0, 0x68, 0xfd, 0x90, 0xf0, + 0xb0, 0x1f, 0x90, 0x2e, 0xfd, 0x45, 0xf0, 0x9d, + 0x0e, 0xf0, 0xbd, 0x11, 0xf0, 0xfd, 0x48, 0xf0, + 0x9d, 0x11, 0xf0, 0xbd, 0x8d, 0xf0, 0xdd, 0x0e, + 0xf0, 0xbd, 0x90, 0xf0, 0xfd, 0x11, 0xf0, 0x90, + 0x11, 0xbd, 0x8d, 0xf0, 0x9d, 0x0e, 0xf0, 0xbd, + 0x90, 0xf0, 0x9d, 0x11, 0xf0, 0xa9, 0x00, 0x9d, + 0x42, 0xf0, 0xbd, 0x60, 0xf0, 0xf0, 0x55, 0xbd, + 0x4b, 0xf0, 0xf0, 0x4b, 0xa0, 0x00, 0xde, 0x4e, + 0xf0, 0xd0, 0x31, 0xbd, 0x51, 0xf0, 0x1d, 0x54, + 0xf0, 0xd0, 0x1b, 0xbd, 0x5d, 0xf0, 0x9d, 0x57, + 0xf0, 0x9d, 0x4e, 0xf0, 0xbd, 0x4b, 0xf0, 0x0a, + 0xbd, 0x5a, 0xf0, 0x90, 0x04, 0x49, 0xff, 0x69, + 0x00, 0x9d, 0x4b, 0xf0, 0xd0, 0x10, 0xbd, 0x57, + 0xf0, 0x9d, 0x4e, 0xf0, 0x98, 0x38, 0xfd, 0x4b, + 0xf0, 0x9d, 0x4b, 0xf0, 0xc9, 0x00, 0x10, 0x01, + 0x88, 0x18, 0x7d, 0x51, 0xf0, 0x9d, 0x51, 0xf0, + 0x98, 0x7d, 0x54, 0xf0, 0x9d, 0x54, 0xf0, 0xbd, + 0x36, 0xf0, 0x30, 0x15, 0xbd, 0x93, 0xf0, 0xf0, + 0x10, 0x18, 0x7d, 0x14, 0xf0, 0x9d, 0x14, 0xf0, + 0xbd, 0x96, 0xf0, 0x7d, 0x17, 0xf0, 0x9d, 0x17, + 0xf0, 0xbd, 0x63, 0xf0, 0xf0, 0x4b, 0xa0, 0x00, + 0xde, 0x66, 0xf0, 0xd0, 0x31, 0xbd, 0x69, 0xf0, + 0x1d, 0x6c, 0xf0, 0xd0, 0x1b, 0xbd, 0x72, 0xf0, + 0x9d, 0x6f, 0xf0, 0x9d, 0x66, 0xf0, 0xbd, 0x63, + 0xf0, 0x0a, 0xbd, 0x75, 0xf0, 0x90, 0x04, 0x49, + 0xff, 0x69, 0x00, 0x9d, 0x63, 0xf0, 0xd0, 0x10, + 0xbd, 0x6f, 0xf0, 0x9d, 0x66, 0xf0, 0x98, 0x38, + 0xfd, 0x63, 0xf0, 0x9d, 0x63, 0xf0, 0xc9, 0x00, + 0x10, 0x01, 0x88, 0x18, 0x7d, 0x69, 0xf0, 0x9d, + 0x69, 0xf0, 0x98, 0x7d, 0x6c, 0xf0, 0x9d, 0x6c, + 0xf0, 0xbd, 0x36, 0xf0, 0x10, 0x03, 0x4c, 0x9f, + 0xf6, 0xa0, 0x00, 0xbd, 0xa2, 0xf0, 0xf0, 0x1c, + 0x10, 0x01, 0xc8, 0x18, 0x6d, 0x23, 0xf0, 0x48, + 0x29, 0x07, 0x8d, 0x23, 0xf0, 0x68, 0x6a, 0x4a, + 0x4a, 0x18, 0x79, 0xa6, 0xf1, 0x18, 0x6d, 0x24, + 0xf0, 0x8d, 0x24, 0xf0, 0x60, 0xbd, 0xa8, 0xf0, + 0x85, 0xfd, 0xbd, 0xab, 0xf0, 0x85, 0xfe, 0xd0, + 0x04, 0x60, 0x20, 0x98, 0xf8, 0xad, 0x00, 0xf0, + 0x3d, 0x62, 0xf1, 0xf0, 0xf4, 0xa0, 0x00, 0xb1, + 0xfd, 0x85, 0xff, 0xc8, 0xb1, 0xfd, 0xa8, 0xa5, + 0xfd, 0x18, 0x69, 0x02, 0x85, 0xfd, 0x9d, 0xa8, + 0xf0, 0xa5, 0xfe, 0x69, 0x00, 0x85, 0xfe, 0x9d, + 0xab, 0xf0, 0xa5, 0xff, 0x29, 0x03, 0xd0, 0xd2, + 0xbd, 0x8d, 0xf0, 0x9d, 0x0e, 0xf0, 0xbd, 0x90, + 0xf0, 0x9d, 0x11, 0xf0, 0xa5, 0xff, 0x9d, 0x05, + 0xf0, 0x98, 0x9d, 0x02, 0xf0, 0x29, 0x07, 0xa8, + 0xb9, 0x67, 0xf1, 0x8d, 0x6f, 0xf1, 0xbd, 0x02, + 0xf0, 0x29, 0x38, 0x4a, 0x4a, 0x4a, 0x7d, 0x81, + 0xf0, 0x85, 0xfd, 0xbd, 0x02, 0xf0, 0x29, 0xc0, + 0x0a, 0x2a, 0x2a, 0xa8, 0xb9, 0x6f, 0xf1, 0x85, + 0xfe, 0xbd, 0x02, 0xf0, 0x29, 0x07, 0xf0, 0x62, + 0xa8, 0xb9, 0x72, 0xf1, 0x65, 0xfe, 0x18, 0x7d, + 0x84, 0xf0, 0x10, 0x05, 0x18, 0x69, 0x0c, 0xe6, + 0xfd, 0xc9, 0x0c, 0x90, 0x04, 0xe9, 0x0c, 0xc6, + 0xfd, 0x85, 0xfe, 0xa8, 0xb9, 0x86, 0xf1, 0x85, + 0xff, 0xb9, 0x7a, 0xf1, 0xa4, 0xfd, 0x88, 0x30, + 0x06, 0x46, 0xff, 0x6a, 0x88, 0x10, 0xfa, 0x18, + 0x7d, 0x87, 0xf0, 0x9d, 0x8d, 0xf0, 0xa5, 0xff, + 0x7d, 0x8a, 0xf0, 0x9d, 0x90, 0xf0, 0xbd, 0x05, + 0xf0, 0xd0, 0x03, 0x4c, 0xa0, 0xf6, 0xbd, 0x45, + 0xf0, 0x1d, 0x48, 0xf0, 0xf0, 0x16, 0xbd, 0x0e, + 0xf0, 0xdd, 0x8d, 0xf0, 0xbd, 0x11, 0xf0, 0xfd, + 0x90, 0xf0, 0xa9, 0xfe, 0x6a, 0x9d, 0x42, 0xf0, + 0x90, 0x11, 0xf0, 0x4a, 0x9d, 0x42, 0xf0, 0xbd, + 0x8d, 0xf0, 0x9d, 0x0e, 0xf0, 0xbd, 0x90, 0xf0, + 0x9d, 0x11, 0xf0, 0xbd, 0x36, 0xf0, 0x0a, 0xd0, + 0x35, 0xbd, 0x93, 0xf0, 0xf0, 0x0c, 0xbd, 0x99, + 0xf0, 0x9d, 0x14, 0xf0, 0xbd, 0x9c, 0xf0, 0x9d, + 0x17, 0xf0, 0xbd, 0x9f, 0xf0, 0xf0, 0x0f, 0xa4, + 0xfd, 0x18, 0x79, 0x92, 0xf1, 0xa4, 0xfe, 0x18, + 0x79, 0x9a, 0xf1, 0x18, 0x90, 0x08, 0xbd, 0xa2, + 0xf0, 0xf0, 0x0b, 0xbd, 0xa5, 0xf0, 0x8d, 0x24, + 0xf0, 0xa9, 0x00, 0x8d, 0x23, 0xf0, 0xbd, 0x3c, + 0xf0, 0x9d, 0x3f, 0xf0, 0xbd, 0x05, 0xf0, 0x29, + 0x40, 0x9d, 0x36, 0xf0, 0xbd, 0x05, 0xf0, 0x4a, + 0x4a, 0x29, 0x07, 0xd0, 0x30, 0xbd, 0x05, 0xf0, + 0x30, 0x14, 0xad, 0x27, 0xf0, 0x29, 0x3c, 0xd0, + 0x1e, 0xad, 0x27, 0xf0, 0x0a, 0x2a, 0x2a, 0xd0, + 0x02, 0xa9, 0x04, 0x4c, 0x70, 0xf8, 0xad, 0x28, + 0xf0, 0xf0, 0x0c, 0x29, 0x3f, 0xd0, 0x08, 0xad, + 0x28, 0xf0, 0x0a, 0x2a, 0x2a, 0xd0, 0x66, 0xa9, + 0x10, 0x8d, 0x00, 0xf0, 0x60, 0xc9, 0x01, 0xd0, + 0x13, 0xbd, 0x05, 0xf0, 0x29, 0x20, 0xd0, 0x06, + 0xad, 0x29, 0xf0, 0x4c, 0x70, 0xf8, 0xbd, 0x2a, + 0xf0, 0x4c, 0x70, 0xf8, 0xa8, 0xbd, 0x05, 0xf0, + 0x29, 0xa0, 0xc9, 0x80, 0xf0, 0x30, 0x85, 0xff, + 0x18, 0xad, 0x27, 0xf0, 0xd0, 0x01, 0x38, 0x88, + 0x88, 0xf0, 0x06, 0x6a, 0xb0, 0x4e, 0x88, 0xd0, + 0xfa, 0xa4, 0xff, 0x85, 0xff, 0xf0, 0x26, 0x46, + 0xff, 0xb0, 0x41, 0xf0, 0x42, 0x65, 0xff, 0xb0, + 0x3e, 0xc8, 0x10, 0x19, 0x46, 0xff, 0xb0, 0x34, + 0x65, 0xff, 0x90, 0x11, 0xb0, 0x31, 0xad, 0x28, + 0xf0, 0xf0, 0x29, 0x88, 0x88, 0xf0, 0x06, 0x4a, + 0xb0, 0x22, 0x88, 0xd0, 0xfa, 0x9d, 0x30, 0xf0, + 0xbd, 0x1a, 0xf0, 0x29, 0xf6, 0x9d, 0x1a, 0xf0, + 0x38, 0xbd, 0x02, 0xf0, 0x29, 0x07, 0xd0, 0x03, + 0x7e, 0x36, 0xf0, 0xbd, 0x1a, 0xf0, 0x69, 0x00, + 0x9d, 0x1a, 0xf0, 0x60, 0xa9, 0x10, 0x2c, 0xa9, + 0x18, 0x8d, 0x00, 0xf0, 0x60, 0x98, 0x48, 0xa5, + 0xff, 0x4a, 0x90, 0x03, 0x4c, 0x42, 0xfa, 0x4a, + 0x4a, 0xb0, 0x1e, 0x4a, 0xb0, 0x0e, 0x9d, 0x9c, + 0xf0, 0x9d, 0x17, 0xf0, 0x68, 0x9d, 0x99, 0xf0, + 0x9d, 0x14, 0xf0, 0x60, 0x4a, 0x90, 0x02, 0x09, + 0xf8, 0x9d, 0x8a, 0xf0, 0x68, 0x9d, 0x87, 0xf0, + 0x60, 0x4a, 0xb0, 0x03, 0x4c, 0x4a, 0xf9, 0x4a, + 0xb0, 0x61, 0x4a, 0xb0, 0x0f, 0xd0, 0x08, 0x68, + 0x9d, 0xa5, 0xf0, 0x8d, 0x24, 0xf0, 0x60, 0x68, + 0x9d, 0x3c, 0xf0, 0x60, 0xd0, 0x48, 0x68, 0x9d, + 0x7e, 0xf0, 0xc9, 0x5b, 0xf0, 0x33, 0xa8, 0x4a, + 0x4a, 0x4a, 0x38, 0xe9, 0x0b, 0x18, 0x7d, 0x84, + 0xf0, 0x30, 0x0c, 0xc9, 0x0c, 0x90, 0x11, 0xe9, + 0x0c, 0xde, 0x81, 0xf0, 0x4c, 0x0b, 0xf9, 0xc9, + 0xf5, 0xb0, 0x05, 0x69, 0x0c, 0xfe, 0x81, 0xf0, + 0x9d, 0x84, 0xf0, 0x98, 0x29, 0x07, 0x38, 0xe9, + 0x03, 0x18, 0x7d, 0x81, 0xf0, 0x9d, 0x81, 0xf0, + 0x60, 0xbd, 0x78, 0xf0, 0x9d, 0x81, 0xf0, 0xbd, + 0x7b, 0xf0, 0x9d, 0x84, 0xf0, 0x60, 0x68, 0x9d, + 0xc6, 0xf0, 0x60, 0x4a, 0xb0, 0x08, 0x9d, 0x0b, + 0xf0, 0x68, 0x9d, 0x08, 0xf0, 0x60, 0x4a, 0x6a, + 0x6a, 0x6d, 0x5b, 0xf1, 0x8d, 0x2d, 0xf0, 0x68, + 0x6d, 0x5c, 0xf1, 0x8d, 0x2e, 0xf0, 0x60, 0x4a, + 0x90, 0x03, 0x4c, 0xd3, 0xf9, 0x4a, 0xb0, 0x40, + 0x4a, 0xb0, 0x17, 0x4a, 0xb0, 0x0f, 0x68, 0x8d, + 0x27, 0xf0, 0x4a, 0x4a, 0x4a, 0xa8, 0xb9, 0xaf, + 0xf1, 0x8d, 0x28, 0xf0, 0x60, 0x68, 0x9d, 0x5d, + 0xf0, 0x60, 0x4a, 0xb0, 0x05, 0x68, 0x8d, 0x01, + 0xf0, 0x60, 0x68, 0xf0, 0x11, 0x9d, 0x75, 0xf0, + 0xbc, 0x63, 0xf0, 0xd0, 0x08, 0x9d, 0x63, 0xf0, + 0xa9, 0x01, 0x9d, 0x66, 0xf0, 0x60, 0x9d, 0x63, + 0xf0, 0x9d, 0x69, 0xf0, 0x9d, 0x6c, 0xf0, 0x60, + 0x4a, 0xb0, 0x30, 0x4a, 0xb0, 0x05, 0x68, 0x9d, + 0x39, 0xf0, 0x60, 0x68, 0xa0, 0x00, 0x4a, 0x90, + 0x02, 0xc8, 0x18, 0x48, 0x29, 0x07, 0x79, 0xac, + 0xf1, 0x9d, 0x78, 0xf0, 0x9d, 0x81, 0xf0, 0x68, + 0x4a, 0x4a, 0x4a, 0x18, 0x79, 0xad, 0xf1, 0x9d, + 0x7b, 0xf0, 0x9d, 0x84, 0xf0, 0xa9, 0x5b, 0x9d, + 0x7e, 0xf0, 0x60, 0x4a, 0xb0, 0x05, 0x68, 0x9d, + 0xa2, 0xf0, 0x60, 0x68, 0x8d, 0xcc, 0xf0, 0x60, + 0x4a, 0xb0, 0x27, 0x4a, 0xb0, 0x0d, 0x4a, 0xb0, + 0x05, 0x68, 0x8d, 0x29, 0xf0, 0x60, 0x68, 0x9d, + 0x9f, 0xf0, 0x60, 0x4a, 0xb0, 0x0f, 0x68, 0x9d, + 0x93, 0xf0, 0xa0, 0x00, 0x0a, 0x90, 0x01, 0x88, + 0x98, 0x9d, 0x96, 0xf0, 0x60, 0x68, 0x9d, 0x72, + 0xf0, 0x60, 0x4a, 0xb0, 0x1c, 0x4a, 0xb0, 0x15, + 0x68, 0x9d, 0xb7, 0xf0, 0xa5, 0xfd, 0x9d, 0xb1, + 0xf0, 0xa5, 0xfe, 0x9d, 0xb4, 0xf0, 0xbd, 0x33, + 0xf0, 0x9d, 0xae, 0xf0, 0x60, 0x68, 0x6c, 0x5f, + 0xf1, 0x4a, 0xb0, 0x1e, 0x68, 0xd0, 0x0a, 0x9d, + 0x4b, 0xf0, 0x9d, 0x51, 0xf0, 0x9d, 0x54, 0xf0, + 0x60, 0x9d, 0x5a, 0xf0, 0xbc, 0x4b, 0xf0, 0xd0, + 0x08, 0x9d, 0x4b, 0xf0, 0xa9, 0x01, 0x9d, 0x4e, + 0xf0, 0x60, 0x68, 0x9d, 0x2a, 0xf0, 0x60, 0x4a, + 0x90, 0x08, 0x9d, 0x48, 0xf0, 0x68, 0x9d, 0x45, + 0xf0, 0x60, 0x68, 0x4a, 0xb0, 0x61, 0x4a, 0xb0, + 0x25, 0x4a, 0xb0, 0x05, 0x4a, 0xa0, 0xf0, 0xd0, + 0x06, 0x0a, 0x0a, 0x0a, 0x0a, 0xa0, 0x0f, 0x85, + 0xff, 0x98, 0xb0, 0x09, 0x3d, 0x1d, 0xf0, 0x05, + 0xff, 0x9d, 0x1d, 0xf0, 0x60, 0x3d, 0x20, 0xf0, + 0x05, 0xff, 0x9d, 0x20, 0xf0, 0x60, 0x4a, 0xb0, + 0x38, 0x4a, 0xb0, 0x64, 0x85, 0xff, 0xbd, 0xba, + 0xf0, 0xdd, 0xa9, 0xf1, 0xf0, 0x54, 0xfe, 0xba, + 0xf0, 0xa8, 0xa5, 0xfd, 0x99, 0xe1, 0xf0, 0xa5, + 0xfe, 0x99, 0xf0, 0xf0, 0xbd, 0x33, 0xf0, 0x99, + 0x2f, 0xf1, 0xa4, 0xff, 0xb9, 0x17, 0xf1, 0xf0, + 0x36, 0x85, 0xfe, 0xb9, 0xff, 0xf0, 0x85, 0xfd, + 0xb9, 0x3e, 0xf1, 0x9d, 0x33, 0xf0, 0x60, 0xb0, + 0x4b, 0x4a, 0xb0, 0x3c, 0xa8, 0xa5, 0xfd, 0x99, + 0xff, 0xf0, 0xa5, 0xfe, 0x99, 0x17, 0xf1, 0xbd, + 0x33, 0xf0, 0x99, 0x3e, 0xf1, 0xbd, 0xba, 0xf0, + 0xdd, 0xa9, 0xf1, 0xf0, 0x0d, 0xfe, 0xba, 0xf0, + 0xa8, 0xa9, 0x00, 0x99, 0xf0, 0xf0, 0x60, 0xa9, + 0x30, 0x2c, 0xa9, 0x28, 0x8d, 0x00, 0xf0, 0x60, + 0x0a, 0x0a, 0x0a, 0x0a, 0x4d, 0x25, 0xf0, 0x29, + 0xf0, 0x4d, 0x25, 0xf0, 0x8d, 0x25, 0xf0, 0x60, + 0x4d, 0x26, 0xf0, 0x29, 0x0f, 0x4d, 0x26, 0xf0, + 0x8d, 0x26, 0xf0, 0x60, 0x4a, 0xb0, 0x0b, 0x4a, + 0xb0, 0x04, 0x8d, 0xca, 0xf0, 0x60, 0x8d, 0xcb, + 0xf0, 0x60, 0x4a, 0x90, 0x03, 0x4c, 0xa5, 0xfb, + 0x4a, 0xa8, 0xf0, 0x21, 0x88, 0xf0, 0x34, 0x88, + 0xf0, 0x42, 0x88, 0xf0, 0x4a, 0x88, 0xf0, 0x52, + 0x88, 0xf0, 0x5c, 0x88, 0xf0, 0x66, 0x88, 0xf0, + 0x73, 0x29, 0x07, 0x09, 0x10, 0xb0, 0x03, 0x4c, + 0xb7, 0xfa, 0x4c, 0x7f, 0xfa, 0xac, 0x26, 0xf0, + 0xb0, 0x07, 0xc8, 0x98, 0x29, 0x0f, 0xd0, 0x07, + 0x60, 0x98, 0x29, 0x0f, 0xf0, 0x04, 0x88, 0x8c, + 0x26, 0xf0, 0x60, 0xbd, 0x62, 0xf1, 0x49, 0xff, + 0x2d, 0x25, 0xf0, 0x90, 0x03, 0x1d, 0x62, 0xf1, + 0x8d, 0x25, 0xf0, 0x60, 0xbd, 0x1a, 0xf0, 0x29, + 0xfb, 0x90, 0x55, 0x09, 0x04, 0xb0, 0x51, 0xbd, + 0x1a, 0xf0, 0x29, 0xfd, 0x90, 0x4a, 0x09, 0x02, + 0xb0, 0x46, 0xad, 0x25, 0xf0, 0x29, 0xf7, 0x90, + 0x02, 0x09, 0x08, 0x8d, 0x25, 0xf0, 0x60, 0xad, + 0x26, 0xf0, 0x29, 0x7f, 0x90, 0x02, 0x09, 0x80, + 0x8d, 0x26, 0xf0, 0x60, 0x98, 0x8d, 0xbd, 0xf0, + 0x8d, 0xdf, 0xf0, 0xc8, 0x8c, 0xe0, 0xf0, 0x2a, + 0x8d, 0xc9, 0xf0, 0x60, 0x98, 0x2a, 0x9d, 0x60, + 0xf0, 0x60, 0x4a, 0xb0, 0x27, 0x4a, 0xb0, 0x14, + 0xd0, 0x02, 0xa9, 0x08, 0x0a, 0x0a, 0x0a, 0x0a, + 0x5d, 0x1a, 0xf0, 0x29, 0xf0, 0x5d, 0x1a, 0xf0, + 0x9d, 0x1a, 0xf0, 0x60, 0x0a, 0x0a, 0x0a, 0x0a, + 0x4d, 0x26, 0xf0, 0x29, 0x70, 0x4d, 0x26, 0xf0, + 0x8d, 0x26, 0xf0, 0x60, 0x4a, 0x90, 0x04, 0x9d, + 0xc0, 0xf0, 0x60, 0xa8, 0xf0, 0x20, 0x88, 0xf0, + 0x40, 0x88, 0xf0, 0x63, 0x29, 0x03, 0x9d, 0xc3, + 0xf0, 0xa9, 0x00, 0x9d, 0xcd, 0xf0, 0x9d, 0xd0, + 0xf0, 0x9d, 0xd3, 0xf0, 0x9d, 0xd6, 0xf0, 0x8d, + 0xd9, 0xf0, 0x8d, 0xdc, 0xf0, 0x60, 0xbd, 0xb7, + 0xf0, 0xf0, 0x05, 0xde, 0xb7, 0xf0, 0xf0, 0x12, + 0xbd, 0x33, 0xf0, 0xdd, 0xae, 0xf0, 0xd0, 0x0b, + 0xbd, 0xb1, 0xf0, 0x85, 0xfd, 0xbd, 0xb4, 0xf0, + 0x85, 0xfe, 0x60, 0xa9, 0x38, 0x8d, 0x00, 0xf0, + 0x60, 0xbd, 0xba, 0xf0, 0xdd, 0xa8, 0xf1, 0xf0, + 0x18, 0xde, 0xba, 0xf0, 0xa8, 0x88, 0xb9, 0xf0, + 0xf0, 0xf0, 0x0d, 0x85, 0xfe, 0xb9, 0xe1, 0xf0, + 0x85, 0xfd, 0xb9, 0x2f, 0xf1, 0x9d, 0x33, 0xf0, + 0x60, 0xa9, 0x20, 0x8d, 0x00, 0xf0, 0x60, 0xad, + 0x00, 0xf0, 0x5d, 0x62, 0xf1, 0x8d, 0x00, 0xf0, + 0xa9, 0x01, 0x9d, 0x30, 0xf0, 0x60, 0xad, 0x00, + 0xf0, 0x29, 0x07, 0x8d, 0x81, 0xfc, 0xd0, 0x03, + 0x20, 0xe9, 0xf2, 0x60, 0x00, 0xa2, 0x51, 0xa0, + 0xfc, 0x8e, 0x5d, 0xf1, 0x8c, 0x5e, 0xf1, 0x20, + 0xcf, 0xf1, 0xa2, 0x00, 0xa0, 0x09, 0x20, 0x00, + 0xf2, 0xa9, 0x07, 0x8d, 0x00, 0xf0, 0x8d, 0x81, + 0xfc, 0x60, 0x00, 0x00, 0x00, 0xa9, 0x00, 0x29, + 0xff, 0xf0, 0xf6, 0x4c, 0x29, 0xf3, 0xa9, 0x07, + 0x8d, 0x00, 0xf0, 0x60, 0x00, 0x20, 0x60, 0xec, + 0x4c, 0x60, 0xfc, 0x20, 0x80, 0xec, 0x4c, 0x80, + 0xfc, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, diff --git a/Frameworks/libsidplayfp/sidplayfp b/Frameworks/libsidplayfp/sidplayfp new file mode 160000 index 000000000..a6620bdcd --- /dev/null +++ b/Frameworks/libsidplayfp/sidplayfp @@ -0,0 +1 @@ +Subproject commit a6620bdcd5bf9b6f09a6164ea2aea7d6cb34ef25 diff --git a/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj b/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj new file mode 100644 index 000000000..fb204a3c1 --- /dev/null +++ b/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj @@ -0,0 +1,307 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 50; + objects = { + +/* Begin PBXFileReference section */ + EDBE8EF925E7E641001EB4A4 /* sidplayfp.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = sidplayfp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + EDBE8EF625E7E641001EB4A4 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + EDBE8EEF25E7E641001EB4A4 = { + isa = PBXGroup; + children = ( + EDBE8EFA25E7E641001EB4A4 /* Products */, + ); + sourceTree = ""; + }; + EDBE8EFA25E7E641001EB4A4 /* Products */ = { + isa = PBXGroup; + children = ( + EDBE8EF925E7E641001EB4A4 /* sidplayfp.framework */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + EDBE8EF425E7E641001EB4A4 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + EDBE8EF825E7E641001EB4A4 /* sidplayfp */ = { + isa = PBXNativeTarget; + buildConfigurationList = EDBE8F0125E7E641001EB4A4 /* Build configuration list for PBXNativeTarget "sidplayfp" */; + buildPhases = ( + EDBE8EF425E7E641001EB4A4 /* Headers */, + EDBE8EF525E7E641001EB4A4 /* Sources */, + EDBE8EF625E7E641001EB4A4 /* Frameworks */, + EDBE8EF725E7E641001EB4A4 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = sidplayfp; + productName = libsidplayfp; + productReference = EDBE8EF925E7E641001EB4A4 /* sidplayfp.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + EDBE8EF025E7E641001EB4A4 /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 1250; + TargetAttributes = { + EDBE8EF825E7E641001EB4A4 = { + CreatedOnToolsVersion = 12.5; + }; + }; + }; + buildConfigurationList = EDBE8EF325E7E641001EB4A4 /* Build configuration list for PBXProject "sidplayfp" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = EDBE8EEF25E7E641001EB4A4; + productRefGroup = EDBE8EFA25E7E641001EB4A4 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + EDBE8EF825E7E641001EB4A4 /* sidplayfp */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + EDBE8EF725E7E641001EB4A4 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + EDBE8EF525E7E641001EB4A4 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + EDBE8EFF25E7E641001EB4A4 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.13; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + EDBE8F0025E7E641001EB4A4 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MACOSX_DEPLOYMENT_TARGET = 10.13; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = macosx; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + EDBE8F0225E7E641001EB4A4 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = libsidplayfp/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = org.cogx.libsidplayfp; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + EDBE8F0325E7E641001EB4A4 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = libsidplayfp/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + "@loader_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = org.cogx.libsidplayfp; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + EDBE8EF325E7E641001EB4A4 /* Build configuration list for PBXProject "sidplayfp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + EDBE8EFF25E7E641001EB4A4 /* Debug */, + EDBE8F0025E7E641001EB4A4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + EDBE8F0125E7E641001EB4A4 /* Build configuration list for PBXNativeTarget "sidplayfp" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + EDBE8F0225E7E641001EB4A4 /* Debug */, + EDBE8F0325E7E641001EB4A4 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = EDBE8EF025E7E641001EB4A4 /* Project object */; +} diff --git a/Frameworks/libsidplayfp/update-generated.sh b/Frameworks/libsidplayfp/update-generated.sh new file mode 100755 index 000000000..a17730ea0 --- /dev/null +++ b/Frameworks/libsidplayfp/update-generated.sh @@ -0,0 +1,21 @@ +#!/bin/sh + +set -e + +rm -rf generated +cd sidplayfp + +autoreconf -vfi +./configure --without-gcrypt +make -s -j$(sysctl -n hw.ncpu) + +{ git status --porcelain --ignored | awk '{ print $2 }';\ + git submodule foreach\ + 'git status --ignored --porcelain |\awk "{ print \"$sm_path/\"\$2 }"'; } |\ + grep -E 'bin|h$' |\ + xargs -I % rsync -R % ../generated + +git clean -ffdx > /dev/null +git submodule foreach git clean -ffdx > /dev/null + +cd - diff --git a/Plugins/sidplay/sidplay.xcodeproj/project.pbxproj b/Plugins/sidplay/sidplay.xcodeproj/project.pbxproj index 18a3aebac..45b147005 100644 --- a/Plugins/sidplay/sidplay.xcodeproj/project.pbxproj +++ b/Plugins/sidplay/sidplay.xcodeproj/project.pbxproj @@ -10,24 +10,15 @@ 8314D8091A35654900EEE8E6 /* SidDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8314D8041A35654900EEE8E6 /* SidDecoder.mm */; }; 8314D80A1A35654900EEE8E6 /* SidMetadataReader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8314D8061A35654900EEE8E6 /* SidMetadataReader.mm */; }; 8314D80B1A35654900EEE8E6 /* SidContainer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8314D8081A35654900EEE8E6 /* SidContainer.mm */; }; - 836F5BE81A357815002730CC /* sidplayfp.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 836F5BE51A357804002730CC /* sidplayfp.framework */; }; - 836F5BE91A35781B002730CC /* sidplayfp.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 836F5BE51A357804002730CC /* sidplayfp.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; 836F5BEC1A357915002730CC /* roms.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836F5BEA1A357915002730CC /* roms.cpp */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 836F5BE41A357804002730CC /* PBXContainerItemProxy */ = { + EDBE8F0E25E7E74D001EB4A4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 8314D6711A354E7800EEE8E6 /* sidplayfp.xcodeproj */; + containerPortal = EDBE8F0A25E7E74D001EB4A4 /* sidplayfp.xcodeproj */; proxyType = 2; - remoteGlobalIDString = 8314D6551A354E7800EEE8E6; - remoteInfo = sidplayfp; - }; - 836F5BE61A35780B002730CC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 8314D6711A354E7800EEE8E6 /* sidplayfp.xcodeproj */; - proxyType = 1; - remoteGlobalIDString = 8314D6541A354E7800EEE8E6; + remoteGlobalIDString = EDBE8EF925E7E641001EB4A4; remoteInfo = sidplayfp; }; /* End PBXContainerItemProxy section */ @@ -39,7 +30,6 @@ dstPath = ""; dstSubfolderSpec = 10; files = ( - 836F5BE91A35781B002730CC /* sidplayfp.framework in CopyFiles */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -48,7 +38,6 @@ /* Begin PBXFileReference section */ 8314D6311A354DFE00EEE8E6 /* sidplay.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = sidplay.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; 8314D6351A354DFE00EEE8E6 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - 8314D6711A354E7800EEE8E6 /* sidplayfp.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = sidplayfp.xcodeproj; path = ../../Frameworks/libsidplay/sidplayfp.xcodeproj; sourceTree = ""; }; 8314D8031A35654900EEE8E6 /* SidDecoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SidDecoder.h; sourceTree = SOURCE_ROOT; }; 8314D8041A35654900EEE8E6 /* SidDecoder.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = SidDecoder.mm; sourceTree = SOURCE_ROOT; }; 8314D8051A35654900EEE8E6 /* SidMetadataReader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SidMetadataReader.h; sourceTree = SOURCE_ROOT; }; @@ -60,6 +49,7 @@ 8314D80E1A3565AC00EEE8E6 /* PlaylistController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = PlaylistController.h; path = ../../../Playlist/PlaylistController.h; sourceTree = ""; }; 836F5BEA1A357915002730CC /* roms.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = roms.cpp; sourceTree = SOURCE_ROOT; }; 836F5BEB1A357915002730CC /* roms.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; path = roms.hpp; sourceTree = SOURCE_ROOT; }; + EDBE8F0A25E7E74D001EB4A4 /* sidplayfp.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = sidplayfp.xcodeproj; path = ../../Frameworks/libsidplayfp/sidplayfp.xcodeproj; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -67,7 +57,6 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 836F5BE81A357815002730CC /* sidplayfp.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -121,15 +110,15 @@ 8314D64A1A354E4400EEE8E6 /* Frameworks */ = { isa = PBXGroup; children = ( - 8314D6711A354E7800EEE8E6 /* sidplayfp.xcodeproj */, + EDBE8F0A25E7E74D001EB4A4 /* sidplayfp.xcodeproj */, ); name = Frameworks; sourceTree = ""; }; - 836F5BE11A357804002730CC /* Products */ = { + EDBE8F0B25E7E74D001EB4A4 /* Products */ = { isa = PBXGroup; children = ( - 836F5BE51A357804002730CC /* sidplayfp.framework */, + EDBE8F0F25E7E74D001EB4A4 /* sidplayfp.framework */, ); name = Products; sourceTree = ""; @@ -149,7 +138,6 @@ buildRules = ( ); dependencies = ( - 836F5BE71A35780B002730CC /* PBXTargetDependency */, ); name = sidplay; productName = sidplay; @@ -185,8 +173,8 @@ projectDirPath = ""; projectReferences = ( { - ProductGroup = 836F5BE11A357804002730CC /* Products */; - ProjectRef = 8314D6711A354E7800EEE8E6 /* sidplayfp.xcodeproj */; + ProductGroup = EDBE8F0B25E7E74D001EB4A4 /* Products */; + ProjectRef = EDBE8F0A25E7E74D001EB4A4 /* sidplayfp.xcodeproj */; }, ); projectRoot = ""; @@ -197,11 +185,11 @@ /* End PBXProject section */ /* Begin PBXReferenceProxy section */ - 836F5BE51A357804002730CC /* sidplayfp.framework */ = { + EDBE8F0F25E7E74D001EB4A4 /* sidplayfp.framework */ = { isa = PBXReferenceProxy; fileType = wrapper.framework; path = sidplayfp.framework; - remoteRef = 836F5BE41A357804002730CC /* PBXContainerItemProxy */; + remoteRef = EDBE8F0E25E7E74D001EB4A4 /* PBXContainerItemProxy */; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXReferenceProxy section */ @@ -230,14 +218,6 @@ }; /* End PBXSourcesBuildPhase section */ -/* Begin PBXTargetDependency section */ - 836F5BE71A35780B002730CC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = sidplayfp; - targetProxy = 836F5BE61A35780B002730CC /* PBXContainerItemProxy */; - }; -/* End PBXTargetDependency section */ - /* Begin XCBuildConfiguration section */ 8314D6361A354DFE00EEE8E6 /* Debug */ = { isa = XCBuildConfiguration; From 0aff2c956776e80fd703898134dbd97768f91f19 Mon Sep 17 00:00:00 2001 From: Dzmitry Neviadomski Date: Thu, 25 Feb 2021 17:28:08 +0300 Subject: [PATCH 3/5] Add sidplayfp Xcode subproject as dep. --- .../sidplayfp.xcodeproj/project.pbxproj | 1161 ++++++++++++++++- .../sidplay/sidplay.xcodeproj/project.pbxproj | 4 + 2 files changed, 1161 insertions(+), 4 deletions(-) diff --git a/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj b/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj index fb204a3c1..c4f6aec80 100644 --- a/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj +++ b/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj @@ -6,8 +6,442 @@ objectVersion = 50; objects = { +/* Begin PBXBuildFile section */ + EDBE900E25E7E7A2001EB4A4 /* sidrandom.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F1225E7E79F001EB4A4 /* sidrandom.h */; }; + EDBE900F25E7E7A2001EB4A4 /* reloc65.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F1325E7E79F001EB4A4 /* reloc65.cpp */; }; + EDBE901025E7E7A2001EB4A4 /* reloc65.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F1425E7E79F001EB4A4 /* reloc65.h */; }; + EDBE901225E7E7A2001EB4A4 /* mixer.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F1625E7E79F001EB4A4 /* mixer.h */; }; + EDBE901325E7E7A2001EB4A4 /* lightpen.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F1925E7E79F001EB4A4 /* lightpen.h */; }; + EDBE901425E7E7A2001EB4A4 /* mos656x.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F1A25E7E79F001EB4A4 /* mos656x.h */; }; + EDBE901525E7E7A2001EB4A4 /* mos656x.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F1B25E7E79F001EB4A4 /* mos656x.cpp */; }; + EDBE901625E7E7A2001EB4A4 /* sprites.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F1C25E7E79F001EB4A4 /* sprites.h */; }; + EDBE901725E7E7A2001EB4A4 /* c64cpu.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F1D25E7E79F001EB4A4 /* c64cpu.h */; }; + EDBE901825E7E7A2001EB4A4 /* c64vic.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F1E25E7E79F001EB4A4 /* c64vic.h */; }; + EDBE901925E7E7A2001EB4A4 /* mos6510debug.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F2025E7E79F001EB4A4 /* mos6510debug.h */; }; + EDBE901A25E7E7A2001EB4A4 /* mos6510.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F2125E7E79F001EB4A4 /* mos6510.cpp */; }; + EDBE901B25E7E7A2001EB4A4 /* flags.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F2225E7E79F001EB4A4 /* flags.h */; }; + EDBE901C25E7E7A2001EB4A4 /* opcodes.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F2325E7E79F001EB4A4 /* opcodes.h */; }; + EDBE901D25E7E7A2001EB4A4 /* mos6510.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F2425E7E79F001EB4A4 /* mos6510.h */; }; + EDBE901E25E7E7A2001EB4A4 /* mos6510debug.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F2525E7E79F001EB4A4 /* mos6510debug.cpp */; }; + EDBE901F25E7E7A2001EB4A4 /* c64.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F2625E7E79F001EB4A4 /* c64.h */; }; + EDBE902025E7E7A2001EB4A4 /* c64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F2725E7E79F001EB4A4 /* c64.cpp */; }; + EDBE902125E7E7A2001EB4A4 /* mmu.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F2825E7E79F001EB4A4 /* mmu.h */; }; + EDBE902225E7E7A2001EB4A4 /* c64sid.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F2925E7E79F001EB4A4 /* c64sid.h */; }; + EDBE902325E7E7A2001EB4A4 /* c64cia.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F2A25E7E79F001EB4A4 /* c64cia.h */; }; + EDBE902425E7E7A2001EB4A4 /* c64env.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F2B25E7E79F001EB4A4 /* c64env.h */; }; + EDBE902525E7E7A2001EB4A4 /* mmu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F2C25E7E79F001EB4A4 /* mmu.cpp */; }; + EDBE902625E7E7A2001EB4A4 /* tod.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F2E25E7E79F001EB4A4 /* tod.h */; }; + EDBE902725E7E7A2001EB4A4 /* tod.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F2F25E7E79F001EB4A4 /* tod.cpp */; }; + EDBE902825E7E7A2001EB4A4 /* SerialPort.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F3025E7E79F001EB4A4 /* SerialPort.cpp */; }; + EDBE902925E7E7A2001EB4A4 /* interrupt.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F3125E7E79F001EB4A4 /* interrupt.cpp */; }; + EDBE902A25E7E7A2001EB4A4 /* timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F3225E7E79F001EB4A4 /* timer.cpp */; }; + EDBE902B25E7E7A2001EB4A4 /* SerialPort.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F3325E7E79F001EB4A4 /* SerialPort.h */; }; + EDBE902C25E7E7A2001EB4A4 /* timer.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F3425E7E79F001EB4A4 /* timer.h */; }; + EDBE902D25E7E7A2001EB4A4 /* interrupt.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F3525E7E79F001EB4A4 /* interrupt.h */; }; + EDBE902E25E7E7A2001EB4A4 /* mos6526.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F3625E7E79F001EB4A4 /* mos6526.h */; }; + EDBE902F25E7E7A2001EB4A4 /* mos6526.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F3725E7E79F001EB4A4 /* mos6526.cpp */; }; + EDBE903025E7E7A2001EB4A4 /* ExtraSidBank.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F3925E7E79F001EB4A4 /* ExtraSidBank.h */; }; + EDBE903125E7E7A2001EB4A4 /* SystemROMBanks.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F3A25E7E79F001EB4A4 /* SystemROMBanks.h */; }; + EDBE903225E7E7A2001EB4A4 /* ColorRAMBank.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F3B25E7E79F001EB4A4 /* ColorRAMBank.h */; }; + EDBE903325E7E7A2001EB4A4 /* IOBank.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F3C25E7E79F001EB4A4 /* IOBank.h */; }; + EDBE903425E7E7A2001EB4A4 /* SystemRAMBank.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F3D25E7E79F001EB4A4 /* SystemRAMBank.h */; }; + EDBE903525E7E7A2001EB4A4 /* NullSid.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F3E25E7E79F001EB4A4 /* NullSid.h */; }; + EDBE903625E7E7A2001EB4A4 /* ZeroRAMBank.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F3F25E7E79F001EB4A4 /* ZeroRAMBank.h */; }; + EDBE903725E7E7A2001EB4A4 /* DisconnectedBusBank.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F4025E7E79F001EB4A4 /* DisconnectedBusBank.h */; }; + EDBE903825E7E7A2001EB4A4 /* SidBank.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F4125E7E7A0001EB4A4 /* SidBank.h */; }; + EDBE903925E7E7A2001EB4A4 /* Bank.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F4225E7E7A0001EB4A4 /* Bank.h */; }; + EDBE903A25E7E7A2001EB4A4 /* stringutils.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F4325E7E7A0001EB4A4 /* stringutils.h */; }; + EDBE903C25E7E7A2001EB4A4 /* hardsid-emu.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F4725E7E7A0001EB4A4 /* hardsid-emu.h */; }; + EDBE903D25E7E7A2001EB4A4 /* hardsid-emu-unix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F4825E7E7A0001EB4A4 /* hardsid-emu-unix.cpp */; }; + EDBE903E25E7E7A2001EB4A4 /* hardsid.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F4925E7E7A0001EB4A4 /* hardsid.h */; }; + EDBE903F25E7E7A2001EB4A4 /* hardsid-builder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F4A25E7E7A0001EB4A4 /* hardsid-builder.cpp */; }; + EDBE905425E7E7A2001EB4A4 /* resid-emu.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F6625E7E7A0001EB4A4 /* resid-emu.h */; }; + EDBE905625E7E7A2001EB4A4 /* dac.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F6925E7E7A0001EB4A4 /* dac.h */; }; + EDBE905725E7E7A2001EB4A4 /* extfilt.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F6A25E7E7A0001EB4A4 /* extfilt.h */; }; + EDBE905825E7E7A2001EB4A4 /* envelope.cc in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F6B25E7E7A0001EB4A4 /* envelope.cc */; }; + EDBE905925E7E7A2001EB4A4 /* pot.cc in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F6C25E7E7A0001EB4A4 /* pot.cc */; }; + EDBE905C25E7E7A2001EB4A4 /* spline.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F6F25E7E7A0001EB4A4 /* spline.h */; }; + EDBE905F25E7E7A2001EB4A4 /* resid-config.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F7225E7E7A0001EB4A4 /* resid-config.h */; }; + EDBE906125E7E7A2001EB4A4 /* voice.cc in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F7425E7E7A0001EB4A4 /* voice.cc */; }; + EDBE906225E7E7A2001EB4A4 /* sid.cc in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F7525E7E7A0001EB4A4 /* sid.cc */; }; + EDBE906925E7E7A2001EB4A4 /* dac.cc in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F7C25E7E7A0001EB4A4 /* dac.cc */; }; + EDBE906C25E7E7A2001EB4A4 /* pot.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F7F25E7E7A0001EB4A4 /* pot.h */; }; + EDBE906F25E7E7A2001EB4A4 /* voice.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F8225E7E7A0001EB4A4 /* voice.h */; }; + EDBE907025E7E7A2001EB4A4 /* filter8580new.cc in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F8325E7E7A0001EB4A4 /* filter8580new.cc */; }; + EDBE907125E7E7A2001EB4A4 /* envelope.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F8425E7E7A0001EB4A4 /* envelope.h */; }; + EDBE907425E7E7A2001EB4A4 /* wave.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F8725E7E7A0001EB4A4 /* wave.h */; }; + EDBE907625E7E7A2001EB4A4 /* sid.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F8925E7E7A0001EB4A4 /* sid.h */; }; + EDBE907725E7E7A2001EB4A4 /* filter8580new.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F8A25E7E7A0001EB4A4 /* filter8580new.h */; }; + EDBE907925E7E7A2001EB4A4 /* extfilt.cc in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F8C25E7E7A0001EB4A4 /* extfilt.cc */; }; + EDBE907A25E7E7A2001EB4A4 /* wave.cc in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F8D25E7E7A0001EB4A4 /* wave.cc */; }; + EDBE907C25E7E7A2001EB4A4 /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F8F25E7E7A0001EB4A4 /* version.cc */; }; + EDBE907D25E7E7A2001EB4A4 /* resid-builder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F9025E7E7A0001EB4A4 /* resid-builder.cpp */; }; + EDBE907E25E7E7A2001EB4A4 /* resid.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F9125E7E7A0001EB4A4 /* resid.h */; }; + EDBE907F25E7E7A2001EB4A4 /* resid-emu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F9225E7E7A0001EB4A4 /* resid-emu.cpp */; }; + EDBE908025E7E7A2001EB4A4 /* residfp-emu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F9425E7E7A0001EB4A4 /* residfp-emu.cpp */; }; + EDBE908125E7E7A2001EB4A4 /* residfp-builder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F9525E7E7A0001EB4A4 /* residfp-builder.cpp */; }; + EDBE908225E7E7A2001EB4A4 /* Dac.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F9725E7E7A0001EB4A4 /* Dac.h */; }; + EDBE908325E7E7A2001EB4A4 /* OpAmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F9825E7E7A0001EB4A4 /* OpAmp.cpp */; }; + EDBE908425E7E7A2001EB4A4 /* TwoPassSincResampler.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F9A25E7E7A0001EB4A4 /* TwoPassSincResampler.h */; }; + EDBE908525E7E7A2001EB4A4 /* SincResampler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F9B25E7E7A0001EB4A4 /* SincResampler.cpp */; }; + EDBE908625E7E7A2001EB4A4 /* test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F9C25E7E7A0001EB4A4 /* test.cpp */; }; + EDBE908725E7E7A2001EB4A4 /* ZeroOrderResampler.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F9D25E7E7A0001EB4A4 /* ZeroOrderResampler.h */; }; + EDBE908825E7E7A2001EB4A4 /* SincResampler.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F9E25E7E7A0001EB4A4 /* SincResampler.h */; }; + EDBE908925E7E7A2001EB4A4 /* Resampler.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F9F25E7E7A0001EB4A4 /* Resampler.h */; }; + EDBE908A25E7E7A2001EB4A4 /* Spline.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FA025E7E7A0001EB4A4 /* Spline.h */; }; + EDBE908B25E7E7A2001EB4A4 /* WaveformGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FA125E7E7A0001EB4A4 /* WaveformGenerator.h */; }; + EDBE908D25E7E7A2001EB4A4 /* EnvelopeGenerator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FA325E7E7A0001EB4A4 /* EnvelopeGenerator.cpp */; }; + EDBE908E25E7E7A2001EB4A4 /* Dac.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FA425E7E7A0001EB4A4 /* Dac.cpp */; }; + EDBE909025E7E7A2001EB4A4 /* WaveformGenerator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FA625E7E7A0001EB4A4 /* WaveformGenerator.cpp */; }; + EDBE909125E7E7A2001EB4A4 /* Integrator8580.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FA725E7E7A0001EB4A4 /* Integrator8580.h */; }; + EDBE909225E7E7A2001EB4A4 /* SID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FA825E7E7A0001EB4A4 /* SID.cpp */; }; + EDBE909325E7E7A2001EB4A4 /* EnvelopeGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FA925E7E7A0001EB4A4 /* EnvelopeGenerator.h */; }; + EDBE909425E7E7A2001EB4A4 /* FilterModelConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FAA25E7E7A0001EB4A4 /* FilterModelConfig.cpp */; }; + EDBE909525E7E7A2001EB4A4 /* OpAmp.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FAB25E7E7A0001EB4A4 /* OpAmp.h */; }; + EDBE909625E7E7A2001EB4A4 /* Filter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FAC25E7E7A0001EB4A4 /* Filter.cpp */; }; + EDBE909725E7E7A2001EB4A4 /* Potentiometer.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FAD25E7E7A0001EB4A4 /* Potentiometer.h */; }; + EDBE909925E7E7A2001EB4A4 /* Filter6581.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FAF25E7E7A0001EB4A4 /* Filter6581.cpp */; }; + EDBE909B25E7E7A2001EB4A4 /* Integrator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FB125E7E7A0001EB4A4 /* Integrator.cpp */; }; + EDBE909C25E7E7A2001EB4A4 /* array.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FB225E7E7A0001EB4A4 /* array.h */; }; + EDBE909D25E7E7A2001EB4A4 /* Integrator8580.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FB325E7E7A0001EB4A4 /* Integrator8580.cpp */; }; + EDBE909E25E7E7A2001EB4A4 /* ExternalFilter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FB425E7E7A0001EB4A4 /* ExternalFilter.cpp */; }; + EDBE909F25E7E7A2001EB4A4 /* FilterModelConfig8580.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FB525E7E7A0001EB4A4 /* FilterModelConfig8580.cpp */; }; + EDBE90A025E7E7A2001EB4A4 /* FilterModelConfig8580.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FB625E7E7A0001EB4A4 /* FilterModelConfig8580.h */; }; + EDBE90A125E7E7A2001EB4A4 /* Integrator.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FB725E7E7A0001EB4A4 /* Integrator.h */; }; + EDBE90A225E7E7A2001EB4A4 /* WaveformCalculator.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FB825E7E7A0001EB4A4 /* WaveformCalculator.h */; }; + EDBE90A325E7E7A2001EB4A4 /* Filter8580.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FB925E7E7A0001EB4A4 /* Filter8580.cpp */; }; + EDBE90A425E7E7A2001EB4A4 /* WaveformCalculator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FBA25E7E7A0001EB4A4 /* WaveformCalculator.cpp */; }; + EDBE90A525E7E7A2001EB4A4 /* Voice.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FBB25E7E7A0001EB4A4 /* Voice.h */; }; + EDBE90A625E7E7A2001EB4A4 /* FilterModelConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FBC25E7E7A0001EB4A4 /* FilterModelConfig.h */; }; + EDBE90A725E7E7A2001EB4A4 /* SID.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FBD25E7E7A0001EB4A4 /* SID.h */; }; + EDBE90A825E7E7A2001EB4A4 /* Filter.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FBE25E7E7A0001EB4A4 /* Filter.h */; }; + EDBE90A925E7E7A2001EB4A4 /* Filter6581.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FBF25E7E7A0001EB4A4 /* Filter6581.h */; }; + EDBE90AA25E7E7A2001EB4A4 /* Spline.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FC025E7E7A0001EB4A4 /* Spline.cpp */; }; + EDBE90AB25E7E7A2001EB4A4 /* Filter8580.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FC125E7E7A0001EB4A4 /* Filter8580.h */; }; + EDBE90AC25E7E7A2001EB4A4 /* ExternalFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FC225E7E7A0001EB4A4 /* ExternalFilter.h */; }; + EDBE90AD25E7E7A2001EB4A4 /* version.cc in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FC325E7E7A0001EB4A4 /* version.cc */; }; + EDBE90AE25E7E7A2001EB4A4 /* residfp.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FC425E7E7A0001EB4A4 /* residfp.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDBE90AF25E7E7A2001EB4A4 /* residfp-emu.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FC525E7E7A0001EB4A4 /* residfp-emu.h */; }; + EDBE90B025E7E7A2001EB4A4 /* sidmd5.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FC625E7E7A0001EB4A4 /* sidmd5.h */; }; + EDBE90B125E7E7A2001EB4A4 /* sidendian.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FC725E7E7A0001EB4A4 /* sidendian.h */; }; + EDBE90B225E7E7A2001EB4A4 /* EventScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FC825E7E7A1001EB4A4 /* EventScheduler.h */; }; + EDBE90B325E7E7A2001EB4A4 /* player.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FC925E7E7A1001EB4A4 /* player.cpp */; }; + EDBE90B425E7E7A2001EB4A4 /* EventCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FCA25E7E7A1001EB4A4 /* EventCallback.h */; }; + EDBE90B525E7E7A2001EB4A4 /* psiddrv.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FCB25E7E7A1001EB4A4 /* psiddrv.h */; }; + EDBE90B625E7E7A2001EB4A4 /* player.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FCC25E7E7A1001EB4A4 /* player.h */; }; + EDBE90B825E7E7A2001EB4A4 /* SidInfoImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FCE25E7E7A1001EB4A4 /* SidInfoImpl.h */; }; + EDBE90B925E7E7A2001EB4A4 /* romCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FCF25E7E7A1001EB4A4 /* romCheck.h */; }; + EDBE90BB25E7E7A2001EB4A4 /* sidemu.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FD125E7E7A1001EB4A4 /* sidemu.h */; }; + EDBE90BC25E7E7A2001EB4A4 /* sidemu.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FD225E7E7A1001EB4A4 /* sidemu.cpp */; }; + EDBE90BD25E7E7A2001EB4A4 /* sidmemory.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FD325E7E7A1001EB4A4 /* sidmemory.h */; }; + EDBE90BE25E7E7A2001EB4A4 /* md5Factory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FD525E7E7A1001EB4A4 /* md5Factory.cpp */; }; + EDBE90BF25E7E7A2001EB4A4 /* MD5.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FD725E7E7A1001EB4A4 /* MD5.cpp */; }; + EDBE90C025E7E7A2001EB4A4 /* MD5.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FD825E7E7A1001EB4A4 /* MD5.h */; }; + EDBE90C125E7E7A2001EB4A4 /* MD5_Defs.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FD925E7E7A1001EB4A4 /* MD5_Defs.h */; }; + EDBE90C225E7E7A2001EB4A4 /* iMd5.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FDA25E7E7A1001EB4A4 /* iMd5.h */; }; + EDBE90C325E7E7A2001EB4A4 /* md5Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FDB25E7E7A1001EB4A4 /* md5Internal.h */; }; + EDBE90C425E7E7A2001EB4A4 /* SidDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FDC25E7E7A1001EB4A4 /* SidDatabase.h */; }; + EDBE90C525E7E7A2001EB4A4 /* iniParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FDD25E7E7A1001EB4A4 /* iniParser.cpp */; }; + EDBE90C725E7E7A2001EB4A4 /* stil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FE025E7E7A1001EB4A4 /* stil.cpp */; }; + EDBE90C825E7E7A2001EB4A4 /* stildefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FE125E7E7A1001EB4A4 /* stildefs.h */; }; + EDBE90CA25E7E7A2001EB4A4 /* stil.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FE325E7E7A1001EB4A4 /* stil.h */; }; + EDBE90CB25E7E7A2001EB4A4 /* md5Factory.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FE425E7E7A1001EB4A4 /* md5Factory.h */; }; + EDBE90CC25E7E7A2001EB4A4 /* SidDatabase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FE525E7E7A1001EB4A4 /* SidDatabase.cpp */; }; + EDBE90CD25E7E7A2001EB4A4 /* iniParser.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FE625E7E7A1001EB4A4 /* iniParser.h */; }; + EDBE90CE25E7E7A2001EB4A4 /* md5Gcrypt.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FE725E7E7A1001EB4A4 /* md5Gcrypt.h */; }; + EDBE90CF25E7E7A2001EB4A4 /* EventScheduler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FE825E7E7A1001EB4A4 /* EventScheduler.cpp */; }; + EDBE90D025E7E7A2001EB4A4 /* mixer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FE925E7E7A1001EB4A4 /* mixer.cpp */; }; + EDBE90D125E7E7A2001EB4A4 /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FEA25E7E7A1001EB4A4 /* Event.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDBE90D225E7E7A2001EB4A4 /* sidcxx11.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FEB25E7E7A1001EB4A4 /* sidcxx11.h */; }; + EDBE90D325E7E7A2001EB4A4 /* siddefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FED25E7E7A1001EB4A4 /* siddefs.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDBE90D425E7E7A2001EB4A4 /* SidConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FEE25E7E7A1001EB4A4 /* SidConfig.cpp */; }; + EDBE90D525E7E7A2001EB4A4 /* sidbuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FEF25E7E7A1001EB4A4 /* sidbuilder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDBE90D625E7E7A2001EB4A4 /* SidTune.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FF025E7E7A1001EB4A4 /* SidTune.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDBE90D725E7E7A2001EB4A4 /* sidplayfp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FF125E7E7A1001EB4A4 /* sidplayfp.cpp */; }; + EDBE90D925E7E7A2001EB4A4 /* SidInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FF325E7E7A1001EB4A4 /* SidInfo.cpp */; }; + EDBE90DA25E7E7A2001EB4A4 /* SidConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FF425E7E7A1001EB4A4 /* SidConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDBE90DB25E7E7A2001EB4A4 /* sidbuilder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FF525E7E7A1001EB4A4 /* sidbuilder.cpp */; }; + EDBE90DC25E7E7A2001EB4A4 /* sidplayfp.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FF625E7E7A1001EB4A4 /* sidplayfp.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDBE90DD25E7E7A2001EB4A4 /* SidTuneInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FF725E7E7A1001EB4A4 /* SidTuneInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDBE90DE25E7E7A2001EB4A4 /* SidInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FF825E7E7A1001EB4A4 /* SidInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDBE90DF25E7E7A2001EB4A4 /* SidTune.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FF925E7E7A1001EB4A4 /* SidTune.cpp */; }; + EDBE90E025E7E7A2001EB4A4 /* SidTuneInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FFA25E7E7A1001EB4A4 /* SidTuneInfo.cpp */; }; + EDBE90E125E7E7A2001EB4A4 /* psiddrv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8FFB25E7E7A2001EB4A4 /* psiddrv.cpp */; }; + EDBE90E225E7E7A2001EB4A4 /* SidTuneCfg.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FFD25E7E7A2001EB4A4 /* SidTuneCfg.h */; }; + EDBE90E325E7E7A2001EB4A4 /* SidTuneTools.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FFE25E7E7A2001EB4A4 /* SidTuneTools.h */; }; + EDBE90E425E7E7A2001EB4A4 /* SidTuneInfoImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8FFF25E7E7A2001EB4A4 /* SidTuneInfoImpl.h */; }; + EDBE90E525E7E7A2001EB4A4 /* PSID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE900025E7E7A2001EB4A4 /* PSID.cpp */; }; + EDBE90E625E7E7A2001EB4A4 /* SidTuneBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE900125E7E7A2001EB4A4 /* SidTuneBase.cpp */; }; + EDBE90E725E7E7A2001EB4A4 /* SmartPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE900225E7E7A2001EB4A4 /* SmartPtr.h */; }; + EDBE90E825E7E7A2001EB4A4 /* prg.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE900325E7E7A2001EB4A4 /* prg.h */; }; + EDBE90EA25E7E7A2001EB4A4 /* p00.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE900525E7E7A2001EB4A4 /* p00.h */; }; + EDBE90EB25E7E7A2001EB4A4 /* MUS.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE900625E7E7A2001EB4A4 /* MUS.cpp */; }; + EDBE90EC25E7E7A2001EB4A4 /* PSID.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE900725E7E7A2001EB4A4 /* PSID.h */; }; + EDBE90EE25E7E7A2001EB4A4 /* SidTuneTools.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE900925E7E7A2001EB4A4 /* SidTuneTools.cpp */; }; + EDBE90EF25E7E7A2001EB4A4 /* prg.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE900A25E7E7A2001EB4A4 /* prg.cpp */; }; + EDBE90F025E7E7A2001EB4A4 /* SidTuneBase.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE900B25E7E7A2001EB4A4 /* SidTuneBase.h */; }; + EDBE90F125E7E7A2001EB4A4 /* MUS.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE900C25E7E7A2001EB4A4 /* MUS.h */; }; + EDBE90F225E7E7A2001EB4A4 /* p00.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE900D25E7E7A2001EB4A4 /* p00.cpp */; }; + EDBE910825E7E7B2001EB4A4 /* siddefs.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE90F625E7E7B1001EB4A4 /* siddefs.h */; }; + EDBE910925E7E7B2001EB4A4 /* wave8580__ST.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE90F725E7E7B1001EB4A4 /* wave8580__ST.h */; }; + EDBE910A25E7E7B2001EB4A4 /* wave8580_P_T.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE90F825E7E7B1001EB4A4 /* wave8580_P_T.h */; }; + EDBE910B25E7E7B2001EB4A4 /* wave8580_PS_.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE90F925E7E7B1001EB4A4 /* wave8580_PS_.h */; }; + EDBE910C25E7E7B2001EB4A4 /* wave6581_PST.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE90FA25E7E7B1001EB4A4 /* wave6581_PST.h */; }; + EDBE910D25E7E7B2001EB4A4 /* wave6581__ST.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE90FB25E7E7B1001EB4A4 /* wave6581__ST.h */; }; + EDBE910E25E7E7B2001EB4A4 /* wave6581_P_T.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE90FC25E7E7B1001EB4A4 /* wave6581_P_T.h */; }; + EDBE910F25E7E7B2001EB4A4 /* wave8580_PST.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE90FD25E7E7B1001EB4A4 /* wave8580_PST.h */; }; + EDBE911025E7E7B2001EB4A4 /* wave6581_PS_.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE90FE25E7E7B1001EB4A4 /* wave6581_PS_.h */; }; + EDBE911125E7E7B2001EB4A4 /* siddefs-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE910125E7E7B1001EB4A4 /* siddefs-fp.h */; }; + EDBE911425E7E7B2001EB4A4 /* sidversion.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE910625E7E7B1001EB4A4 /* sidversion.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EDBE911525E7E7B2001EB4A4 /* config.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE910725E7E7B1001EB4A4 /* config.h */; }; +/* End PBXBuildFile section */ + /* Begin PBXFileReference section */ EDBE8EF925E7E641001EB4A4 /* sidplayfp.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = sidplayfp.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + EDBE8F1225E7E79F001EB4A4 /* sidrandom.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sidrandom.h; path = sidplayfp/src/sidrandom.h; sourceTree = ""; }; + EDBE8F1325E7E79F001EB4A4 /* reloc65.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = reloc65.cpp; path = sidplayfp/src/reloc65.cpp; sourceTree = ""; }; + EDBE8F1425E7E79F001EB4A4 /* reloc65.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = reloc65.h; path = sidplayfp/src/reloc65.h; sourceTree = ""; }; + EDBE8F1525E7E79F001EB4A4 /* psiddrv.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; name = psiddrv.bin; path = sidplayfp/src/psiddrv.bin; sourceTree = ""; }; + EDBE8F1625E7E79F001EB4A4 /* mixer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = mixer.h; path = sidplayfp/src/mixer.h; sourceTree = ""; }; + EDBE8F1925E7E79F001EB4A4 /* lightpen.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lightpen.h; sourceTree = ""; }; + EDBE8F1A25E7E79F001EB4A4 /* mos656x.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mos656x.h; sourceTree = ""; }; + EDBE8F1B25E7E79F001EB4A4 /* mos656x.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mos656x.cpp; sourceTree = ""; }; + EDBE8F1C25E7E79F001EB4A4 /* sprites.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sprites.h; sourceTree = ""; }; + EDBE8F1D25E7E79F001EB4A4 /* c64cpu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = c64cpu.h; sourceTree = ""; }; + EDBE8F1E25E7E79F001EB4A4 /* c64vic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = c64vic.h; sourceTree = ""; }; + EDBE8F2025E7E79F001EB4A4 /* mos6510debug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mos6510debug.h; sourceTree = ""; }; + EDBE8F2125E7E79F001EB4A4 /* mos6510.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mos6510.cpp; sourceTree = ""; }; + EDBE8F2225E7E79F001EB4A4 /* flags.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = flags.h; sourceTree = ""; }; + EDBE8F2325E7E79F001EB4A4 /* opcodes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opcodes.h; sourceTree = ""; }; + EDBE8F2425E7E79F001EB4A4 /* mos6510.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mos6510.h; sourceTree = ""; }; + EDBE8F2525E7E79F001EB4A4 /* mos6510debug.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mos6510debug.cpp; sourceTree = ""; }; + EDBE8F2625E7E79F001EB4A4 /* c64.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = c64.h; sourceTree = ""; }; + EDBE8F2725E7E79F001EB4A4 /* c64.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = c64.cpp; sourceTree = ""; }; + EDBE8F2825E7E79F001EB4A4 /* mmu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mmu.h; sourceTree = ""; }; + EDBE8F2925E7E79F001EB4A4 /* c64sid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = c64sid.h; sourceTree = ""; }; + EDBE8F2A25E7E79F001EB4A4 /* c64cia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = c64cia.h; sourceTree = ""; }; + EDBE8F2B25E7E79F001EB4A4 /* c64env.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = c64env.h; sourceTree = ""; }; + EDBE8F2C25E7E79F001EB4A4 /* mmu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mmu.cpp; sourceTree = ""; }; + EDBE8F2E25E7E79F001EB4A4 /* tod.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tod.h; sourceTree = ""; }; + EDBE8F2F25E7E79F001EB4A4 /* tod.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = tod.cpp; sourceTree = ""; }; + EDBE8F3025E7E79F001EB4A4 /* SerialPort.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SerialPort.cpp; sourceTree = ""; }; + EDBE8F3125E7E79F001EB4A4 /* interrupt.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = interrupt.cpp; sourceTree = ""; }; + EDBE8F3225E7E79F001EB4A4 /* timer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = timer.cpp; sourceTree = ""; }; + EDBE8F3325E7E79F001EB4A4 /* SerialPort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SerialPort.h; sourceTree = ""; }; + EDBE8F3425E7E79F001EB4A4 /* timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = timer.h; sourceTree = ""; }; + EDBE8F3525E7E79F001EB4A4 /* interrupt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = interrupt.h; sourceTree = ""; }; + EDBE8F3625E7E79F001EB4A4 /* mos6526.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mos6526.h; sourceTree = ""; }; + EDBE8F3725E7E79F001EB4A4 /* mos6526.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = mos6526.cpp; sourceTree = ""; }; + EDBE8F3925E7E79F001EB4A4 /* ExtraSidBank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExtraSidBank.h; sourceTree = ""; }; + EDBE8F3A25E7E79F001EB4A4 /* SystemROMBanks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemROMBanks.h; sourceTree = ""; }; + EDBE8F3B25E7E79F001EB4A4 /* ColorRAMBank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ColorRAMBank.h; sourceTree = ""; }; + EDBE8F3C25E7E79F001EB4A4 /* IOBank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IOBank.h; sourceTree = ""; }; + EDBE8F3D25E7E79F001EB4A4 /* SystemRAMBank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SystemRAMBank.h; sourceTree = ""; }; + EDBE8F3E25E7E79F001EB4A4 /* NullSid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NullSid.h; sourceTree = ""; }; + EDBE8F3F25E7E79F001EB4A4 /* ZeroRAMBank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZeroRAMBank.h; sourceTree = ""; }; + EDBE8F4025E7E79F001EB4A4 /* DisconnectedBusBank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DisconnectedBusBank.h; sourceTree = ""; }; + EDBE8F4125E7E7A0001EB4A4 /* SidBank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SidBank.h; sourceTree = ""; }; + EDBE8F4225E7E7A0001EB4A4 /* Bank.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Bank.h; sourceTree = ""; }; + EDBE8F4325E7E7A0001EB4A4 /* stringutils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = stringutils.h; path = sidplayfp/src/stringutils.h; sourceTree = ""; }; + EDBE8F4625E7E7A0001EB4A4 /* hardsid-emu-win.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "hardsid-emu-win.cpp"; sourceTree = ""; }; + EDBE8F4725E7E7A0001EB4A4 /* hardsid-emu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "hardsid-emu.h"; sourceTree = ""; }; + EDBE8F4825E7E7A0001EB4A4 /* hardsid-emu-unix.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "hardsid-emu-unix.cpp"; sourceTree = ""; }; + EDBE8F4925E7E7A0001EB4A4 /* hardsid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hardsid.h; sourceTree = ""; }; + EDBE8F4A25E7E7A0001EB4A4 /* hardsid-builder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "hardsid-builder.cpp"; sourceTree = ""; }; + EDBE8F4C25E7E7A0001EB4A4 /* exsid-emu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "exsid-emu.h"; sourceTree = ""; }; + EDBE8F4E25E7E7A0001EB4A4 /* configure.ac */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = configure.ac; sourceTree = ""; }; + EDBE8F4F25E7E7A0001EB4A4 /* exSID.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = exSID.c; sourceTree = ""; }; + EDBE8F5025E7E7A0001EB4A4 /* ChangeLog */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ChangeLog; sourceTree = ""; }; + EDBE8F5125E7E7A0001EB4A4 /* Doxyfile.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Doxyfile.in; sourceTree = ""; }; + EDBE8F5225E7E7A0001EB4A4 /* exSID_ftdiwrap.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exSID_ftdiwrap.h; sourceTree = ""; }; + EDBE8F5425E7E7A0001EB4A4 /* mainpage.dox */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = mainpage.dox; sourceTree = ""; }; + EDBE8F5525E7E7A0001EB4A4 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = ""; }; + EDBE8F5625E7E7A0001EB4A4 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + EDBE8F5725E7E7A0001EB4A4 /* COPYING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = COPYING; sourceTree = ""; }; + EDBE8F5A25E7E7A0001EB4A4 /* release.yml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.yaml; path = release.yml; sourceTree = ""; }; + EDBE8F5B25E7E7A0001EB4A4 /* build.yml */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.yaml; path = build.yml; sourceTree = ""; }; + EDBE8F5C25E7E7A0001EB4A4 /* exSID_defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exSID_defs.h; sourceTree = ""; }; + EDBE8F5E25E7E7A0001EB4A4 /* ax_pthread.m4 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ax_pthread.m4; sourceTree = ""; }; + EDBE8F5F25E7E7A0001EB4A4 /* exSID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exSID.h; sourceTree = ""; }; + EDBE8F6025E7E7A0001EB4A4 /* libexsid.pc.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = libexsid.pc.in; sourceTree = ""; }; + EDBE8F6125E7E7A0001EB4A4 /* exSID_ftdiwrap.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = exSID_ftdiwrap.c; sourceTree = ""; }; + EDBE8F6225E7E7A0001EB4A4 /* exsid-builder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "exsid-builder.cpp"; sourceTree = ""; }; + EDBE8F6325E7E7A0001EB4A4 /* exsid-emu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "exsid-emu.cpp"; sourceTree = ""; }; + EDBE8F6425E7E7A0001EB4A4 /* exsid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = exsid.h; sourceTree = ""; }; + EDBE8F6625E7E7A0001EB4A4 /* resid-emu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "resid-emu.h"; sourceTree = ""; }; + EDBE8F6825E7E7A0001EB4A4 /* wave8580_P_T.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = wave8580_P_T.dat; sourceTree = ""; }; + EDBE8F6925E7E7A0001EB4A4 /* dac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dac.h; sourceTree = ""; }; + EDBE8F6A25E7E7A0001EB4A4 /* extfilt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = extfilt.h; sourceTree = ""; }; + EDBE8F6B25E7E7A0001EB4A4 /* envelope.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = envelope.cc; sourceTree = ""; }; + EDBE8F6C25E7E7A0001EB4A4 /* pot.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pot.cc; sourceTree = ""; }; + EDBE8F6D25E7E7A0001EB4A4 /* README.VICE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.VICE; sourceTree = ""; }; + EDBE8F6E25E7E7A0001EB4A4 /* wave6581_PST.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = wave6581_PST.dat; sourceTree = ""; }; + EDBE8F6F25E7E7A0001EB4A4 /* spline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = spline.h; sourceTree = ""; }; + EDBE8F7025E7E7A0001EB4A4 /* ChangeLog */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = ChangeLog; sourceTree = ""; }; + EDBE8F7125E7E7A0001EB4A4 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = ""; }; + EDBE8F7225E7E7A0001EB4A4 /* resid-config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "resid-config.h"; sourceTree = ""; }; + EDBE8F7325E7E7A0001EB4A4 /* wave8580__ST.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = wave8580__ST.dat; sourceTree = ""; }; + EDBE8F7425E7E7A0001EB4A4 /* voice.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = voice.cc; sourceTree = ""; }; + EDBE8F7525E7E7A0001EB4A4 /* sid.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sid.cc; sourceTree = ""; }; + EDBE8F7625E7E7A0001EB4A4 /* filter.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = filter.cc; sourceTree = ""; }; + EDBE8F7725E7E7A0001EB4A4 /* wave8580_PS_.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = wave8580_PS_.dat; sourceTree = ""; }; + EDBE8F7825E7E7A0001EB4A4 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = ""; }; + EDBE8F7925E7E7A0001EB4A4 /* configure.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = configure.in; sourceTree = ""; }; + EDBE8F7A25E7E7A0001EB4A4 /* TODO */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TODO; sourceTree = ""; }; + EDBE8F7B25E7E7A0001EB4A4 /* Makefile.am */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = Makefile.am; sourceTree = ""; }; + EDBE8F7C25E7E7A0001EB4A4 /* dac.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = dac.cc; sourceTree = ""; }; + EDBE8F7D25E7E7A0001EB4A4 /* wave6581__ST.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = wave6581__ST.dat; sourceTree = ""; }; + EDBE8F7E25E7E7A0001EB4A4 /* NEWS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = NEWS; sourceTree = ""; }; + EDBE8F7F25E7E7A0001EB4A4 /* pot.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pot.h; sourceTree = ""; }; + EDBE8F8025E7E7A0001EB4A4 /* wave6581_PS_.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = wave6581_PS_.dat; sourceTree = ""; }; + EDBE8F8125E7E7A0001EB4A4 /* siddefs.h.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = siddefs.h.in; sourceTree = ""; }; + EDBE8F8225E7E7A0001EB4A4 /* voice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = voice.h; sourceTree = ""; }; + EDBE8F8325E7E7A0001EB4A4 /* filter8580new.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = filter8580new.cc; sourceTree = ""; }; + EDBE8F8425E7E7A0001EB4A4 /* envelope.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = envelope.h; sourceTree = ""; }; + EDBE8F8525E7E7A0001EB4A4 /* THANKS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = THANKS; sourceTree = ""; }; + EDBE8F8625E7E7A0001EB4A4 /* wave6581_P_T.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = wave6581_P_T.dat; sourceTree = ""; }; + EDBE8F8725E7E7A0001EB4A4 /* wave.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave.h; sourceTree = ""; }; + EDBE8F8825E7E7A0001EB4A4 /* samp2src.pl */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.script.perl; path = samp2src.pl; sourceTree = ""; }; + EDBE8F8925E7E7A0001EB4A4 /* sid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sid.h; sourceTree = ""; }; + EDBE8F8A25E7E7A0001EB4A4 /* filter8580new.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filter8580new.h; sourceTree = ""; }; + EDBE8F8B25E7E7A0001EB4A4 /* filter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = filter.h; sourceTree = ""; }; + EDBE8F8C25E7E7A0001EB4A4 /* extfilt.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = extfilt.cc; sourceTree = ""; }; + EDBE8F8D25E7E7A0001EB4A4 /* wave.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = wave.cc; sourceTree = ""; }; + EDBE8F8E25E7E7A0001EB4A4 /* wave8580_PST.dat */ = {isa = PBXFileReference; lastKnownFileType = file; path = wave8580_PST.dat; sourceTree = ""; }; + EDBE8F8F25E7E7A0001EB4A4 /* version.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = version.cc; sourceTree = ""; }; + EDBE8F9025E7E7A0001EB4A4 /* resid-builder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "resid-builder.cpp"; sourceTree = ""; }; + EDBE8F9125E7E7A0001EB4A4 /* resid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = resid.h; sourceTree = ""; }; + EDBE8F9225E7E7A0001EB4A4 /* resid-emu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "resid-emu.cpp"; sourceTree = ""; }; + EDBE8F9425E7E7A0001EB4A4 /* residfp-emu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "residfp-emu.cpp"; sourceTree = ""; }; + EDBE8F9525E7E7A0001EB4A4 /* residfp-builder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = "residfp-builder.cpp"; sourceTree = ""; }; + EDBE8F9725E7E7A0001EB4A4 /* Dac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Dac.h; sourceTree = ""; }; + EDBE8F9825E7E7A0001EB4A4 /* OpAmp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = OpAmp.cpp; sourceTree = ""; }; + EDBE8F9A25E7E7A0001EB4A4 /* TwoPassSincResampler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TwoPassSincResampler.h; sourceTree = ""; }; + EDBE8F9B25E7E7A0001EB4A4 /* SincResampler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SincResampler.cpp; sourceTree = ""; }; + EDBE8F9C25E7E7A0001EB4A4 /* test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = test.cpp; sourceTree = ""; }; + EDBE8F9D25E7E7A0001EB4A4 /* ZeroOrderResampler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ZeroOrderResampler.h; sourceTree = ""; }; + EDBE8F9E25E7E7A0001EB4A4 /* SincResampler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SincResampler.h; sourceTree = ""; }; + EDBE8F9F25E7E7A0001EB4A4 /* Resampler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Resampler.h; sourceTree = ""; }; + EDBE8FA025E7E7A0001EB4A4 /* Spline.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Spline.h; sourceTree = ""; }; + EDBE8FA125E7E7A0001EB4A4 /* WaveformGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WaveformGenerator.h; sourceTree = ""; }; + EDBE8FA225E7E7A0001EB4A4 /* siddefs-fp.h.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "siddefs-fp.h.in"; sourceTree = ""; }; + EDBE8FA325E7E7A0001EB4A4 /* EnvelopeGenerator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = EnvelopeGenerator.cpp; sourceTree = ""; }; + EDBE8FA425E7E7A0001EB4A4 /* Dac.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Dac.cpp; sourceTree = ""; }; + EDBE8FA525E7E7A0001EB4A4 /* AUTHORS */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = AUTHORS; sourceTree = ""; }; + EDBE8FA625E7E7A0001EB4A4 /* WaveformGenerator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WaveformGenerator.cpp; sourceTree = ""; }; + EDBE8FA725E7E7A0001EB4A4 /* Integrator8580.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Integrator8580.h; sourceTree = ""; }; + EDBE8FA825E7E7A0001EB4A4 /* SID.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SID.cpp; sourceTree = ""; }; + EDBE8FA925E7E7A0001EB4A4 /* EnvelopeGenerator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EnvelopeGenerator.h; sourceTree = ""; }; + EDBE8FAA25E7E7A0001EB4A4 /* FilterModelConfig.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FilterModelConfig.cpp; sourceTree = ""; }; + EDBE8FAB25E7E7A0001EB4A4 /* OpAmp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = OpAmp.h; sourceTree = ""; }; + EDBE8FAC25E7E7A0001EB4A4 /* Filter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Filter.cpp; sourceTree = ""; }; + EDBE8FAD25E7E7A0001EB4A4 /* Potentiometer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Potentiometer.h; sourceTree = ""; }; + EDBE8FAE25E7E7A0001EB4A4 /* README */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README; sourceTree = ""; }; + EDBE8FAF25E7E7A0001EB4A4 /* Filter6581.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Filter6581.cpp; sourceTree = ""; }; + EDBE8FB025E7E7A0001EB4A4 /* COPYING */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = COPYING; sourceTree = ""; }; + EDBE8FB125E7E7A0001EB4A4 /* Integrator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Integrator.cpp; sourceTree = ""; }; + EDBE8FB225E7E7A0001EB4A4 /* array.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = array.h; sourceTree = ""; }; + EDBE8FB325E7E7A0001EB4A4 /* Integrator8580.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Integrator8580.cpp; sourceTree = ""; }; + EDBE8FB425E7E7A0001EB4A4 /* ExternalFilter.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = ExternalFilter.cpp; sourceTree = ""; }; + EDBE8FB525E7E7A0001EB4A4 /* FilterModelConfig8580.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = FilterModelConfig8580.cpp; sourceTree = ""; }; + EDBE8FB625E7E7A0001EB4A4 /* FilterModelConfig8580.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FilterModelConfig8580.h; sourceTree = ""; }; + EDBE8FB725E7E7A0001EB4A4 /* Integrator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Integrator.h; sourceTree = ""; }; + EDBE8FB825E7E7A0001EB4A4 /* WaveformCalculator.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WaveformCalculator.h; sourceTree = ""; }; + EDBE8FB925E7E7A0001EB4A4 /* Filter8580.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Filter8580.cpp; sourceTree = ""; }; + EDBE8FBA25E7E7A0001EB4A4 /* WaveformCalculator.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = WaveformCalculator.cpp; sourceTree = ""; }; + EDBE8FBB25E7E7A0001EB4A4 /* Voice.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Voice.h; sourceTree = ""; }; + EDBE8FBC25E7E7A0001EB4A4 /* FilterModelConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FilterModelConfig.h; sourceTree = ""; }; + EDBE8FBD25E7E7A0001EB4A4 /* SID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SID.h; sourceTree = ""; }; + EDBE8FBE25E7E7A0001EB4A4 /* Filter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Filter.h; sourceTree = ""; }; + EDBE8FBF25E7E7A0001EB4A4 /* Filter6581.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Filter6581.h; sourceTree = ""; }; + EDBE8FC025E7E7A0001EB4A4 /* Spline.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = Spline.cpp; sourceTree = ""; }; + EDBE8FC125E7E7A0001EB4A4 /* Filter8580.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Filter8580.h; sourceTree = ""; }; + EDBE8FC225E7E7A0001EB4A4 /* ExternalFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ExternalFilter.h; sourceTree = ""; }; + EDBE8FC325E7E7A0001EB4A4 /* version.cc */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = version.cc; sourceTree = ""; }; + EDBE8FC425E7E7A0001EB4A4 /* residfp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = residfp.h; sourceTree = ""; }; + EDBE8FC525E7E7A0001EB4A4 /* residfp-emu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "residfp-emu.h"; sourceTree = ""; }; + EDBE8FC625E7E7A0001EB4A4 /* sidmd5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sidmd5.h; path = sidplayfp/src/sidmd5.h; sourceTree = ""; }; + EDBE8FC725E7E7A0001EB4A4 /* sidendian.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sidendian.h; path = sidplayfp/src/sidendian.h; sourceTree = ""; }; + EDBE8FC825E7E7A1001EB4A4 /* EventScheduler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EventScheduler.h; path = sidplayfp/src/EventScheduler.h; sourceTree = ""; }; + EDBE8FC925E7E7A1001EB4A4 /* player.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = player.cpp; path = sidplayfp/src/player.cpp; sourceTree = ""; }; + EDBE8FCA25E7E7A1001EB4A4 /* EventCallback.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = EventCallback.h; path = sidplayfp/src/EventCallback.h; sourceTree = ""; }; + EDBE8FCB25E7E7A1001EB4A4 /* psiddrv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = psiddrv.h; path = sidplayfp/src/psiddrv.h; sourceTree = ""; }; + EDBE8FCC25E7E7A1001EB4A4 /* player.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = player.h; path = sidplayfp/src/player.h; sourceTree = ""; }; + EDBE8FCD25E7E7A1001EB4A4 /* psiddrv.a65 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = psiddrv.a65; path = sidplayfp/src/psiddrv.a65; sourceTree = ""; }; + EDBE8FCE25E7E7A1001EB4A4 /* SidInfoImpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = SidInfoImpl.h; path = sidplayfp/src/SidInfoImpl.h; sourceTree = ""; }; + EDBE8FCF25E7E7A1001EB4A4 /* romCheck.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = romCheck.h; path = sidplayfp/src/romCheck.h; sourceTree = ""; }; + EDBE8FD025E7E7A1001EB4A4 /* poweron.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; name = poweron.bin; path = sidplayfp/src/poweron.bin; sourceTree = ""; }; + EDBE8FD125E7E7A1001EB4A4 /* sidemu.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sidemu.h; path = sidplayfp/src/sidemu.h; sourceTree = ""; }; + EDBE8FD225E7E7A1001EB4A4 /* sidemu.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = sidemu.cpp; path = sidplayfp/src/sidemu.cpp; sourceTree = ""; }; + EDBE8FD325E7E7A1001EB4A4 /* sidmemory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sidmemory.h; path = sidplayfp/src/sidmemory.h; sourceTree = ""; }; + EDBE8FD525E7E7A1001EB4A4 /* md5Factory.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = md5Factory.cpp; sourceTree = ""; }; + EDBE8FD725E7E7A1001EB4A4 /* MD5.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MD5.cpp; sourceTree = ""; }; + EDBE8FD825E7E7A1001EB4A4 /* MD5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MD5.h; sourceTree = ""; }; + EDBE8FD925E7E7A1001EB4A4 /* MD5_Defs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MD5_Defs.h; sourceTree = ""; }; + EDBE8FDA25E7E7A1001EB4A4 /* iMd5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iMd5.h; sourceTree = ""; }; + EDBE8FDB25E7E7A1001EB4A4 /* md5Internal.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5Internal.h; sourceTree = ""; }; + EDBE8FDC25E7E7A1001EB4A4 /* SidDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SidDatabase.h; sourceTree = ""; }; + EDBE8FDD25E7E7A1001EB4A4 /* iniParser.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = iniParser.cpp; sourceTree = ""; }; + EDBE8FDF25E7E7A1001EB4A4 /* TODO.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = TODO.txt; sourceTree = ""; }; + EDBE8FE025E7E7A1001EB4A4 /* stil.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = stil.cpp; sourceTree = ""; }; + EDBE8FE125E7E7A1001EB4A4 /* stildefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stildefs.h; sourceTree = ""; }; + EDBE8FE225E7E7A1001EB4A4 /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = ""; }; + EDBE8FE325E7E7A1001EB4A4 /* stil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stil.h; sourceTree = ""; }; + EDBE8FE425E7E7A1001EB4A4 /* md5Factory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5Factory.h; sourceTree = ""; }; + EDBE8FE525E7E7A1001EB4A4 /* SidDatabase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SidDatabase.cpp; sourceTree = ""; }; + EDBE8FE625E7E7A1001EB4A4 /* iniParser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = iniParser.h; sourceTree = ""; }; + EDBE8FE725E7E7A1001EB4A4 /* md5Gcrypt.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5Gcrypt.h; sourceTree = ""; }; + EDBE8FE825E7E7A1001EB4A4 /* EventScheduler.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = EventScheduler.cpp; path = sidplayfp/src/EventScheduler.cpp; sourceTree = ""; }; + EDBE8FE925E7E7A1001EB4A4 /* mixer.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mixer.cpp; path = sidplayfp/src/mixer.cpp; sourceTree = ""; }; + EDBE8FEA25E7E7A1001EB4A4 /* Event.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Event.h; path = sidplayfp/src/Event.h; sourceTree = ""; }; + EDBE8FEB25E7E7A1001EB4A4 /* sidcxx11.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = sidcxx11.h; path = sidplayfp/src/sidcxx11.h; sourceTree = ""; }; + EDBE8FED25E7E7A1001EB4A4 /* siddefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = siddefs.h; sourceTree = ""; }; + EDBE8FEE25E7E7A1001EB4A4 /* SidConfig.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SidConfig.cpp; sourceTree = ""; }; + EDBE8FEF25E7E7A1001EB4A4 /* sidbuilder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sidbuilder.h; sourceTree = ""; }; + EDBE8FF025E7E7A1001EB4A4 /* SidTune.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SidTune.h; sourceTree = ""; }; + EDBE8FF125E7E7A1001EB4A4 /* sidplayfp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sidplayfp.cpp; sourceTree = ""; }; + EDBE8FF225E7E7A1001EB4A4 /* sidversion.h.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = sidversion.h.in; sourceTree = ""; }; + EDBE8FF325E7E7A1001EB4A4 /* SidInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SidInfo.cpp; sourceTree = ""; }; + EDBE8FF425E7E7A1001EB4A4 /* SidConfig.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SidConfig.h; sourceTree = ""; }; + EDBE8FF525E7E7A1001EB4A4 /* sidbuilder.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = sidbuilder.cpp; sourceTree = ""; }; + EDBE8FF625E7E7A1001EB4A4 /* sidplayfp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sidplayfp.h; sourceTree = ""; }; + EDBE8FF725E7E7A1001EB4A4 /* SidTuneInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SidTuneInfo.h; sourceTree = ""; }; + EDBE8FF825E7E7A1001EB4A4 /* SidInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SidInfo.h; sourceTree = ""; }; + EDBE8FF925E7E7A1001EB4A4 /* SidTune.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SidTune.cpp; sourceTree = ""; }; + EDBE8FFA25E7E7A1001EB4A4 /* SidTuneInfo.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SidTuneInfo.cpp; sourceTree = ""; }; + EDBE8FFB25E7E7A2001EB4A4 /* psiddrv.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = psiddrv.cpp; path = sidplayfp/src/psiddrv.cpp; sourceTree = ""; }; + EDBE8FFD25E7E7A2001EB4A4 /* SidTuneCfg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SidTuneCfg.h; sourceTree = ""; }; + EDBE8FFE25E7E7A2001EB4A4 /* SidTuneTools.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SidTuneTools.h; sourceTree = ""; }; + EDBE8FFF25E7E7A2001EB4A4 /* SidTuneInfoImpl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SidTuneInfoImpl.h; sourceTree = ""; }; + EDBE900025E7E7A2001EB4A4 /* PSID.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = PSID.cpp; sourceTree = ""; }; + EDBE900125E7E7A2001EB4A4 /* SidTuneBase.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SidTuneBase.cpp; sourceTree = ""; }; + EDBE900225E7E7A2001EB4A4 /* SmartPtr.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SmartPtr.h; sourceTree = ""; }; + EDBE900325E7E7A2001EB4A4 /* prg.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = prg.h; sourceTree = ""; }; + EDBE900425E7E7A2001EB4A4 /* sidplayer2.a65 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = sidplayer2.a65; sourceTree = ""; }; + EDBE900525E7E7A2001EB4A4 /* p00.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = p00.h; sourceTree = ""; }; + EDBE900625E7E7A2001EB4A4 /* MUS.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = MUS.cpp; sourceTree = ""; }; + EDBE900725E7E7A2001EB4A4 /* PSID.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PSID.h; sourceTree = ""; }; + EDBE900825E7E7A2001EB4A4 /* sidplayer1.a65 */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = sidplayer1.a65; sourceTree = ""; }; + EDBE900925E7E7A2001EB4A4 /* SidTuneTools.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SidTuneTools.cpp; sourceTree = ""; }; + EDBE900A25E7E7A2001EB4A4 /* prg.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = prg.cpp; sourceTree = ""; }; + EDBE900B25E7E7A2001EB4A4 /* SidTuneBase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SidTuneBase.h; sourceTree = ""; }; + EDBE900C25E7E7A2001EB4A4 /* MUS.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MUS.h; sourceTree = ""; }; + EDBE900D25E7E7A2001EB4A4 /* p00.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = p00.cpp; sourceTree = ""; }; + EDBE90F625E7E7B1001EB4A4 /* siddefs.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = siddefs.h; sourceTree = ""; }; + EDBE90F725E7E7B1001EB4A4 /* wave8580__ST.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave8580__ST.h; sourceTree = ""; }; + EDBE90F825E7E7B1001EB4A4 /* wave8580_P_T.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave8580_P_T.h; sourceTree = ""; }; + EDBE90F925E7E7B1001EB4A4 /* wave8580_PS_.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave8580_PS_.h; sourceTree = ""; }; + EDBE90FA25E7E7B1001EB4A4 /* wave6581_PST.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave6581_PST.h; sourceTree = ""; }; + EDBE90FB25E7E7B1001EB4A4 /* wave6581__ST.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave6581__ST.h; sourceTree = ""; }; + EDBE90FC25E7E7B1001EB4A4 /* wave6581_P_T.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave6581_P_T.h; sourceTree = ""; }; + EDBE90FD25E7E7B1001EB4A4 /* wave8580_PST.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave8580_PST.h; sourceTree = ""; }; + EDBE90FE25E7E7B1001EB4A4 /* wave6581_PS_.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = wave6581_PS_.h; sourceTree = ""; }; + EDBE910125E7E7B1001EB4A4 /* siddefs-fp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "siddefs-fp.h"; sourceTree = ""; }; + EDBE910325E7E7B1001EB4A4 /* sidplayer2.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; path = sidplayer2.bin; sourceTree = ""; }; + EDBE910425E7E7B1001EB4A4 /* sidplayer1.bin */ = {isa = PBXFileReference; lastKnownFileType = archive.macbinary; path = sidplayer1.bin; sourceTree = ""; }; + EDBE910625E7E7B1001EB4A4 /* sidversion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sidversion.h; sourceTree = ""; }; + EDBE910725E7E7B1001EB4A4 /* config.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = config.h; path = generated/src/config.h; sourceTree = ""; }; + EDBE911625E7E7F9001EB4A4 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -24,6 +458,9 @@ EDBE8EEF25E7E641001EB4A4 = { isa = PBXGroup; children = ( + EDBE911625E7E7F9001EB4A4 /* Info.plist */, + EDBE8F1125E7E782001EB4A4 /* generated */, + EDBE8F1025E7E76A001EB4A4 /* libsidplay */, EDBE8EFA25E7E641001EB4A4 /* Products */, ); sourceTree = ""; @@ -36,6 +473,511 @@ name = Products; sourceTree = ""; }; + EDBE8F1025E7E76A001EB4A4 /* libsidplay */ = { + isa = PBXGroup; + children = ( + EDBE8F4425E7E7A0001EB4A4 /* builders */, + EDBE8F1725E7E79F001EB4A4 /* c64 */, + EDBE8FEA25E7E7A1001EB4A4 /* Event.h */, + EDBE8FCA25E7E7A1001EB4A4 /* EventCallback.h */, + EDBE8FE825E7E7A1001EB4A4 /* EventScheduler.cpp */, + EDBE8FC825E7E7A1001EB4A4 /* EventScheduler.h */, + EDBE8FE925E7E7A1001EB4A4 /* mixer.cpp */, + EDBE8F1625E7E79F001EB4A4 /* mixer.h */, + EDBE8FC925E7E7A1001EB4A4 /* player.cpp */, + EDBE8FCC25E7E7A1001EB4A4 /* player.h */, + EDBE8FD025E7E7A1001EB4A4 /* poweron.bin */, + EDBE8FCD25E7E7A1001EB4A4 /* psiddrv.a65 */, + EDBE8F1525E7E79F001EB4A4 /* psiddrv.bin */, + EDBE8FFB25E7E7A2001EB4A4 /* psiddrv.cpp */, + EDBE8FCB25E7E7A1001EB4A4 /* psiddrv.h */, + EDBE8F1325E7E79F001EB4A4 /* reloc65.cpp */, + EDBE8F1425E7E79F001EB4A4 /* reloc65.h */, + EDBE8FCF25E7E7A1001EB4A4 /* romCheck.h */, + EDBE8FEB25E7E7A1001EB4A4 /* sidcxx11.h */, + EDBE8FD225E7E7A1001EB4A4 /* sidemu.cpp */, + EDBE8FD125E7E7A1001EB4A4 /* sidemu.h */, + EDBE8FC725E7E7A0001EB4A4 /* sidendian.h */, + EDBE8FCE25E7E7A1001EB4A4 /* SidInfoImpl.h */, + EDBE8FC625E7E7A0001EB4A4 /* sidmd5.h */, + EDBE8FD325E7E7A1001EB4A4 /* sidmemory.h */, + EDBE8FEC25E7E7A1001EB4A4 /* sidplayfp */, + EDBE8F1225E7E79F001EB4A4 /* sidrandom.h */, + EDBE8FFC25E7E7A2001EB4A4 /* sidtune */, + EDBE8F4325E7E7A0001EB4A4 /* stringutils.h */, + EDBE8FD425E7E7A1001EB4A4 /* utils */, + ); + name = libsidplay; + sourceTree = ""; + }; + EDBE8F1125E7E782001EB4A4 /* generated */ = { + isa = PBXGroup; + children = ( + EDBE90F325E7E7B1001EB4A4 /* builders */, + EDBE910725E7E7B1001EB4A4 /* config.h */, + EDBE910525E7E7B1001EB4A4 /* sidplayfp */, + EDBE910225E7E7B1001EB4A4 /* sidtune */, + ); + name = generated; + sourceTree = ""; + }; + EDBE8F1725E7E79F001EB4A4 /* c64 */ = { + isa = PBXGroup; + children = ( + EDBE8F1825E7E79F001EB4A4 /* VIC_II */, + EDBE8F1D25E7E79F001EB4A4 /* c64cpu.h */, + EDBE8F1E25E7E79F001EB4A4 /* c64vic.h */, + EDBE8F1F25E7E79F001EB4A4 /* CPU */, + EDBE8F2625E7E79F001EB4A4 /* c64.h */, + EDBE8F2725E7E79F001EB4A4 /* c64.cpp */, + EDBE8F2825E7E79F001EB4A4 /* mmu.h */, + EDBE8F2925E7E79F001EB4A4 /* c64sid.h */, + EDBE8F2A25E7E79F001EB4A4 /* c64cia.h */, + EDBE8F2B25E7E79F001EB4A4 /* c64env.h */, + EDBE8F2C25E7E79F001EB4A4 /* mmu.cpp */, + EDBE8F2D25E7E79F001EB4A4 /* CIA */, + EDBE8F3825E7E79F001EB4A4 /* Banks */, + ); + name = c64; + path = sidplayfp/src/c64; + sourceTree = ""; + }; + EDBE8F1825E7E79F001EB4A4 /* VIC_II */ = { + isa = PBXGroup; + children = ( + EDBE8F1925E7E79F001EB4A4 /* lightpen.h */, + EDBE8F1A25E7E79F001EB4A4 /* mos656x.h */, + EDBE8F1B25E7E79F001EB4A4 /* mos656x.cpp */, + EDBE8F1C25E7E79F001EB4A4 /* sprites.h */, + ); + path = VIC_II; + sourceTree = ""; + }; + EDBE8F1F25E7E79F001EB4A4 /* CPU */ = { + isa = PBXGroup; + children = ( + EDBE8F2025E7E79F001EB4A4 /* mos6510debug.h */, + EDBE8F2125E7E79F001EB4A4 /* mos6510.cpp */, + EDBE8F2225E7E79F001EB4A4 /* flags.h */, + EDBE8F2325E7E79F001EB4A4 /* opcodes.h */, + EDBE8F2425E7E79F001EB4A4 /* mos6510.h */, + EDBE8F2525E7E79F001EB4A4 /* mos6510debug.cpp */, + ); + path = CPU; + sourceTree = ""; + }; + EDBE8F2D25E7E79F001EB4A4 /* CIA */ = { + isa = PBXGroup; + children = ( + EDBE8F2E25E7E79F001EB4A4 /* tod.h */, + EDBE8F2F25E7E79F001EB4A4 /* tod.cpp */, + EDBE8F3025E7E79F001EB4A4 /* SerialPort.cpp */, + EDBE8F3125E7E79F001EB4A4 /* interrupt.cpp */, + EDBE8F3225E7E79F001EB4A4 /* timer.cpp */, + EDBE8F3325E7E79F001EB4A4 /* SerialPort.h */, + EDBE8F3425E7E79F001EB4A4 /* timer.h */, + EDBE8F3525E7E79F001EB4A4 /* interrupt.h */, + EDBE8F3625E7E79F001EB4A4 /* mos6526.h */, + EDBE8F3725E7E79F001EB4A4 /* mos6526.cpp */, + ); + path = CIA; + sourceTree = ""; + }; + EDBE8F3825E7E79F001EB4A4 /* Banks */ = { + isa = PBXGroup; + children = ( + EDBE8F3925E7E79F001EB4A4 /* ExtraSidBank.h */, + EDBE8F3A25E7E79F001EB4A4 /* SystemROMBanks.h */, + EDBE8F3B25E7E79F001EB4A4 /* ColorRAMBank.h */, + EDBE8F3C25E7E79F001EB4A4 /* IOBank.h */, + EDBE8F3D25E7E79F001EB4A4 /* SystemRAMBank.h */, + EDBE8F3E25E7E79F001EB4A4 /* NullSid.h */, + EDBE8F3F25E7E79F001EB4A4 /* ZeroRAMBank.h */, + EDBE8F4025E7E79F001EB4A4 /* DisconnectedBusBank.h */, + EDBE8F4125E7E7A0001EB4A4 /* SidBank.h */, + EDBE8F4225E7E7A0001EB4A4 /* Bank.h */, + ); + path = Banks; + sourceTree = ""; + }; + EDBE8F4425E7E7A0001EB4A4 /* builders */ = { + isa = PBXGroup; + children = ( + EDBE8F4525E7E7A0001EB4A4 /* hardsid-builder */, + EDBE8F4B25E7E7A0001EB4A4 /* exsid-builder */, + EDBE8F6525E7E7A0001EB4A4 /* resid-builder */, + EDBE8F9325E7E7A0001EB4A4 /* residfp-builder */, + ); + name = builders; + path = sidplayfp/src/builders; + sourceTree = ""; + }; + EDBE8F4525E7E7A0001EB4A4 /* hardsid-builder */ = { + isa = PBXGroup; + children = ( + EDBE8F4625E7E7A0001EB4A4 /* hardsid-emu-win.cpp */, + EDBE8F4725E7E7A0001EB4A4 /* hardsid-emu.h */, + EDBE8F4825E7E7A0001EB4A4 /* hardsid-emu-unix.cpp */, + EDBE8F4925E7E7A0001EB4A4 /* hardsid.h */, + EDBE8F4A25E7E7A0001EB4A4 /* hardsid-builder.cpp */, + ); + path = "hardsid-builder"; + sourceTree = ""; + }; + EDBE8F4B25E7E7A0001EB4A4 /* exsid-builder */ = { + isa = PBXGroup; + children = ( + EDBE8F4C25E7E7A0001EB4A4 /* exsid-emu.h */, + EDBE8F4D25E7E7A0001EB4A4 /* driver */, + EDBE8F6225E7E7A0001EB4A4 /* exsid-builder.cpp */, + EDBE8F6325E7E7A0001EB4A4 /* exsid-emu.cpp */, + EDBE8F6425E7E7A0001EB4A4 /* exsid.h */, + ); + path = "exsid-builder"; + sourceTree = ""; + }; + EDBE8F4D25E7E7A0001EB4A4 /* driver */ = { + isa = PBXGroup; + children = ( + EDBE8F4E25E7E7A0001EB4A4 /* configure.ac */, + EDBE8F4F25E7E7A0001EB4A4 /* exSID.c */, + EDBE8F5025E7E7A0001EB4A4 /* ChangeLog */, + EDBE8F5125E7E7A0001EB4A4 /* Doxyfile.in */, + EDBE8F5225E7E7A0001EB4A4 /* exSID_ftdiwrap.h */, + EDBE8F5325E7E7A0001EB4A4 /* docs */, + EDBE8F5525E7E7A0001EB4A4 /* README */, + EDBE8F5625E7E7A0001EB4A4 /* Makefile.am */, + EDBE8F5725E7E7A0001EB4A4 /* COPYING */, + EDBE8F5825E7E7A0001EB4A4 /* .github */, + EDBE8F5C25E7E7A0001EB4A4 /* exSID_defs.h */, + EDBE8F5D25E7E7A0001EB4A4 /* m4 */, + EDBE8F5F25E7E7A0001EB4A4 /* exSID.h */, + EDBE8F6025E7E7A0001EB4A4 /* libexsid.pc.in */, + EDBE8F6125E7E7A0001EB4A4 /* exSID_ftdiwrap.c */, + ); + path = driver; + sourceTree = ""; + }; + EDBE8F5325E7E7A0001EB4A4 /* docs */ = { + isa = PBXGroup; + children = ( + EDBE8F5425E7E7A0001EB4A4 /* mainpage.dox */, + ); + path = docs; + sourceTree = ""; + }; + EDBE8F5825E7E7A0001EB4A4 /* .github */ = { + isa = PBXGroup; + children = ( + EDBE8F5925E7E7A0001EB4A4 /* workflows */, + ); + path = .github; + sourceTree = ""; + }; + EDBE8F5925E7E7A0001EB4A4 /* workflows */ = { + isa = PBXGroup; + children = ( + EDBE8F5A25E7E7A0001EB4A4 /* release.yml */, + EDBE8F5B25E7E7A0001EB4A4 /* build.yml */, + ); + path = workflows; + sourceTree = ""; + }; + EDBE8F5D25E7E7A0001EB4A4 /* m4 */ = { + isa = PBXGroup; + children = ( + EDBE8F5E25E7E7A0001EB4A4 /* ax_pthread.m4 */, + ); + path = m4; + sourceTree = ""; + }; + EDBE8F6525E7E7A0001EB4A4 /* resid-builder */ = { + isa = PBXGroup; + children = ( + EDBE8F6625E7E7A0001EB4A4 /* resid-emu.h */, + EDBE8F6725E7E7A0001EB4A4 /* resid */, + EDBE8F9025E7E7A0001EB4A4 /* resid-builder.cpp */, + EDBE8F9125E7E7A0001EB4A4 /* resid.h */, + EDBE8F9225E7E7A0001EB4A4 /* resid-emu.cpp */, + ); + path = "resid-builder"; + sourceTree = ""; + }; + EDBE8F6725E7E7A0001EB4A4 /* resid */ = { + isa = PBXGroup; + children = ( + EDBE8F6825E7E7A0001EB4A4 /* wave8580_P_T.dat */, + EDBE8F6925E7E7A0001EB4A4 /* dac.h */, + EDBE8F6A25E7E7A0001EB4A4 /* extfilt.h */, + EDBE8F6B25E7E7A0001EB4A4 /* envelope.cc */, + EDBE8F6C25E7E7A0001EB4A4 /* pot.cc */, + EDBE8F6D25E7E7A0001EB4A4 /* README.VICE */, + EDBE8F6E25E7E7A0001EB4A4 /* wave6581_PST.dat */, + EDBE8F6F25E7E7A0001EB4A4 /* spline.h */, + EDBE8F7025E7E7A0001EB4A4 /* ChangeLog */, + EDBE8F7125E7E7A0001EB4A4 /* AUTHORS */, + EDBE8F7225E7E7A0001EB4A4 /* resid-config.h */, + EDBE8F7325E7E7A0001EB4A4 /* wave8580__ST.dat */, + EDBE8F7425E7E7A0001EB4A4 /* voice.cc */, + EDBE8F7525E7E7A0001EB4A4 /* sid.cc */, + EDBE8F7625E7E7A0001EB4A4 /* filter.cc */, + EDBE8F7725E7E7A0001EB4A4 /* wave8580_PS_.dat */, + EDBE8F7825E7E7A0001EB4A4 /* README */, + EDBE8F7925E7E7A0001EB4A4 /* configure.in */, + EDBE8F7A25E7E7A0001EB4A4 /* TODO */, + EDBE8F7B25E7E7A0001EB4A4 /* Makefile.am */, + EDBE8F7C25E7E7A0001EB4A4 /* dac.cc */, + EDBE8F7D25E7E7A0001EB4A4 /* wave6581__ST.dat */, + EDBE8F7E25E7E7A0001EB4A4 /* NEWS */, + EDBE8F7F25E7E7A0001EB4A4 /* pot.h */, + EDBE8F8025E7E7A0001EB4A4 /* wave6581_PS_.dat */, + EDBE8F8125E7E7A0001EB4A4 /* siddefs.h.in */, + EDBE8F8225E7E7A0001EB4A4 /* voice.h */, + EDBE8F8325E7E7A0001EB4A4 /* filter8580new.cc */, + EDBE8F8425E7E7A0001EB4A4 /* envelope.h */, + EDBE8F8525E7E7A0001EB4A4 /* THANKS */, + EDBE8F8625E7E7A0001EB4A4 /* wave6581_P_T.dat */, + EDBE8F8725E7E7A0001EB4A4 /* wave.h */, + EDBE8F8825E7E7A0001EB4A4 /* samp2src.pl */, + EDBE8F8925E7E7A0001EB4A4 /* sid.h */, + EDBE8F8A25E7E7A0001EB4A4 /* filter8580new.h */, + EDBE8F8B25E7E7A0001EB4A4 /* filter.h */, + EDBE8F8C25E7E7A0001EB4A4 /* extfilt.cc */, + EDBE8F8D25E7E7A0001EB4A4 /* wave.cc */, + EDBE8F8E25E7E7A0001EB4A4 /* wave8580_PST.dat */, + EDBE8F8F25E7E7A0001EB4A4 /* version.cc */, + ); + path = resid; + sourceTree = ""; + }; + EDBE8F9325E7E7A0001EB4A4 /* residfp-builder */ = { + isa = PBXGroup; + children = ( + EDBE8F9425E7E7A0001EB4A4 /* residfp-emu.cpp */, + EDBE8F9525E7E7A0001EB4A4 /* residfp-builder.cpp */, + EDBE8F9625E7E7A0001EB4A4 /* residfp */, + EDBE8FC425E7E7A0001EB4A4 /* residfp.h */, + EDBE8FC525E7E7A0001EB4A4 /* residfp-emu.h */, + ); + path = "residfp-builder"; + sourceTree = ""; + }; + EDBE8F9625E7E7A0001EB4A4 /* residfp */ = { + isa = PBXGroup; + children = ( + EDBE8F9725E7E7A0001EB4A4 /* Dac.h */, + EDBE8F9825E7E7A0001EB4A4 /* OpAmp.cpp */, + EDBE8F9925E7E7A0001EB4A4 /* resample */, + EDBE8FA025E7E7A0001EB4A4 /* Spline.h */, + EDBE8FA125E7E7A0001EB4A4 /* WaveformGenerator.h */, + EDBE8FA225E7E7A0001EB4A4 /* siddefs-fp.h.in */, + EDBE8FA325E7E7A0001EB4A4 /* EnvelopeGenerator.cpp */, + EDBE8FA425E7E7A0001EB4A4 /* Dac.cpp */, + EDBE8FA525E7E7A0001EB4A4 /* AUTHORS */, + EDBE8FA625E7E7A0001EB4A4 /* WaveformGenerator.cpp */, + EDBE8FA725E7E7A0001EB4A4 /* Integrator8580.h */, + EDBE8FA825E7E7A0001EB4A4 /* SID.cpp */, + EDBE8FA925E7E7A0001EB4A4 /* EnvelopeGenerator.h */, + EDBE8FAA25E7E7A0001EB4A4 /* FilterModelConfig.cpp */, + EDBE8FAB25E7E7A0001EB4A4 /* OpAmp.h */, + EDBE8FAC25E7E7A0001EB4A4 /* Filter.cpp */, + EDBE8FAD25E7E7A0001EB4A4 /* Potentiometer.h */, + EDBE8FAE25E7E7A0001EB4A4 /* README */, + EDBE8FAF25E7E7A0001EB4A4 /* Filter6581.cpp */, + EDBE8FB025E7E7A0001EB4A4 /* COPYING */, + EDBE8FB125E7E7A0001EB4A4 /* Integrator.cpp */, + EDBE8FB225E7E7A0001EB4A4 /* array.h */, + EDBE8FB325E7E7A0001EB4A4 /* Integrator8580.cpp */, + EDBE8FB425E7E7A0001EB4A4 /* ExternalFilter.cpp */, + EDBE8FB525E7E7A0001EB4A4 /* FilterModelConfig8580.cpp */, + EDBE8FB625E7E7A0001EB4A4 /* FilterModelConfig8580.h */, + EDBE8FB725E7E7A0001EB4A4 /* Integrator.h */, + EDBE8FB825E7E7A0001EB4A4 /* WaveformCalculator.h */, + EDBE8FB925E7E7A0001EB4A4 /* Filter8580.cpp */, + EDBE8FBA25E7E7A0001EB4A4 /* WaveformCalculator.cpp */, + EDBE8FBB25E7E7A0001EB4A4 /* Voice.h */, + EDBE8FBC25E7E7A0001EB4A4 /* FilterModelConfig.h */, + EDBE8FBD25E7E7A0001EB4A4 /* SID.h */, + EDBE8FBE25E7E7A0001EB4A4 /* Filter.h */, + EDBE8FBF25E7E7A0001EB4A4 /* Filter6581.h */, + EDBE8FC025E7E7A0001EB4A4 /* Spline.cpp */, + EDBE8FC125E7E7A0001EB4A4 /* Filter8580.h */, + EDBE8FC225E7E7A0001EB4A4 /* ExternalFilter.h */, + EDBE8FC325E7E7A0001EB4A4 /* version.cc */, + ); + path = residfp; + sourceTree = ""; + }; + EDBE8F9925E7E7A0001EB4A4 /* resample */ = { + isa = PBXGroup; + children = ( + EDBE8F9A25E7E7A0001EB4A4 /* TwoPassSincResampler.h */, + EDBE8F9B25E7E7A0001EB4A4 /* SincResampler.cpp */, + EDBE8F9C25E7E7A0001EB4A4 /* test.cpp */, + EDBE8F9D25E7E7A0001EB4A4 /* ZeroOrderResampler.h */, + EDBE8F9E25E7E7A0001EB4A4 /* SincResampler.h */, + EDBE8F9F25E7E7A0001EB4A4 /* Resampler.h */, + ); + path = resample; + sourceTree = ""; + }; + EDBE8FD425E7E7A1001EB4A4 /* utils */ = { + isa = PBXGroup; + children = ( + EDBE8FD525E7E7A1001EB4A4 /* md5Factory.cpp */, + EDBE8FD625E7E7A1001EB4A4 /* MD5 */, + EDBE8FDA25E7E7A1001EB4A4 /* iMd5.h */, + EDBE8FDB25E7E7A1001EB4A4 /* md5Internal.h */, + EDBE8FDC25E7E7A1001EB4A4 /* SidDatabase.h */, + EDBE8FDD25E7E7A1001EB4A4 /* iniParser.cpp */, + EDBE8FDE25E7E7A1001EB4A4 /* STILview */, + EDBE8FE425E7E7A1001EB4A4 /* md5Factory.h */, + EDBE8FE525E7E7A1001EB4A4 /* SidDatabase.cpp */, + EDBE8FE625E7E7A1001EB4A4 /* iniParser.h */, + EDBE8FE725E7E7A1001EB4A4 /* md5Gcrypt.h */, + ); + name = utils; + path = sidplayfp/src/utils; + sourceTree = ""; + }; + EDBE8FD625E7E7A1001EB4A4 /* MD5 */ = { + isa = PBXGroup; + children = ( + EDBE8FD725E7E7A1001EB4A4 /* MD5.cpp */, + EDBE8FD825E7E7A1001EB4A4 /* MD5.h */, + EDBE8FD925E7E7A1001EB4A4 /* MD5_Defs.h */, + ); + path = MD5; + sourceTree = ""; + }; + EDBE8FDE25E7E7A1001EB4A4 /* STILview */ = { + isa = PBXGroup; + children = ( + EDBE8FDF25E7E7A1001EB4A4 /* TODO.txt */, + EDBE8FE025E7E7A1001EB4A4 /* stil.cpp */, + EDBE8FE125E7E7A1001EB4A4 /* stildefs.h */, + EDBE8FE225E7E7A1001EB4A4 /* README.txt */, + EDBE8FE325E7E7A1001EB4A4 /* stil.h */, + ); + path = STILview; + sourceTree = ""; + }; + EDBE8FEC25E7E7A1001EB4A4 /* sidplayfp */ = { + isa = PBXGroup; + children = ( + EDBE8FED25E7E7A1001EB4A4 /* siddefs.h */, + EDBE8FEE25E7E7A1001EB4A4 /* SidConfig.cpp */, + EDBE8FEF25E7E7A1001EB4A4 /* sidbuilder.h */, + EDBE8FF025E7E7A1001EB4A4 /* SidTune.h */, + EDBE8FF125E7E7A1001EB4A4 /* sidplayfp.cpp */, + EDBE8FF225E7E7A1001EB4A4 /* sidversion.h.in */, + EDBE8FF325E7E7A1001EB4A4 /* SidInfo.cpp */, + EDBE8FF425E7E7A1001EB4A4 /* SidConfig.h */, + EDBE8FF525E7E7A1001EB4A4 /* sidbuilder.cpp */, + EDBE8FF625E7E7A1001EB4A4 /* sidplayfp.h */, + EDBE8FF725E7E7A1001EB4A4 /* SidTuneInfo.h */, + EDBE8FF825E7E7A1001EB4A4 /* SidInfo.h */, + EDBE8FF925E7E7A1001EB4A4 /* SidTune.cpp */, + EDBE8FFA25E7E7A1001EB4A4 /* SidTuneInfo.cpp */, + ); + name = sidplayfp; + path = sidplayfp/src/sidplayfp; + sourceTree = ""; + }; + EDBE8FFC25E7E7A2001EB4A4 /* sidtune */ = { + isa = PBXGroup; + children = ( + EDBE8FFD25E7E7A2001EB4A4 /* SidTuneCfg.h */, + EDBE8FFE25E7E7A2001EB4A4 /* SidTuneTools.h */, + EDBE8FFF25E7E7A2001EB4A4 /* SidTuneInfoImpl.h */, + EDBE900025E7E7A2001EB4A4 /* PSID.cpp */, + EDBE900125E7E7A2001EB4A4 /* SidTuneBase.cpp */, + EDBE900225E7E7A2001EB4A4 /* SmartPtr.h */, + EDBE900325E7E7A2001EB4A4 /* prg.h */, + EDBE900425E7E7A2001EB4A4 /* sidplayer2.a65 */, + EDBE900525E7E7A2001EB4A4 /* p00.h */, + EDBE900625E7E7A2001EB4A4 /* MUS.cpp */, + EDBE900725E7E7A2001EB4A4 /* PSID.h */, + EDBE900825E7E7A2001EB4A4 /* sidplayer1.a65 */, + EDBE900925E7E7A2001EB4A4 /* SidTuneTools.cpp */, + EDBE900A25E7E7A2001EB4A4 /* prg.cpp */, + EDBE900B25E7E7A2001EB4A4 /* SidTuneBase.h */, + EDBE900C25E7E7A2001EB4A4 /* MUS.h */, + EDBE900D25E7E7A2001EB4A4 /* p00.cpp */, + ); + name = sidtune; + path = sidplayfp/src/sidtune; + sourceTree = ""; + }; + EDBE90F325E7E7B1001EB4A4 /* builders */ = { + isa = PBXGroup; + children = ( + EDBE90F425E7E7B1001EB4A4 /* resid-builder */, + EDBE90FF25E7E7B1001EB4A4 /* residfp-builder */, + ); + name = builders; + path = generated/src/builders; + sourceTree = ""; + }; + EDBE90F425E7E7B1001EB4A4 /* resid-builder */ = { + isa = PBXGroup; + children = ( + EDBE90F525E7E7B1001EB4A4 /* resid */, + ); + path = "resid-builder"; + sourceTree = ""; + }; + EDBE90F525E7E7B1001EB4A4 /* resid */ = { + isa = PBXGroup; + children = ( + EDBE90F625E7E7B1001EB4A4 /* siddefs.h */, + EDBE90F725E7E7B1001EB4A4 /* wave8580__ST.h */, + EDBE90F825E7E7B1001EB4A4 /* wave8580_P_T.h */, + EDBE90F925E7E7B1001EB4A4 /* wave8580_PS_.h */, + EDBE90FA25E7E7B1001EB4A4 /* wave6581_PST.h */, + EDBE90FB25E7E7B1001EB4A4 /* wave6581__ST.h */, + EDBE90FC25E7E7B1001EB4A4 /* wave6581_P_T.h */, + EDBE90FD25E7E7B1001EB4A4 /* wave8580_PST.h */, + EDBE90FE25E7E7B1001EB4A4 /* wave6581_PS_.h */, + ); + path = resid; + sourceTree = ""; + }; + EDBE90FF25E7E7B1001EB4A4 /* residfp-builder */ = { + isa = PBXGroup; + children = ( + EDBE910025E7E7B1001EB4A4 /* residfp */, + ); + path = "residfp-builder"; + sourceTree = ""; + }; + EDBE910025E7E7B1001EB4A4 /* residfp */ = { + isa = PBXGroup; + children = ( + EDBE910125E7E7B1001EB4A4 /* siddefs-fp.h */, + ); + path = residfp; + sourceTree = ""; + }; + EDBE910225E7E7B1001EB4A4 /* sidtune */ = { + isa = PBXGroup; + children = ( + EDBE910325E7E7B1001EB4A4 /* sidplayer2.bin */, + EDBE910425E7E7B1001EB4A4 /* sidplayer1.bin */, + ); + name = sidtune; + path = generated/src/sidtune; + sourceTree = ""; + }; + EDBE910525E7E7B1001EB4A4 /* sidplayfp */ = { + isa = PBXGroup; + children = ( + EDBE910625E7E7B1001EB4A4 /* sidversion.h */, + ); + name = sidplayfp; + path = generated/src/sidplayfp; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ @@ -43,6 +985,127 @@ isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + EDBE90AE25E7E7A2001EB4A4 /* residfp.h in Headers */, + EDBE90DD25E7E7A2001EB4A4 /* SidTuneInfo.h in Headers */, + EDBE90DE25E7E7A2001EB4A4 /* SidInfo.h in Headers */, + EDBE90D525E7E7A2001EB4A4 /* sidbuilder.h in Headers */, + EDBE90DA25E7E7A2001EB4A4 /* SidConfig.h in Headers */, + EDBE90D125E7E7A2001EB4A4 /* Event.h in Headers */, + EDBE911425E7E7B2001EB4A4 /* sidversion.h in Headers */, + EDBE90DC25E7E7A2001EB4A4 /* sidplayfp.h in Headers */, + EDBE90D325E7E7A2001EB4A4 /* siddefs.h in Headers */, + EDBE90D625E7E7A2001EB4A4 /* SidTune.h in Headers */, + EDBE90F125E7E7A2001EB4A4 /* MUS.h in Headers */, + EDBE90C425E7E7A2001EB4A4 /* SidDatabase.h in Headers */, + EDBE909525E7E7A2001EB4A4 /* OpAmp.h in Headers */, + EDBE902125E7E7A2001EB4A4 /* mmu.h in Headers */, + EDBE908725E7E7A2001EB4A4 /* ZeroOrderResampler.h in Headers */, + EDBE905C25E7E7A2001EB4A4 /* spline.h in Headers */, + EDBE901F25E7E7A2001EB4A4 /* c64.h in Headers */, + EDBE90C225E7E7A2001EB4A4 /* iMd5.h in Headers */, + EDBE908825E7E7A2001EB4A4 /* SincResampler.h in Headers */, + EDBE908225E7E7A2001EB4A4 /* Dac.h in Headers */, + EDBE902C25E7E7A2001EB4A4 /* timer.h in Headers */, + EDBE906F25E7E7A2001EB4A4 /* voice.h in Headers */, + EDBE90A925E7E7A2001EB4A4 /* Filter6581.h in Headers */, + EDBE90F025E7E7A2001EB4A4 /* SidTuneBase.h in Headers */, + EDBE910925E7E7B2001EB4A4 /* wave8580__ST.h in Headers */, + EDBE901225E7E7A2001EB4A4 /* mixer.h in Headers */, + EDBE910A25E7E7B2001EB4A4 /* wave8580_P_T.h in Headers */, + EDBE90E325E7E7A2001EB4A4 /* SidTuneTools.h in Headers */, + EDBE907425E7E7A2001EB4A4 /* wave.h in Headers */, + EDBE902D25E7E7A2001EB4A4 /* interrupt.h in Headers */, + EDBE901925E7E7A2001EB4A4 /* mos6510debug.h in Headers */, + EDBE903C25E7E7A2001EB4A4 /* hardsid-emu.h in Headers */, + EDBE901D25E7E7A2001EB4A4 /* mos6510.h in Headers */, + EDBE908425E7E7A2001EB4A4 /* TwoPassSincResampler.h in Headers */, + EDBE90A025E7E7A2001EB4A4 /* FilterModelConfig8580.h in Headers */, + EDBE90B525E7E7A2001EB4A4 /* psiddrv.h in Headers */, + EDBE905625E7E7A2001EB4A4 /* dac.h in Headers */, + EDBE90C825E7E7A2001EB4A4 /* stildefs.h in Headers */, + EDBE903825E7E7A2001EB4A4 /* SidBank.h in Headers */, + EDBE909725E7E7A2001EB4A4 /* Potentiometer.h in Headers */, + EDBE911025E7E7B2001EB4A4 /* wave6581_PS_.h in Headers */, + EDBE903225E7E7A2001EB4A4 /* ColorRAMBank.h in Headers */, + EDBE908A25E7E7A2001EB4A4 /* Spline.h in Headers */, + EDBE903725E7E7A2001EB4A4 /* DisconnectedBusBank.h in Headers */, + EDBE910B25E7E7B2001EB4A4 /* wave8580_PS_.h in Headers */, + EDBE902225E7E7A2001EB4A4 /* c64sid.h in Headers */, + EDBE90AB25E7E7A2001EB4A4 /* Filter8580.h in Headers */, + EDBE90B125E7E7A2001EB4A4 /* sidendian.h in Headers */, + EDBE906C25E7E7A2001EB4A4 /* pot.h in Headers */, + EDBE90C125E7E7A2001EB4A4 /* MD5_Defs.h in Headers */, + EDBE902625E7E7A2001EB4A4 /* tod.h in Headers */, + EDBE902425E7E7A2001EB4A4 /* c64env.h in Headers */, + EDBE90C025E7E7A2001EB4A4 /* MD5.h in Headers */, + EDBE911525E7E7B2001EB4A4 /* config.h in Headers */, + EDBE90A725E7E7A2001EB4A4 /* SID.h in Headers */, + EDBE905725E7E7A2001EB4A4 /* extfilt.h in Headers */, + EDBE90B925E7E7A2001EB4A4 /* romCheck.h in Headers */, + EDBE909C25E7E7A2001EB4A4 /* array.h in Headers */, + EDBE903425E7E7A2001EB4A4 /* SystemRAMBank.h in Headers */, + EDBE90A625E7E7A2001EB4A4 /* FilterModelConfig.h in Headers */, + EDBE907E25E7E7A2001EB4A4 /* resid.h in Headers */, + EDBE907625E7E7A2001EB4A4 /* sid.h in Headers */, + EDBE90CD25E7E7A2001EB4A4 /* iniParser.h in Headers */, + EDBE90A825E7E7A2001EB4A4 /* Filter.h in Headers */, + EDBE910D25E7E7B2001EB4A4 /* wave6581__ST.h in Headers */, + EDBE901725E7E7A2001EB4A4 /* c64cpu.h in Headers */, + EDBE909125E7E7A2001EB4A4 /* Integrator8580.h in Headers */, + EDBE90AC25E7E7A2001EB4A4 /* ExternalFilter.h in Headers */, + EDBE908B25E7E7A2001EB4A4 /* WaveformGenerator.h in Headers */, + EDBE901625E7E7A2001EB4A4 /* sprites.h in Headers */, + EDBE90CA25E7E7A2001EB4A4 /* stil.h in Headers */, + EDBE902325E7E7A2001EB4A4 /* c64cia.h in Headers */, + EDBE901B25E7E7A2001EB4A4 /* flags.h in Headers */, + EDBE902B25E7E7A2001EB4A4 /* SerialPort.h in Headers */, + EDBE90AF25E7E7A2001EB4A4 /* residfp-emu.h in Headers */, + EDBE900E25E7E7A2001EB4A4 /* sidrandom.h in Headers */, + EDBE903A25E7E7A2001EB4A4 /* stringutils.h in Headers */, + EDBE90A125E7E7A2001EB4A4 /* Integrator.h in Headers */, + EDBE90B825E7E7A2001EB4A4 /* SidInfoImpl.h in Headers */, + EDBE903125E7E7A2001EB4A4 /* SystemROMBanks.h in Headers */, + EDBE907125E7E7A2001EB4A4 /* envelope.h in Headers */, + EDBE901025E7E7A2001EB4A4 /* reloc65.h in Headers */, + EDBE901825E7E7A2001EB4A4 /* c64vic.h in Headers */, + EDBE910E25E7E7B2001EB4A4 /* wave6581_P_T.h in Headers */, + EDBE901325E7E7A2001EB4A4 /* lightpen.h in Headers */, + EDBE90EA25E7E7A2001EB4A4 /* p00.h in Headers */, + EDBE910C25E7E7B2001EB4A4 /* wave6581_PST.h in Headers */, + EDBE903925E7E7A2001EB4A4 /* Bank.h in Headers */, + EDBE911125E7E7B2001EB4A4 /* siddefs-fp.h in Headers */, + EDBE90A225E7E7A2001EB4A4 /* WaveformCalculator.h in Headers */, + EDBE90C325E7E7A2001EB4A4 /* md5Internal.h in Headers */, + EDBE90E225E7E7A2001EB4A4 /* SidTuneCfg.h in Headers */, + EDBE910F25E7E7B2001EB4A4 /* wave8580_PST.h in Headers */, + EDBE903025E7E7A2001EB4A4 /* ExtraSidBank.h in Headers */, + EDBE901C25E7E7A2001EB4A4 /* opcodes.h in Headers */, + EDBE901425E7E7A2001EB4A4 /* mos656x.h in Headers */, + EDBE90E425E7E7A2001EB4A4 /* SidTuneInfoImpl.h in Headers */, + EDBE90CB25E7E7A2001EB4A4 /* md5Factory.h in Headers */, + EDBE90BB25E7E7A2001EB4A4 /* sidemu.h in Headers */, + EDBE903325E7E7A2001EB4A4 /* IOBank.h in Headers */, + EDBE907725E7E7A2001EB4A4 /* filter8580new.h in Headers */, + EDBE903E25E7E7A2001EB4A4 /* hardsid.h in Headers */, + EDBE908925E7E7A2001EB4A4 /* Resampler.h in Headers */, + EDBE90A525E7E7A2001EB4A4 /* Voice.h in Headers */, + EDBE910825E7E7B2001EB4A4 /* siddefs.h in Headers */, + EDBE90B225E7E7A2001EB4A4 /* EventScheduler.h in Headers */, + EDBE90CE25E7E7A2001EB4A4 /* md5Gcrypt.h in Headers */, + EDBE90E725E7E7A2001EB4A4 /* SmartPtr.h in Headers */, + EDBE90B425E7E7A2001EB4A4 /* EventCallback.h in Headers */, + EDBE90D225E7E7A2001EB4A4 /* sidcxx11.h in Headers */, + EDBE903625E7E7A2001EB4A4 /* ZeroRAMBank.h in Headers */, + EDBE90EC25E7E7A2001EB4A4 /* PSID.h in Headers */, + EDBE905F25E7E7A2001EB4A4 /* resid-config.h in Headers */, + EDBE90E825E7E7A2001EB4A4 /* prg.h in Headers */, + EDBE905425E7E7A2001EB4A4 /* resid-emu.h in Headers */, + EDBE90B025E7E7A2001EB4A4 /* sidmd5.h in Headers */, + EDBE903525E7E7A2001EB4A4 /* NullSid.h in Headers */, + EDBE909325E7E7A2001EB4A4 /* EnvelopeGenerator.h in Headers */, + EDBE90BD25E7E7A2001EB4A4 /* sidmemory.h in Headers */, + EDBE90B625E7E7A2001EB4A4 /* player.h in Headers */, + EDBE902E25E7E7A2001EB4A4 /* mos6526.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -113,6 +1176,72 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + EDBE90F225E7E7A2001EB4A4 /* p00.cpp in Sources */, + EDBE90D425E7E7A2001EB4A4 /* SidConfig.cpp in Sources */, + EDBE901525E7E7A2001EB4A4 /* mos656x.cpp in Sources */, + EDBE903F25E7E7A2001EB4A4 /* hardsid-builder.cpp in Sources */, + EDBE907025E7E7A2001EB4A4 /* filter8580new.cc in Sources */, + EDBE906925E7E7A2001EB4A4 /* dac.cc in Sources */, + EDBE902A25E7E7A2001EB4A4 /* timer.cpp in Sources */, + EDBE909E25E7E7A2001EB4A4 /* ExternalFilter.cpp in Sources */, + EDBE908125E7E7A2001EB4A4 /* residfp-builder.cpp in Sources */, + EDBE909225E7E7A2001EB4A4 /* SID.cpp in Sources */, + EDBE90AD25E7E7A2001EB4A4 /* version.cc in Sources */, + EDBE90C525E7E7A2001EB4A4 /* iniParser.cpp in Sources */, + EDBE90CF25E7E7A2001EB4A4 /* EventScheduler.cpp in Sources */, + EDBE909F25E7E7A2001EB4A4 /* FilterModelConfig8580.cpp in Sources */, + EDBE90CC25E7E7A2001EB4A4 /* SidDatabase.cpp in Sources */, + EDBE902725E7E7A2001EB4A4 /* tod.cpp in Sources */, + EDBE90BF25E7E7A2001EB4A4 /* MD5.cpp in Sources */, + EDBE906125E7E7A2001EB4A4 /* voice.cc in Sources */, + EDBE90A325E7E7A2001EB4A4 /* Filter8580.cpp in Sources */, + EDBE90BC25E7E7A2001EB4A4 /* sidemu.cpp in Sources */, + EDBE909625E7E7A2001EB4A4 /* Filter.cpp in Sources */, + EDBE90DB25E7E7A2001EB4A4 /* sidbuilder.cpp in Sources */, + EDBE905925E7E7A2001EB4A4 /* pot.cc in Sources */, + EDBE909425E7E7A2001EB4A4 /* FilterModelConfig.cpp in Sources */, + EDBE90EE25E7E7A2001EB4A4 /* SidTuneTools.cpp in Sources */, + EDBE901A25E7E7A2001EB4A4 /* mos6510.cpp in Sources */, + EDBE908025E7E7A2001EB4A4 /* residfp-emu.cpp in Sources */, + EDBE908525E7E7A2001EB4A4 /* SincResampler.cpp in Sources */, + EDBE905825E7E7A2001EB4A4 /* envelope.cc in Sources */, + EDBE907A25E7E7A2001EB4A4 /* wave.cc in Sources */, + EDBE90E025E7E7A2001EB4A4 /* SidTuneInfo.cpp in Sources */, + EDBE906225E7E7A2001EB4A4 /* sid.cc in Sources */, + EDBE909B25E7E7A2001EB4A4 /* Integrator.cpp in Sources */, + EDBE903D25E7E7A2001EB4A4 /* hardsid-emu-unix.cpp in Sources */, + EDBE90D725E7E7A2001EB4A4 /* sidplayfp.cpp in Sources */, + EDBE90EF25E7E7A2001EB4A4 /* prg.cpp in Sources */, + EDBE90BE25E7E7A2001EB4A4 /* md5Factory.cpp in Sources */, + EDBE909D25E7E7A2001EB4A4 /* Integrator8580.cpp in Sources */, + EDBE90E125E7E7A2001EB4A4 /* psiddrv.cpp in Sources */, + EDBE90E625E7E7A2001EB4A4 /* SidTuneBase.cpp in Sources */, + EDBE90AA25E7E7A2001EB4A4 /* Spline.cpp in Sources */, + EDBE902F25E7E7A2001EB4A4 /* mos6526.cpp in Sources */, + EDBE900F25E7E7A2001EB4A4 /* reloc65.cpp in Sources */, + EDBE902825E7E7A2001EB4A4 /* SerialPort.cpp in Sources */, + EDBE909925E7E7A2001EB4A4 /* Filter6581.cpp in Sources */, + EDBE90EB25E7E7A2001EB4A4 /* MUS.cpp in Sources */, + EDBE907C25E7E7A2001EB4A4 /* version.cc in Sources */, + EDBE90B325E7E7A2001EB4A4 /* player.cpp in Sources */, + EDBE902525E7E7A2001EB4A4 /* mmu.cpp in Sources */, + EDBE908E25E7E7A2001EB4A4 /* Dac.cpp in Sources */, + EDBE90D925E7E7A2001EB4A4 /* SidInfo.cpp in Sources */, + EDBE907925E7E7A2001EB4A4 /* extfilt.cc in Sources */, + EDBE901E25E7E7A2001EB4A4 /* mos6510debug.cpp in Sources */, + EDBE908325E7E7A2001EB4A4 /* OpAmp.cpp in Sources */, + EDBE90C725E7E7A2001EB4A4 /* stil.cpp in Sources */, + EDBE902025E7E7A2001EB4A4 /* c64.cpp in Sources */, + EDBE90A425E7E7A2001EB4A4 /* WaveformCalculator.cpp in Sources */, + EDBE902925E7E7A2001EB4A4 /* interrupt.cpp in Sources */, + EDBE90DF25E7E7A2001EB4A4 /* SidTune.cpp in Sources */, + EDBE909025E7E7A2001EB4A4 /* WaveformGenerator.cpp in Sources */, + EDBE90D025E7E7A2001EB4A4 /* mixer.cpp in Sources */, + EDBE908D25E7E7A2001EB4A4 /* EnvelopeGenerator.cpp in Sources */, + EDBE90E525E7E7A2001EB4A4 /* PSID.cpp in Sources */, + EDBE907D25E7E7A2001EB4A4 /* resid-builder.cpp in Sources */, + EDBE908625E7E7A2001EB4A4 /* test.cpp in Sources */, + EDBE907F25E7E7A2001EB4A4 /* resid-emu.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -245,14 +1374,28 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = libsidplayfp/Info.plist; + GCC_PREPROCESSOR_DEFINITIONS = ( + "VERSION=\\\"2.1.0\\\"", + "HAVE_CONFIG_H=1", + "DEBUG=1", + ); + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/generated/src", + "$(SRCROOT)/generated/src/sidtune", + "$(SRCROOT)/generated/src/builders/resid-builder", + "$(SRCROOT)/generated/src/builders/resid-builder/resid", + "$(SRCROOT)/generated/src/builders/residfp-builder", + "$(SRCROOT)/generated/src/builders/residfp-builder/residfp", + "$(SRCROOT)/sidplayfp/src", + ); + INFOPLIST_FILE = "$(SRCROOT)/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/../Frameworks", "@loader_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = org.cogx.libsidplayfp; + PRODUCT_BUNDLE_IDENTIFIER = org.cogx.sidplayfp; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; }; @@ -267,14 +1410,24 @@ DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = libsidplayfp/Info.plist; + GCC_PREPROCESSOR_DEFINITIONS = "HAVE_CONFIG_H=1"; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/generated/src", + "$(SRCROOT)/generated/src/sidtune", + "$(SRCROOT)/generated/src/builders/resid-builder", + "$(SRCROOT)/generated/src/builders/resid-builder/resid", + "$(SRCROOT)/generated/src/builders/residfp-builder", + "$(SRCROOT)/generated/src/builders/residfp-builder/residfp", + "$(SRCROOT)/sidplayfp/src", + ); + INFOPLIST_FILE = "$(SRCROOT)/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/../Frameworks", "@loader_path/Frameworks", ); - PRODUCT_BUNDLE_IDENTIFIER = org.cogx.libsidplayfp; + PRODUCT_BUNDLE_IDENTIFIER = org.cogx.sidplayfp; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; }; diff --git a/Plugins/sidplay/sidplay.xcodeproj/project.pbxproj b/Plugins/sidplay/sidplay.xcodeproj/project.pbxproj index 45b147005..cca262d57 100644 --- a/Plugins/sidplay/sidplay.xcodeproj/project.pbxproj +++ b/Plugins/sidplay/sidplay.xcodeproj/project.pbxproj @@ -11,6 +11,8 @@ 8314D80A1A35654900EEE8E6 /* SidMetadataReader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8314D8061A35654900EEE8E6 /* SidMetadataReader.mm */; }; 8314D80B1A35654900EEE8E6 /* SidContainer.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8314D8081A35654900EEE8E6 /* SidContainer.mm */; }; 836F5BEC1A357915002730CC /* roms.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 836F5BEA1A357915002730CC /* roms.cpp */; }; + EDBE911825E7EA01001EB4A4 /* sidplayfp.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EDBE8F0F25E7E74D001EB4A4 /* sidplayfp.framework */; }; + EDBE911925E7EA01001EB4A4 /* sidplayfp.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = EDBE8F0F25E7E74D001EB4A4 /* sidplayfp.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -30,6 +32,7 @@ dstPath = ""; dstSubfolderSpec = 10; files = ( + EDBE911925E7EA01001EB4A4 /* sidplayfp.framework in CopyFiles */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -57,6 +60,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + EDBE911825E7EA01001EB4A4 /* sidplayfp.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; From f6a0cdf3c254e19ad8c0750dc8f7f77bd8ac42ad Mon Sep 17 00:00:00 2001 From: Dzmitry Neviadomski Date: Thu, 25 Feb 2021 17:34:50 +0300 Subject: [PATCH 4/5] Fix warnings in sidplayfp Xcode subprojects. --- .../libsidplayfp/sidplayfp.xcodeproj/project.pbxproj | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj b/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj index c4f6aec80..6863573ba 100644 --- a/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj +++ b/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj @@ -84,7 +84,6 @@ EDBE908325E7E7A2001EB4A4 /* OpAmp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F9825E7E7A0001EB4A4 /* OpAmp.cpp */; }; EDBE908425E7E7A2001EB4A4 /* TwoPassSincResampler.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F9A25E7E7A0001EB4A4 /* TwoPassSincResampler.h */; }; EDBE908525E7E7A2001EB4A4 /* SincResampler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F9B25E7E7A0001EB4A4 /* SincResampler.cpp */; }; - EDBE908625E7E7A2001EB4A4 /* test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBE8F9C25E7E7A0001EB4A4 /* test.cpp */; }; EDBE908725E7E7A2001EB4A4 /* ZeroOrderResampler.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F9D25E7E7A0001EB4A4 /* ZeroOrderResampler.h */; }; EDBE908825E7E7A2001EB4A4 /* SincResampler.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F9E25E7E7A0001EB4A4 /* SincResampler.h */; }; EDBE908925E7E7A2001EB4A4 /* Resampler.h in Headers */ = {isa = PBXBuildFile; fileRef = EDBE8F9F25E7E7A0001EB4A4 /* Resampler.h */; }; @@ -1240,7 +1239,6 @@ EDBE908D25E7E7A2001EB4A4 /* EnvelopeGenerator.cpp in Sources */, EDBE90E525E7E7A2001EB4A4 /* PSID.cpp in Sources */, EDBE907D25E7E7A2001EB4A4 /* resid-builder.cpp in Sources */, - EDBE908625E7E7A2001EB4A4 /* test.cpp in Sources */, EDBE907F25E7E7A2001EB4A4 /* resid-emu.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; @@ -1368,6 +1366,7 @@ EDBE8F0225E7E641001EB4A4 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + CLANG_WARN_DOCUMENTATION_COMMENTS = NO; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; DEFINES_MODULE = YES; @@ -1379,6 +1378,8 @@ "HAVE_CONFIG_H=1", "DEBUG=1", ); + GCC_WARN_64_TO_32_BIT_CONVERSION = NO; + GCC_WARN_UNUSED_VARIABLE = NO; HEADER_SEARCH_PATHS = ( "$(SRCROOT)/generated/src", "$(SRCROOT)/generated/src/sidtune", @@ -1404,6 +1405,7 @@ EDBE8F0325E7E641001EB4A4 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + CLANG_WARN_DOCUMENTATION_COMMENTS = NO; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; DEFINES_MODULE = YES; @@ -1411,6 +1413,8 @@ DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; GCC_PREPROCESSOR_DEFINITIONS = "HAVE_CONFIG_H=1"; + GCC_WARN_64_TO_32_BIT_CONVERSION = NO; + GCC_WARN_UNUSED_VARIABLE = NO; HEADER_SEARCH_PATHS = ( "$(SRCROOT)/generated/src", "$(SRCROOT)/generated/src/sidtune", From b685f5d5c41c61a91909207f5d67227eb61504e0 Mon Sep 17 00:00:00 2001 From: Dzmitry Neviadomski Date: Thu, 25 Feb 2021 18:27:17 +0300 Subject: [PATCH 5/5] Preprocess Info.plist for sidplayfp Xcode subproject. --- Frameworks/libsidplayfp/Info.plist | 4 ++-- .../libsidplayfp/sidplayfp.xcodeproj/project.pbxproj | 8 ++++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Frameworks/libsidplayfp/Info.plist b/Frameworks/libsidplayfp/Info.plist index 9bcb24442..a18c75a7a 100644 --- a/Frameworks/libsidplayfp/Info.plist +++ b/Frameworks/libsidplayfp/Info.plist @@ -15,8 +15,8 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 1.0 + $(PACKAGE_VERSION) CFBundleVersion - $(CURRENT_PROJECT_VERSION) + $(PACKAGE_VERSION) diff --git a/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj b/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj index 6863573ba..82bb09aa7 100644 --- a/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj +++ b/Frameworks/libsidplayfp/sidplayfp.xcodeproj/project.pbxproj @@ -1369,7 +1369,7 @@ CLANG_WARN_DOCUMENTATION_COMMENTS = NO; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; - DEFINES_MODULE = YES; + DEFINES_MODULE = NO; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; @@ -1390,6 +1390,8 @@ "$(SRCROOT)/sidplayfp/src", ); INFOPLIST_FILE = "$(SRCROOT)/Info.plist"; + INFOPLIST_PREFIX_HEADER = "$(SRCROOT)/generated/src/config.h"; + INFOPLIST_PREPROCESS = YES; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", @@ -1408,7 +1410,7 @@ CLANG_WARN_DOCUMENTATION_COMMENTS = NO; CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; - DEFINES_MODULE = YES; + DEFINES_MODULE = NO; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; @@ -1425,6 +1427,8 @@ "$(SRCROOT)/sidplayfp/src", ); INFOPLIST_FILE = "$(SRCROOT)/Info.plist"; + INFOPLIST_PREFIX_HEADER = "$(SRCROOT)/generated/src/config.h"; + INFOPLIST_PREPROCESS = YES; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)",