From 7de4e76c85a0c82a83ab1192bb7f45523b1159ab Mon Sep 17 00:00:00 2001 From: H-A-M-G-E-R <98665992+H-A-M-G-E-R@users.noreply.github.com> Date: Fri, 24 May 2024 16:40:19 -0500 Subject: [PATCH] instruments and samples 16h and 17h are actually unused (i use them in my port of star fox titania) --- tools/check_nspc.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/check_nspc.py b/tools/check_nspc.py index 5a98851b8..eb0e4675f 100755 --- a/tools/check_nspc.py +++ b/tools/check_nspc.py @@ -80,12 +80,12 @@ def getNextBlockAddr(self): Range(0x5828, 0x6818, " Song-specific tracker data", True), Range(0x6819, 0x6BFF, "Unused", allowUnused), Range(0x6C00, 0x6CE9, "Instrument table", True), - Range(0x6C00, 0x6C8F, " Shared instruments (0..17h)", False), - Range(0x6C90, 0x6CE9, " Song-specific instruments (18h..26h)", True), + Range(0x6C00, 0x6C83, " Shared instruments (0..15h)", False), + Range(0x6C84, 0x6CE9, " Song-specific instruments (16h..26h)", True), Range(0x6CEA, 0x6CFF, "Unused", allowUnused), Range(0x6D00, 0x6D9F, "Sample table", True), - Range(0x6D00, 0x6D5F, " Shared sample table", False), - Range(0x6D60, 0x6D9F, " Song-specific sample table", True), + Range(0x6D00, 0x6D57, " Shared sample table", False), + Range(0x6D58, 0x6D9F, " Song-specific sample table", True), Range(0x6DA0, 0x6DFF, "Unused", allowUnused), Range(0x6E00, 0xFFFF, "Sample data", True), Range(0x6E00, 0xB20F, " Shared sample data", False),