Synthpopalooza Posted March 1, 2022 Share Posted March 1, 2022 (edited) Quote Even better, the 1.79mhz mode, and 16-bit mode, use the exact same pattern, only shifted at a different AUDF value. The exception is 15khz mode, which seems to only output buzzy tones, so I did not bother finding a pattern for it yet. In 15khz C, the tones are stable, and run the pattern of 0 - 1 - 1 - 0 - silence. Which tone gets played depends on which channel you play it in. It's the mod 5 ones which will either output a 33.3% duty cycle, or silence. Distortion 4 kind of works like C, in that mod 3's have a slightly less harsh sound than the rest, and that mod 15's produce silence. There is also a mod 31 artifact introduced thanks to the 5-bit poly sampling as well. In addition, Distortion 4 is only useful in music when using 1.79 mode. Adding 16-bit to the mix improves the lower end by about 6 notes or so, but that's it. I've not tried hi-pass on it yet, but the most useful settings for 4 distortion so far are the SKCTL two-tone ones that I am STILL trying to crack, and the 1.79 Reverse 16-bit swirly guitar setting. Edited March 1, 2022 by Synthpopalooza 1 Quote Link to comment Share on other sites More sharing options...
VinsCool Posted March 1, 2022 Share Posted March 1, 2022 This is very rudimentary but that is going somewhere... I'm using the same code I created for RMT's Registers View, but I have to adapt a little bit. Right now this appears to work as expected... Here, I used the PAL Master Clock for the calculations. I'll work some more on this tomorrow before I post some sources and binaries. Quote Link to comment Share on other sites More sharing options...
VinsCool Posted March 1, 2022 Share Posted March 1, 2022 Okay here's an absolutely terrible attempt: - Hardcoded to 440Hz - Print all 256 AUDF values for both NTSC and PAL Distortion A, 64kHz - Yes, there's a bloatload of .dll files included, blame Microsoft about that POKEY Calculator v01.zip 1 Quote Link to comment Share on other sites More sharing options...
VinsCool Posted March 1, 2022 Share Posted March 1, 2022 Okay, I'm back and I'm making some good progress ? Naturally, picking up the closest matches and making an array automatically will be the next step here. 1 Quote Link to comment Share on other sites More sharing options...
VinsCool Posted March 1, 2022 Share Posted March 1, 2022 (edited) A functional Distortion C formula? absolutely! Spoiler ---------------------------------------------------- Distortion C, 64kHz (NTSC) Reference tuning: 444.895779 ---------------------------------------------------- AUDF = ff (Gritty) C-0 (+11.7313 cents off), 16.646Hz Real value for reference: 16.5335 AUDF = fe (Gritty) C-0 (+18.5072 cents off), 16.7112Hz Real value for reference: 16.5335 AUDF = fd (Gritty) C-0 (+25.3097 cents off), 16.777Hz Real value for reference: 16.5335 AUDF = fc (Gritty) C-0 (+32.139 cents off), 16.8433Hz Real value for reference: 16.5335 AUDF = fb (Gritty) C-0 (+38.9954 cents off), 16.9102Hz Real value for reference: 16.5335 AUDF = fa (Gritty) C-0 (+45.879 cents off), 16.9775Hz Real value for reference: 16.5335 AUDF = f9 (Gritty) C#0 (-47.2099 cents off), 17.0455Hz Real value for reference: 17.5167 AUDF = f8 (Buzzy) G#1 (-38.316 cents off), 51.3417Hz Real value for reference: 52.4907 AUDF = f7 (Gritty) C#0 (-33.3043 cents off), 17.1829Hz Real value for reference: 17.5167 AUDF = f6 (Gritty) C#0 (-26.3094 cents off), 17.2525Hz Real value for reference: 17.5167 AUDF = f5 (Buzzy) G#1 (-17.3311 cents off), 51.9679Hz Real value for reference: 52.4907 AUDF = f4 (Gritty) C#0 (-12.2342 cents off), 17.3933Hz Real value for reference: 17.5167 AUDF = f3 (Gritty) C#0 (-5.15352 cents off), 17.4646Hz Real value for reference: 17.5167 AUDF = f2 (Buzzy) G#1 (+3.91128 cents off), 52.6094Hz Real value for reference: 52.4907 AUDF = f1 (Gritty) C#0 (+9.0954 cents off), 17.6089Hz Real value for reference: 17.5167 AUDF = f0 (Gritty) C#0 (+16.2641 cents off), 17.682Hz Real value for reference: 17.5167 AUDF = ef (Gritty) C#0 (+23.4626 cents off), 17.7557Hz Real value for reference: 17.5167 AUDF = ee (Gritty) C#0 (+30.6911 cents off), 17.83Hz Real value for reference: 17.5167 AUDF = ed (Gritty) C#0 (+37.95 cents off), 17.9049Hz Real value for reference: 17.5167 AUDF = ec (Buzzy) G#1 (+47.1944 cents off), 53.9413Hz Real value for reference: 52.4907 AUDF = eb (Gritty) D-0 (-47.4404 cents off), 18.0566Hz Real value for reference: 18.5583 AUDF = ea (Gritty) D-0 (-40.0891 cents off), 18.1335Hz Real value for reference: 18.5583 AUDF = e9 (Buzzy) A-1 (-30.7514 cents off), 54.6329Hz Real value for reference: 55.612 AUDF = e8 (Gritty) D-0 (-25.2921 cents off), 18.2891Hz Real value for reference: 18.5583 AUDF = e7 (Gritty) D-0 (-17.8459 cents off), 18.3679Hz Real value for reference: 18.5583 AUDF = e6 (Buzzy) A-1 (-8.41256 cents off), 55.3424Hz Real value for reference: 55.612 AUDF = e5 (Gritty) D-0 (-2.85678 cents off), 18.5277Hz Real value for reference: 18.5583 AUDF = e4 (Gritty) D-0 (+4.68674 cents off), 18.6086Hz Real value for reference: 18.5583 AUDF = e3 (Buzzy) A-1 (+14.2183 cents off), 56.0706Hz Real value for reference: 55.612 AUDF = e2 (Gritty) D-0 (+19.8731 cents off), 18.7725Hz Real value for reference: 18.5583 AUDF = e1 (Gritty) D-0 (+27.5165 cents off), 18.8556Hz Real value for reference: 18.5583 AUDF = e0 (Gritty) D-0 (+35.1939 cents off), 18.9394Hz Real value for reference: 18.5583 AUDF = df (Gritty) D-0 (+42.9054 cents off), 19.0239Hz Real value for reference: 18.5583 AUDF = de (Gritty) D#0 (-49.3486 cents off), 19.1093Hz Real value for reference: 19.6618 AUDF = dd (Buzzy) A#1 (-39.6128 cents off), 57.586Hz Real value for reference: 58.9188 AUDF = dc (Gritty) D#0 (-33.7518 cents off), 19.2822Hz Real value for reference: 19.6618 AUDF = db (Gritty) D#0 (-25.9004 cents off), 19.3698Hz Real value for reference: 19.6618 AUDF = da (Buzzy) A#1 (-16.0582 cents off), 58.3749Hz Real value for reference: 58.9188 AUDF = d9 (Gritty) D#0 (-10.0899 cents off), 19.5475Hz Real value for reference: 19.6618 AUDF = d8 (Gritty) D#0 (-2.13019 cents off), 19.6376Hz Real value for reference: 19.6618 AUDF = d7 (Buzzy) A#1 (+7.82128 cents off), 59.1856Hz Real value for reference: 58.9188 AUDF = d6 (Gritty) D#0 (+13.8999 cents off), 19.8203Hz Real value for reference: 19.6618 AUDF = d5 (Gritty) D#0 (+21.9709 cents off), 19.9129Hz Real value for reference: 19.6618 AUDF = d4 (Buzzy) A#1 (+32.0347 cents off), 60.0192Hz Real value for reference: 58.9188 AUDF = d3 (Gritty) D#0 (+38.2267 cents off), 20.1008Hz Real value for reference: 19.6618 AUDF = d2 (Gritty) D#0 (+46.4123 cents off), 20.196Hz Real value for reference: 19.6618 AUDF = d1 (Gritty) E-0 (-45.3633 cents off), 20.2922Hz Real value for reference: 20.831 AUDF = d0 (Gritty) E-0 (-37.0997 cents off), 20.3893Hz Real value for reference: 20.831 AUDF = cf (Gritty) E-0 (-28.7964 cents off), 20.4873Hz Real value for reference: 20.831 AUDF = ce (Buzzy) B-1 (-18.4981 cents off), 61.7589Hz Real value for reference: 62.4223 AUDF = cd (Gritty) E-0 (-12.0693 cents off), 20.6862Hz Real value for reference: 20.831 AUDF = cc (Gritty) E-0 (-3.64483 cents off), 20.7871Hz Real value for reference: 20.831 AUDF = cb (Buzzy) B-1 (+6.77588 cents off), 62.6671Hz Real value for reference: 62.4223 AUDF = ca (Gritty) E-0 (+13.3282 cents off), 20.9919Hz Real value for reference: 20.831 AUDF = c9 (Gritty) E-0 (+21.8775 cents off), 21.0959Hz Real value for reference: 20.831 AUDF = c8 (Buzzy) B-1 (+32.4243 cents off), 63.6025Hz Real value for reference: 62.4223 AUDF = c7 (Gritty) E-0 (+39.1039 cents off), 21.3068Hz Real value for reference: 20.831 AUDF = c6 (Gritty) E-0 (+47.7817 cents off), 21.4139Hz Real value for reference: 20.831 AUDF = c5 (Buzzy) C-2 (-41.5417 cents off), 64.5661Hz Real value for reference: 66.1342 AUDF = c4 (Gritty) F-0 (-34.7309 cents off), 21.6313Hz Real value for reference: 22.0696 AUDF = c3 (Gritty) F-0 (-25.9205 cents off), 21.7417Hz Real value for reference: 22.0696 AUDF = c2 (Gritty) F-0 (-17.0651 cents off), 21.8532Hz Real value for reference: 22.0696 AUDF = c1 (Gritty) F-0 (-8.16413 cents off), 21.9658Hz Real value for reference: 22.0696 AUDF = c0 (Gritty) F-0 (+0.78284 cents off), 22.0796Hz Real value for reference: 22.0696 AUDF = bf (Buzzy) C-2 (+11.7313 cents off), 66.5838Hz Real value for reference: 66.1342 AUDF = be (Gritty) F-0 (+18.8167 cents off), 22.3108Hz Real value for reference: 22.0696 AUDF = bd (Gritty) F-0 (+27.9046 cents off), 22.4282Hz Real value for reference: 22.0696 AUDF = bc (Buzzy) C-2 (+38.9954 cents off), 67.6407Hz Real value for reference: 66.1342 AUDF = bb (Gritty) F-0 (+46.2247 cents off), 22.6668Hz Real value for reference: 22.0696 AUDF = ba (Gritty) F#0 (-44.5421 cents off), 22.788Hz Real value for reference: 23.382 AUDF = b9 (Buzzy) C#2 (-33.3043 cents off), 68.7317Hz Real value for reference: 70.0667 AUDF = b8 (Gritty) F#0 (-25.9265 cents off), 23.0344Hz Real value for reference: 23.382 AUDF = b7 (Gritty) F#0 (-16.5431 cents off), 23.1596Hz Real value for reference: 23.382 AUDF = b6 (Buzzy) C#2 (-5.15352 cents off), 69.8584Hz Real value for reference: 70.0667 AUDF = b5 (Gritty) F#0 (+2.37772 cents off), 23.4141Hz Real value for reference: 23.382 AUDF = b4 (Gritty) F#0 (+11.9162 cents off), 23.5434Hz Real value for reference: 23.382 AUDF = b3 (Gritty) F#0 (+21.5076 cents off), 23.6742Hz Real value for reference: 23.382 AUDF = b2 (Gritty) F#0 (+31.1524 cents off), 23.8065Hz Real value for reference: 23.382 AUDF = b1 (Gritty) F#0 (+40.8512 cents off), 23.9402Hz Real value for reference: 23.382 AUDF = b0 (Buzzy) D-2 (-47.4404 cents off), 72.2265Hz Real value for reference: 74.2331 AUDF = af (Gritty) G-0 (-39.5867 cents off), 24.2123Hz Real value for reference: 24.7723 AUDF = ae (Gritty) G-0 (-29.722 cents off), 24.3507Hz Real value for reference: 24.7723 AUDF = ad (Buzzy) D-2 (-17.8459 cents off), 73.4718Hz Real value for reference: 74.2331 AUDF = ac (Gritty) G-0 (-9.82259 cents off), 24.6322Hz Real value for reference: 24.7723 AUDF = ab (Gritty) G-0 (+0.213579 cents off), 24.7754Hz Real value for reference: 24.7723 AUDF = aa (Buzzy) D-2 (+12.2633 cents off), 74.7608Hz Real value for reference: 74.2331 AUDF = a9 (Gritty) G-0 (+20.4622 cents off), 25.0668Hz Real value for reference: 24.7723 AUDF = a8 (Gritty) G-0 (+30.676 cents off), 25.2152Hz Real value for reference: 24.7723 AUDF = a7 (Buzzy) D-2 (+42.9054 cents off), 76.0958Hz Real value for reference: 74.2331 AUDF = a6 (Gritty) G#0 (-48.7139 cents off), 25.5172Hz Real value for reference: 26.2454 AUDF = a5 (Gritty) G#0 (-38.316 cents off), 25.6709Hz Real value for reference: 26.2454 AUDF = a4 (Gritty) G#0 (-27.8554 cents off), 25.8265Hz Real value for reference: 26.2454 AUDF = a3 (Gritty) G#0 (-17.3311 cents off), 25.9839Hz Real value for reference: 26.2454 AUDF = a2 (Gritty) G#0 (-6.7425 cents off), 26.1433Hz Real value for reference: 26.2454 AUDF = a1 (Buzzy) D#2 (+5.86628 cents off), 78.9142Hz Real value for reference: 78.6472 AUDF = a0 (Gritty) G#0 (+14.631 cents off), 26.4681Hz Real value for reference: 26.2454 AUDF = 9f (Gritty) G#0 (+25.4176 cents off), 26.6335Hz Real value for reference: 26.2454 AUDF = 9e (Buzzy) D#2 (+38.2267 cents off), 80.4031Hz Real value for reference: 78.6472 AUDF = 9d (Gritty) G#0 (+47.1944 cents off), 26.9707Hz Real value for reference: 26.2454 AUDF = 9c (Gritty) A-0 (-41.8136 cents off), 27.1424Hz Real value for reference: 27.806 AUDF = 9b (Buzzy) E-2 (-28.7964 cents off), 81.9493Hz Real value for reference: 83.3238 AUDF = 9a (Gritty) A-0 (-19.618 cents off), 27.4927Hz Real value for reference: 27.806 AUDF = 99 (Gritty) A-0 (-8.41256 cents off), 27.6712Hz Real value for reference: 27.806 AUDF = 98 (Buzzy) E-2 (+4.82087 cents off), 83.5562Hz Real value for reference: 83.3238 AUDF = 97 (Gritty) A-0 (+14.2183 cents off), 28.0353Hz Real value for reference: 27.806 AUDF = 96 (Gritty) A-0 (+25.6456 cents off), 28.221Hz Real value for reference: 27.806 AUDF = 95 (Gritty) A-0 (+37.1489 cents off), 28.4091Hz Real value for reference: 27.806 AUDF = 94 (Gritty) A-0 (+48.7291 cents off), 28.5998Hz Real value for reference: 27.806 AUDF = 93 (Gritty) A#0 (-39.6128 cents off), 28.793Hz Real value for reference: 29.4594 AUDF = 92 (Buzzy) F-2 (-25.9205 cents off), 86.9666Hz Real value for reference: 88.2785 AUDF = 91 (Gritty) A#0 (-16.0582 cents off), 29.1874Hz Real value for reference: 29.4594 AUDF = 90 (Gritty) A#0 (-4.15962 cents off), 29.3887Hz Real value for reference: 29.4594 AUDF = 8f (Buzzy) F-2 (+9.77628 cents off), 88.7784Hz Real value for reference: 88.2785 AUDF = 8e (Gritty) A#0 (+19.8857 cents off), 29.7998Hz Real value for reference: 29.4594 AUDF = 8d (Gritty) A#0 (+32.0347 cents off), 30.0096Hz Real value for reference: 29.4594 AUDF = 8c (Buzzy) F-2 (+46.2247 cents off), 90.6673Hz Real value for reference: 88.2785 AUDF = 8b (Gritty) B-0 (-43.4083 cents off), 30.4383Hz Real value for reference: 31.2112 AUDF = 8a (Gritty) B-0 (-30.998 cents off), 30.6573Hz Real value for reference: 31.2112 AUDF = 89 (Buzzy) F#2 (-16.5431 cents off), 92.6384Hz Real value for reference: 93.5278 AUDF = 88 (Gritty) B-0 (-5.90721 cents off), 31.1048Hz Real value for reference: 31.2112 AUDF = 87 (Gritty) B-0 (+6.77588 cents off), 31.3336Hz Real value for reference: 31.2112 AUDF = 86 (Gritty) B-0 (+19.5526 cents off), 31.5657Hz Real value for reference: 31.2112 AUDF = 85 (Gritty) B-0 (+32.4243 cents off), 31.8012Hz Real value for reference: 31.2112 AUDF = 84 (Gritty) B-0 (+45.3924 cents off), 32.0403Hz Real value for reference: 31.2112 AUDF = 83 (Buzzy) G-2 (-39.5867 cents off), 96.8492Hz Real value for reference: 99.0893 AUDF = 82 (Gritty) C-1 (-28.3763 cents off), 32.5295Hz Real value for reference: 33.0671 AUDF = 81 (Gritty) C-1 (-15.1101 cents off), 32.7797Hz Real value for reference: 33.0671 AUDF = 80 (Buzzy) G-2 (+0.213579 cents off), 99.1015Hz Real value for reference: 99.0893 AUDF = 7f (Gritty) C-1 (+11.7313 cents off), 33.2919Hz Real value for reference: 33.0671 AUDF = 7e (Gritty) C-1 (+25.3097 cents off), 33.554Hz Real value for reference: 33.0671 AUDF = 7d (Buzzy) G-2 (+40.9504 cents off), 101.461Hz Real value for reference: 99.0893 AUDF = 7c (Gritty) C#1 (-47.2099 cents off), 34.0909Hz Real value for reference: 35.0333 AUDF = 7b (Gritty) C#1 (-33.3043 cents off), 34.3658Hz Real value for reference: 35.0333 AUDF = 7a (Buzzy) G#2 (-17.3311 cents off), 103.936Hz Real value for reference: 104.981 AUDF = 79 (Gritty) C#1 (-5.15352 cents off), 34.9292Hz Real value for reference: 35.0333 AUDF = 78 (Gritty) C#1 (+9.0954 cents off), 35.2179Hz Real value for reference: 35.0333 AUDF = 77 (Gritty) C#1 (+23.4626 cents off), 35.5114Hz Real value for reference: 35.0333 AUDF = 76 (Gritty) C#1 (+37.95 cents off), 35.8098Hz Real value for reference: 35.0333 AUDF = 75 (Gritty) D-1 (-47.4404 cents off), 36.1133Hz Real value for reference: 37.1165 AUDF = 74 (Buzzy) A-2 (-30.7514 cents off), 109.266Hz Real value for reference: 111.224 AUDF = 73 (Gritty) D-1 (-17.8459 cents off), 36.7359Hz Real value for reference: 37.1165 AUDF = 72 (Gritty) D-1 (-2.85678 cents off), 37.0553Hz Real value for reference: 37.1165 AUDF = 71 (Buzzy) A-2 (+14.2183 cents off), 112.141Hz Real value for reference: 111.224 AUDF = 70 (Gritty) D-1 (+27.5165 cents off), 37.7112Hz Real value for reference: 37.1165 AUDF = 6f (Gritty) D-1 (+42.9054 cents off), 38.0479Hz Real value for reference: 37.1165 AUDF = 6e (Buzzy) A#2 (-39.6128 cents off), 115.172Hz Real value for reference: 117.838 AUDF = 6d (Gritty) D#1 (-25.9004 cents off), 38.7397Hz Real value for reference: 39.3236 AUDF = 6c (Gritty) D#1 (-10.0899 cents off), 39.0951Hz Real value for reference: 39.3236 AUDF = 6b (Buzzy) A#2 (+7.82128 cents off), 118.371Hz Real value for reference: 117.838 AUDF = 6a (Gritty) D#1 (+21.9709 cents off), 39.8258Hz Real value for reference: 39.3236 AUDF = 69 (Gritty) D#1 (+38.2267 cents off), 40.2015Hz Real value for reference: 39.3236 AUDF = 68 (Gritty) E-1 (-45.3633 cents off), 40.5844Hz Real value for reference: 41.6619 AUDF = 67 (Gritty) E-1 (-28.7964 cents off), 40.9747Hz Real value for reference: 41.6619 AUDF = 66 (Gritty) E-1 (-12.0693 cents off), 41.3725Hz Real value for reference: 41.6619 AUDF = 65 (Buzzy) B-2 (+6.77588 cents off), 125.334Hz Real value for reference: 124.845 AUDF = 64 (Gritty) E-1 (+21.8775 cents off), 42.1917Hz Real value for reference: 41.6619 AUDF = 63 (Gritty) E-1 (+39.1039 cents off), 42.6136Hz Real value for reference: 41.6619 AUDF = 62 (Buzzy) C-3 (-41.5417 cents off), 129.132Hz Real value for reference: 132.268 AUDF = 61 (Gritty) F-1 (-25.9205 cents off), 43.4833Hz Real value for reference: 44.1393 AUDF = 60 (Gritty) F-1 (-8.16413 cents off), 43.9316Hz Real value for reference: 44.1393 AUDF = 5f (Buzzy) C-3 (+11.7313 cents off), 133.168Hz Real value for reference: 132.268 AUDF = 5e (Gritty) F-1 (+27.9046 cents off), 44.8565Hz Real value for reference: 44.1393 AUDF = 5d (Gritty) F-1 (+46.2247 cents off), 45.3337Hz Real value for reference: 44.1393 AUDF = 5c (Buzzy) C#3 (-33.3043 cents off), 137.463Hz Real value for reference: 140.133 AUDF = 5b (Gritty) F#1 (-16.5431 cents off), 46.3192Hz Real value for reference: 46.7639 AUDF = 5a (Gritty) F#1 (+2.37772 cents off), 46.8282Hz Real value for reference: 46.7639 AUDF = 59 (Gritty) F#1 (+21.5076 cents off), 47.3485Hz Real value for reference: 46.7639 AUDF = 58 (Gritty) F#1 (+40.8512 cents off), 47.8805Hz Real value for reference: 46.7639 AUDF = 57 (Gritty) G-1 (-39.5867 cents off), 48.4246Hz Real value for reference: 49.5446 AUDF = 56 (Buzzy) D-3 (-17.8459 cents off), 146.944Hz Real value for reference: 148.466 AUDF = 55 (Gritty) G-1 (+0.213579 cents off), 49.5507Hz Real value for reference: 49.5446 AUDF = 54 (Gritty) G-1 (+20.4622 cents off), 50.1337Hz Real value for reference: 49.5446 AUDF = 53 (Buzzy) D-3 (+42.9054 cents off), 152.192Hz Real value for reference: 148.466 AUDF = 52 (Gritty) G#1 (-38.316 cents off), 51.3417Hz Real value for reference: 52.4907 AUDF = 51 (Gritty) G#1 (-17.3311 cents off), 51.9679Hz Real value for reference: 52.4907 AUDF = 50 (Buzzy) D#3 (+5.86628 cents off), 157.828Hz Real value for reference: 157.294 AUDF = 4f (Gritty) G#1 (+25.4176 cents off), 53.2671Hz Real value for reference: 52.4907 AUDF = 4e (Gritty) G#1 (+47.1944 cents off), 53.9413Hz Real value for reference: 52.4907 AUDF = 4d (Buzzy) E-3 (-28.7964 cents off), 163.899Hz Real value for reference: 166.648 AUDF = 4c (Gritty) A-1 (-8.41256 cents off), 55.3424Hz Real value for reference: 55.612 AUDF = 4b (Gritty) A-1 (+14.2183 cents off), 56.0706Hz Real value for reference: 55.612 AUDF = 4a (Gritty) A-1 (+37.1489 cents off), 56.8182Hz Real value for reference: 55.612 AUDF = 49 (Gritty) A#1 (-39.6128 cents off), 57.586Hz Real value for reference: 58.9188 AUDF = 48 (Gritty) A#1 (-16.0582 cents off), 58.3749Hz Real value for reference: 58.9188 AUDF = 47 (Buzzy) F-3 (+9.77628 cents off), 177.557Hz Real value for reference: 176.557 AUDF = 46 (Gritty) A#1 (+32.0347 cents off), 60.0192Hz Real value for reference: 58.9188 AUDF = 45 (Gritty) B-1 (-43.4083 cents off), 60.8766Hz Real value for reference: 62.4223 AUDF = 44 (Buzzy) F#3 (-16.5431 cents off), 185.277Hz Real value for reference: 187.056 AUDF = 43 (Gritty) B-1 (+6.77588 cents off), 62.6671Hz Real value for reference: 62.4223 AUDF = 42 (Gritty) B-1 (+32.4243 cents off), 63.6025Hz Real value for reference: 62.4223 AUDF = 41 (Buzzy) G-3 (-39.5867 cents off), 193.698Hz Real value for reference: 198.179 AUDF = 40 (Gritty) C-2 (-15.1101 cents off), 65.5595Hz Real value for reference: 66.1342 AUDF = 3f (Gritty) C-2 (+11.7313 cents off), 66.5838Hz Real value for reference: 66.1342 AUDF = 3e (Buzzy) G-3 (+40.9504 cents off), 202.922Hz Real value for reference: 198.179 AUDF = 3d (Gritty) C#2 (-33.3043 cents off), 68.7317Hz Real value for reference: 70.0667 AUDF = 3c (Gritty) C#2 (-5.15352 cents off), 69.8584Hz Real value for reference: 70.0667 AUDF = 3b (Gritty) C#2 (+23.4626 cents off), 71.0227Hz Real value for reference: 70.0667 AUDF = 3a (Gritty) D-2 (-47.4404 cents off), 72.2265Hz Real value for reference: 74.2331 AUDF = 39 (Gritty) D-2 (-17.8459 cents off), 73.4718Hz Real value for reference: 74.2331 AUDF = 38 (Buzzy) A-3 (+14.2183 cents off), 224.282Hz Real value for reference: 222.448 AUDF = 37 (Gritty) D-2 (+42.9054 cents off), 76.0958Hz Real value for reference: 74.2331 AUDF = 36 (Gritty) D#2 (-25.9004 cents off), 77.4794Hz Real value for reference: 78.6472 AUDF = 35 (Buzzy) A#3 (+7.82128 cents off), 236.742Hz Real value for reference: 235.675 AUDF = 34 (Gritty) D#2 (+38.2267 cents off), 80.4031Hz Real value for reference: 78.6472 AUDF = 33 (Gritty) E-2 (-28.7964 cents off), 81.9493Hz Real value for reference: 83.3238 AUDF = 32 (Buzzy) B-3 (+6.77588 cents off), 250.668Hz Real value for reference: 249.689 AUDF = 31 (Gritty) E-2 (+39.1039 cents off), 85.2273Hz Real value for reference: 83.3238 AUDF = 30 (Gritty) F-2 (-25.9205 cents off), 86.9666Hz Real value for reference: 88.2785 AUDF = 2f (Buzzy) C-4 (+11.7313 cents off), 266.335Hz Real value for reference: 264.537 AUDF = 2e (Gritty) F-2 (+46.2247 cents off), 90.6673Hz Real value for reference: 88.2785 AUDF = 2d (Gritty) F#2 (-16.5431 cents off), 92.6384Hz Real value for reference: 93.5278 AUDF = 2c (Gritty) F#2 (+21.5076 cents off), 94.697Hz Real value for reference: 93.5278 AUDF = 2b (Gritty) G-2 (-39.5867 cents off), 96.8492Hz Real value for reference: 99.0893 AUDF = 2a (Gritty) G-2 (+0.213579 cents off), 99.1015Hz Real value for reference: 99.0893 AUDF = 29 (Buzzy) D-4 (+42.9054 cents off), 304.383Hz Real value for reference: 296.932 AUDF = 28 (Gritty) G#2 (-17.3311 cents off), 103.936Hz Real value for reference: 104.981 AUDF = 27 (Gritty) G#2 (+25.4176 cents off), 106.534Hz Real value for reference: 104.981 AUDF = 26 (Buzzy) E-4 (-28.7964 cents off), 327.797Hz Real value for reference: 333.295 AUDF = 25 (Gritty) A-2 (+14.2183 cents off), 112.141Hz Real value for reference: 111.224 AUDF = 24 (Gritty) A#2 (-39.6128 cents off), 115.172Hz Real value for reference: 117.838 AUDF = 23 (Buzzy) F-4 (+9.77628 cents off), 355.114Hz Real value for reference: 353.114 AUDF = 22 (Gritty) B-2 (-43.4083 cents off), 121.753Hz Real value for reference: 124.845 AUDF = 21 (Gritty) B-2 (+6.77588 cents off), 125.334Hz Real value for reference: 124.845 AUDF = 20 (Buzzy) G-4 (-39.5867 cents off), 387.397Hz Real value for reference: 396.357 AUDF = 1f (Gritty) C-3 (+11.7313 cents off), 133.168Hz Real value for reference: 132.268 AUDF = 1e (Gritty) C#3 (-33.3043 cents off), 137.463Hz Real value for reference: 140.133 AUDF = 1d (Gritty) C#3 (+23.4626 cents off), 142.045Hz Real value for reference: 140.133 AUDF = 1c (Gritty) D-3 (-17.8459 cents off), 146.944Hz Real value for reference: 148.466 AUDF = 1b (Gritty) D-3 (+42.9054 cents off), 152.192Hz Real value for reference: 148.466 AUDF = 1a (Buzzy) A#4 (+7.82128 cents off), 473.485Hz Real value for reference: 471.351 AUDF = 19 (Gritty) E-3 (-28.7964 cents off), 163.899Hz Real value for reference: 166.648 AUDF = 18 (Gritty) E-3 (+39.1039 cents off), 170.455Hz Real value for reference: 166.648 AUDF = 17 (Buzzy) C-5 (+11.7313 cents off), 532.671Hz Real value for reference: 529.073 AUDF = 16 (Gritty) F#3 (-16.5431 cents off), 185.277Hz Real value for reference: 187.056 AUDF = 15 (Gritty) G-3 (-39.5867 cents off), 193.698Hz Real value for reference: 198.179 AUDF = 14 (Buzzy) D-5 (+42.9054 cents off), 608.766Hz Real value for reference: 593.865 AUDF = 13 (Gritty) G#3 (+25.4176 cents off), 213.068Hz Real value for reference: 209.963 AUDF = 12 (Gritty) A-3 (+14.2183 cents off), 224.282Hz Real value for reference: 222.448 AUDF = 11 (Buzzy) F-5 (+9.77628 cents off), 710.227Hz Real value for reference: 706.228 AUDF = 10 (Gritty) B-3 (+6.77588 cents off), 250.668Hz Real value for reference: 249.689 AUDF = f (Gritty) C-4 (+11.7313 cents off), 266.335Hz Real value for reference: 264.537 AUDF = e (Gritty) C#4 (+23.4626 cents off), 284.091Hz Real value for reference: 280.267 AUDF = d (Gritty) D-4 (+42.9054 cents off), 304.383Hz Real value for reference: 296.932 AUDF = c (Gritty) E-4 (-28.7964 cents off), 327.797Hz Real value for reference: 333.295 AUDF = b (Buzzy) C-6 (+11.7313 cents off), 1065.34Hz Real value for reference: 1058.15 AUDF = a (Gritty) G-4 (-39.5867 cents off), 387.397Hz Real value for reference: 396.357 AUDF = 9 (Gritty) G#4 (+25.4176 cents off), 426.136Hz Real value for reference: 419.926 AUDF = 8 (Buzzy) F-6 (+9.77628 cents off), 1420.45Hz Real value for reference: 1412.46 AUDF = 7 (Gritty) C-5 (+11.7313 cents off), 532.671Hz Real value for reference: 529.073 AUDF = 6 (Gritty) D-5 (+42.9054 cents off), 608.766Hz Real value for reference: 593.865 AUDF = 5 (Buzzy) C-7 (+11.7313 cents off), 2130.68Hz Real value for reference: 2116.29 AUDF = 4 (Gritty) G#5 (+25.4176 cents off), 852.273Hz Real value for reference: 839.851 AUDF = 3 (Gritty) C-6 (+11.7313 cents off), 1065.34Hz Real value for reference: 1058.15 AUDF = 2 (Buzzy) C-8 (+11.7313 cents off), 4261.36Hz Real value for reference: 0 AUDF = 1 (Gritty) C-7 (+11.7313 cents off), 2130.68Hz Real value for reference: 2116.29 AUDF = 0 (Gritty) C-8 (+11.7313 cents off), 4261.36Hz Real value for reference: 0 ---------------------------------------------------- Now, what I will be missing is figuring out the pattern of unstables tones in the mix, and that would essentially be the case closed for computing the Distortion C tuning in real time! I bet it's actually very easy to identify what is unstable, and what is not... I also will try this for the entire 16-bit set! lol Edited March 1, 2022 by VinsCool typo 1 Quote Link to comment Share on other sites More sharing options...
VinsCool Posted March 3, 2022 Share Posted March 3, 2022 Alright, here is a more serious attempt POKEY Frequencies Calculator v01.zip Also yes, the bloat Microsoft .dll files are included again to save some time for everyone. How to use: 1- Run .exe 2- Input A-4 tuning 3- Select machine region 4- ??? 5- Et voilà, look inside output.txt and pick all the data you need. There is a lot of parameters missing, but more common settings are generated, and are accurately calculated with the formulae I have figured out so far. Sources will be posted later, I need to clean this up and add all the missing stuff like invalid pitches, or find any bug I may have overlooked, etc. I apologise for the not so good quality, this is literally my first ever C++ program I wrote entirely from scratch. I also intend to make this cross platform, because fuck the Microsoft bloat. 2 1 Quote Link to comment Share on other sites More sharing options...
VinsCool Posted March 4, 2022 Share Posted March 4, 2022 (edited) Figured out the Distortion C unstable (aka MOD5) tones pattern. It was surprisingly simplier than I expected. Every 5 AUDF step, there is a unstable value, so I simply need to find the lowest denominator, and subtract 5 from it every step, and it's guaranteed to be a unstable tone. Also, the common dividend is 1.5, so in 64khz mode, to calculate the pitch, it's 28*1.5 = 42. Divide by 42 on MOD5 tones, and the pitch is accurately calculated, I will get the other ones done shortly. Here's the current set my program can generate for Distortion C in 64khz mode. Spoiler Distortion 12, 64kHz ---------------------------------------------------- AUDF = ff (Gritty) Note = C-0 (+11.73 cents off), 16.65Hz Theoretical = 16.53Hz AUDF = fe, Unstable! (Buzzy) Note = E-2 (+4.82 cents off), 83.56Hz Theoretical = 83.32Hz AUDF = fd (Gritty) Note = C-0 (+25.31 cents off), 16.78Hz Theoretical = 16.53Hz AUDF = fc (Gritty) Note = C-0 (+32.14 cents off), 16.84Hz Theoretical = 16.53Hz AUDF = fb (Gritty) Note = C-0 (+39.00 cents off), 16.91Hz Theoretical = 16.53Hz AUDF = fa (Gritty) Note = C-0 (+45.88 cents off), 16.98Hz Theoretical = 16.53Hz AUDF = f9, Unstable! (Buzzy) Note = E-2 (+39.10 cents off), 85.23Hz Theoretical = 83.32Hz AUDF = f8 (Buzzy) Note = G#1 (-38.32 cents off), 51.34Hz Theoretical = 52.49Hz AUDF = f7 (Gritty) Note = C#0 (-33.30 cents off), 17.18Hz Theoretical = 17.52Hz AUDF = f6 (Gritty) Note = C#0 (-26.31 cents off), 17.25Hz Theoretical = 17.52Hz AUDF = f5 (Buzzy) Note = G#1 (-17.33 cents off), 51.97Hz Theoretical = 52.49Hz AUDF = f4, Unstable! (Buzzy) Note = F-2 (-25.92 cents off), 86.97Hz Theoretical = 88.28Hz AUDF = f3 (Gritty) Note = C#0 (-5.15 cents off), 17.46Hz Theoretical = 17.52Hz AUDF = f2 (Buzzy) Note = G#1 (+3.91 cents off), 52.61Hz Theoretical = 52.49Hz AUDF = f1 (Gritty) Note = C#0 (+9.10 cents off), 17.61Hz Theoretical = 17.52Hz AUDF = f0 (Gritty) Note = C#0 (+16.26 cents off), 17.68Hz Theoretical = 17.52Hz AUDF = ef, Unstable! (Buzzy) Note = F-2 (+9.78 cents off), 88.78Hz Theoretical = 88.28Hz AUDF = ee (Gritty) Note = C#0 (+30.69 cents off), 17.83Hz Theoretical = 17.52Hz AUDF = ed (Gritty) Note = C#0 (+37.95 cents off), 17.90Hz Theoretical = 17.52Hz AUDF = ec (Buzzy) Note = G#1 (+47.19 cents off), 53.94Hz Theoretical = 52.49Hz AUDF = eb (Gritty) Note = D-0 (-47.44 cents off), 18.06Hz Theoretical = 18.56Hz AUDF = ea, Unstable! (Buzzy) Note = F-2 (+46.22 cents off), 90.67Hz Theoretical = 88.28Hz AUDF = e9 (Buzzy) Note = A-1 (-30.75 cents off), 54.63Hz Theoretical = 55.61Hz AUDF = e8 (Gritty) Note = D-0 (-25.29 cents off), 18.29Hz Theoretical = 18.56Hz AUDF = e7 (Gritty) Note = D-0 (-17.85 cents off), 18.37Hz Theoretical = 18.56Hz AUDF = e6 (Buzzy) Note = A-1 (-8.41 cents off), 55.34Hz Theoretical = 55.61Hz AUDF = e5, Unstable! (Buzzy) Note = F#2 (-16.54 cents off), 92.64Hz Theoretical = 93.53Hz AUDF = e4 (Gritty) Note = D-0 (+4.69 cents off), 18.61Hz Theoretical = 18.56Hz AUDF = e3 (Buzzy) Note = A-1 (+14.22 cents off), 56.07Hz Theoretical = 55.61Hz AUDF = e2 (Gritty) Note = D-0 (+19.87 cents off), 18.77Hz Theoretical = 18.56Hz AUDF = e1 (Gritty) Note = D-0 (+27.52 cents off), 18.86Hz Theoretical = 18.56Hz AUDF = e0, Unstable! (Buzzy) Note = F#2 (+21.51 cents off), 94.70Hz Theoretical = 93.53Hz AUDF = df (Gritty) Note = D-0 (+42.91 cents off), 19.02Hz Theoretical = 18.56Hz AUDF = de (Gritty) Note = D#0 (-49.35 cents off), 19.11Hz Theoretical = 19.66Hz AUDF = dd (Buzzy) Note = A#1 (-39.61 cents off), 57.59Hz Theoretical = 58.92Hz AUDF = dc (Gritty) Note = D#0 (-33.75 cents off), 19.28Hz Theoretical = 19.66Hz AUDF = db, Unstable! (Buzzy) Note = G-2 (-39.59 cents off), 96.85Hz Theoretical = 99.09Hz AUDF = da (Buzzy) Note = A#1 (-16.06 cents off), 58.37Hz Theoretical = 58.92Hz AUDF = d9 (Gritty) Note = D#0 (-10.09 cents off), 19.55Hz Theoretical = 19.66Hz AUDF = d8 (Gritty) Note = D#0 (-2.13 cents off), 19.64Hz Theoretical = 19.66Hz AUDF = d7 (Buzzy) Note = A#1 (+7.82 cents off), 59.19Hz Theoretical = 58.92Hz AUDF = d6, Unstable! (Buzzy) Note = G-2 (+0.21 cents off), 99.10Hz Theoretical = 99.09Hz AUDF = d5 (Gritty) Note = D#0 (+21.97 cents off), 19.91Hz Theoretical = 19.66Hz AUDF = d4 (Buzzy) Note = A#1 (+32.03 cents off), 60.02Hz Theoretical = 58.92Hz AUDF = d3 (Gritty) Note = D#0 (+38.23 cents off), 20.10Hz Theoretical = 19.66Hz AUDF = d2 (Gritty) Note = D#0 (+46.41 cents off), 20.20Hz Theoretical = 19.66Hz AUDF = d1, Unstable! (Buzzy) Note = G-2 (+40.95 cents off), 101.46Hz Theoretical = 99.09Hz AUDF = d0 (Gritty) Note = E-0 (-37.10 cents off), 20.39Hz Theoretical = 20.83Hz AUDF = cf (Gritty) Note = E-0 (-28.80 cents off), 20.49Hz Theoretical = 20.83Hz AUDF = ce (Buzzy) Note = B-1 (-18.50 cents off), 61.76Hz Theoretical = 62.42Hz AUDF = cd (Gritty) Note = E-0 (-12.07 cents off), 20.69Hz Theoretical = 20.83Hz AUDF = cc, Unstable! (Buzzy) Note = G#2 (-17.33 cents off), 103.94Hz Theoretical = 104.98Hz AUDF = cb (Buzzy) Note = B-1 (+6.78 cents off), 62.67Hz Theoretical = 62.42Hz AUDF = ca (Gritty) Note = E-0 (+13.33 cents off), 20.99Hz Theoretical = 20.83Hz AUDF = c9 (Gritty) Note = E-0 (+21.88 cents off), 21.10Hz Theoretical = 20.83Hz AUDF = c8 (Buzzy) Note = B-1 (+32.42 cents off), 63.60Hz Theoretical = 62.42Hz AUDF = c7, Unstable! (Buzzy) Note = G#2 (+25.42 cents off), 106.53Hz Theoretical = 104.98Hz AUDF = c6 (Gritty) Note = E-0 (+47.78 cents off), 21.41Hz Theoretical = 20.83Hz AUDF = c5 (Buzzy) Note = C-2 (-41.54 cents off), 64.57Hz Theoretical = 66.13Hz AUDF = c4 (Gritty) Note = F-0 (-34.73 cents off), 21.63Hz Theoretical = 22.07Hz AUDF = c3 (Gritty) Note = F-0 (-25.92 cents off), 21.74Hz Theoretical = 22.07Hz AUDF = c2, Unstable! (Buzzy) Note = A-2 (-30.75 cents off), 109.27Hz Theoretical = 111.22Hz AUDF = c1 (Gritty) Note = F-0 (-8.16 cents off), 21.97Hz Theoretical = 22.07Hz AUDF = c0 (Gritty) Note = F-0 (+0.78 cents off), 22.08Hz Theoretical = 22.07Hz AUDF = bf (Buzzy) Note = C-2 (+11.73 cents off), 66.58Hz Theoretical = 66.13Hz AUDF = be (Gritty) Note = F-0 (+18.82 cents off), 22.31Hz Theoretical = 22.07Hz AUDF = bd, Unstable! (Buzzy) Note = A-2 (+14.22 cents off), 112.14Hz Theoretical = 111.22Hz AUDF = bc (Buzzy) Note = C-2 (+39.00 cents off), 67.64Hz Theoretical = 66.13Hz AUDF = bb (Gritty) Note = F-0 (+46.22 cents off), 22.67Hz Theoretical = 22.07Hz AUDF = ba (Gritty) Note = F#0 (-44.54 cents off), 22.79Hz Theoretical = 23.38Hz AUDF = b9 (Buzzy) Note = C#2 (-33.30 cents off), 68.73Hz Theoretical = 70.07Hz AUDF = b8, Unstable! (Buzzy) Note = A#2 (-39.61 cents off), 115.17Hz Theoretical = 117.84Hz AUDF = b7 (Gritty) Note = F#0 (-16.54 cents off), 23.16Hz Theoretical = 23.38Hz AUDF = b6 (Buzzy) Note = C#2 (-5.15 cents off), 69.86Hz Theoretical = 70.07Hz AUDF = b5 (Gritty) Note = F#0 (+2.38 cents off), 23.41Hz Theoretical = 23.38Hz AUDF = b4 (Gritty) Note = F#0 (+11.92 cents off), 23.54Hz Theoretical = 23.38Hz AUDF = b3, Unstable! (Buzzy) Note = A#2 (+7.82 cents off), 118.37Hz Theoretical = 117.84Hz AUDF = b2 (Gritty) Note = F#0 (+31.15 cents off), 23.81Hz Theoretical = 23.38Hz AUDF = b1 (Gritty) Note = F#0 (+40.85 cents off), 23.94Hz Theoretical = 23.38Hz AUDF = b0 (Buzzy) Note = D-2 (-47.44 cents off), 72.23Hz Theoretical = 74.23Hz AUDF = af (Gritty) Note = G-0 (-39.59 cents off), 24.21Hz Theoretical = 24.77Hz AUDF = ae, Unstable! (Buzzy) Note = B-2 (-43.41 cents off), 121.75Hz Theoretical = 124.84Hz AUDF = ad (Buzzy) Note = D-2 (-17.85 cents off), 73.47Hz Theoretical = 74.23Hz AUDF = ac (Gritty) Note = G-0 (-9.82 cents off), 24.63Hz Theoretical = 24.77Hz AUDF = ab (Gritty) Note = G-0 (+0.21 cents off), 24.78Hz Theoretical = 24.77Hz AUDF = aa (Buzzy) Note = D-2 (+12.26 cents off), 74.76Hz Theoretical = 74.23Hz AUDF = a9, Unstable! (Buzzy) Note = B-2 (+6.78 cents off), 125.33Hz Theoretical = 124.84Hz AUDF = a8 (Gritty) Note = G-0 (+30.68 cents off), 25.22Hz Theoretical = 24.77Hz AUDF = a7 (Buzzy) Note = D-2 (+42.91 cents off), 76.10Hz Theoretical = 74.23Hz AUDF = a6 (Gritty) Note = G#0 (-48.71 cents off), 25.52Hz Theoretical = 26.25Hz AUDF = a5 (Gritty) Note = G#0 (-38.32 cents off), 25.67Hz Theoretical = 26.25Hz AUDF = a4, Unstable! (Buzzy) Note = C-3 (-41.54 cents off), 129.13Hz Theoretical = 132.27Hz AUDF = a3 (Gritty) Note = G#0 (-17.33 cents off), 25.98Hz Theoretical = 26.25Hz AUDF = a2 (Gritty) Note = G#0 (-6.74 cents off), 26.14Hz Theoretical = 26.25Hz AUDF = a1 (Buzzy) Note = D#2 (+5.87 cents off), 78.91Hz Theoretical = 78.65Hz AUDF = a0 (Gritty) Note = G#0 (+14.63 cents off), 26.47Hz Theoretical = 26.25Hz AUDF = 9f, Unstable! (Buzzy) Note = C-3 (+11.73 cents off), 133.17Hz Theoretical = 132.27Hz AUDF = 9e (Buzzy) Note = D#2 (+38.23 cents off), 80.40Hz Theoretical = 78.65Hz AUDF = 9d (Gritty) Note = G#0 (+47.19 cents off), 26.97Hz Theoretical = 26.25Hz AUDF = 9c (Gritty) Note = A-0 (-41.81 cents off), 27.14Hz Theoretical = 27.81Hz AUDF = 9b (Buzzy) Note = E-2 (-28.80 cents off), 81.95Hz Theoretical = 83.32Hz AUDF = 9a, Unstable! (Buzzy) Note = C#3 (-33.30 cents off), 137.46Hz Theoretical = 140.13Hz AUDF = 99 (Gritty) Note = A-0 (-8.41 cents off), 27.67Hz Theoretical = 27.81Hz AUDF = 98 (Buzzy) Note = E-2 (+4.82 cents off), 83.56Hz Theoretical = 83.32Hz AUDF = 97 (Gritty) Note = A-0 (+14.22 cents off), 28.04Hz Theoretical = 27.81Hz AUDF = 96 (Gritty) Note = A-0 (+25.65 cents off), 28.22Hz Theoretical = 27.81Hz AUDF = 95, Unstable! (Buzzy) Note = C#3 (+23.46 cents off), 142.05Hz Theoretical = 140.13Hz AUDF = 94 (Gritty) Note = A-0 (+48.73 cents off), 28.60Hz Theoretical = 27.81Hz AUDF = 93 (Gritty) Note = A#0 (-39.61 cents off), 28.79Hz Theoretical = 29.46Hz AUDF = 92 (Buzzy) Note = F-2 (-25.92 cents off), 86.97Hz Theoretical = 88.28Hz AUDF = 91 (Gritty) Note = A#0 (-16.06 cents off), 29.19Hz Theoretical = 29.46Hz AUDF = 90, Unstable! (Buzzy) Note = D-3 (-17.85 cents off), 146.94Hz Theoretical = 148.47Hz AUDF = 8f (Buzzy) Note = F-2 (+9.78 cents off), 88.78Hz Theoretical = 88.28Hz AUDF = 8e (Gritty) Note = A#0 (+19.89 cents off), 29.80Hz Theoretical = 29.46Hz AUDF = 8d (Gritty) Note = A#0 (+32.03 cents off), 30.01Hz Theoretical = 29.46Hz AUDF = 8c (Buzzy) Note = F-2 (+46.22 cents off), 90.67Hz Theoretical = 88.28Hz AUDF = 8b, Unstable! (Buzzy) Note = D-3 (+42.91 cents off), 152.19Hz Theoretical = 148.47Hz AUDF = 8a (Gritty) Note = B-0 (-31.00 cents off), 30.66Hz Theoretical = 31.21Hz AUDF = 89 (Buzzy) Note = F#2 (-16.54 cents off), 92.64Hz Theoretical = 93.53Hz AUDF = 88 (Gritty) Note = B-0 (-5.91 cents off), 31.10Hz Theoretical = 31.21Hz AUDF = 87 (Gritty) Note = B-0 (+6.78 cents off), 31.33Hz Theoretical = 31.21Hz AUDF = 86, Unstable! (Buzzy) Note = D#3 (+5.87 cents off), 157.83Hz Theoretical = 157.29Hz AUDF = 85 (Gritty) Note = B-0 (+32.42 cents off), 31.80Hz Theoretical = 31.21Hz AUDF = 84 (Gritty) Note = B-0 (+45.39 cents off), 32.04Hz Theoretical = 31.21Hz AUDF = 83 (Buzzy) Note = G-2 (-39.59 cents off), 96.85Hz Theoretical = 99.09Hz AUDF = 82 (Gritty) Note = C-1 (-28.38 cents off), 32.53Hz Theoretical = 33.07Hz AUDF = 81, Unstable! (Buzzy) Note = E-3 (-28.80 cents off), 163.90Hz Theoretical = 166.65Hz AUDF = 80 (Buzzy) Note = G-2 (+0.21 cents off), 99.10Hz Theoretical = 99.09Hz AUDF = 7f (Gritty) Note = C-1 (+11.73 cents off), 33.29Hz Theoretical = 33.07Hz AUDF = 7e (Gritty) Note = C-1 (+25.31 cents off), 33.55Hz Theoretical = 33.07Hz AUDF = 7d (Buzzy) Note = G-2 (+40.95 cents off), 101.46Hz Theoretical = 99.09Hz AUDF = 7c, Unstable! (Buzzy) Note = E-3 (+39.10 cents off), 170.45Hz Theoretical = 166.65Hz AUDF = 7b (Gritty) Note = C#1 (-33.30 cents off), 34.37Hz Theoretical = 35.03Hz AUDF = 7a (Buzzy) Note = G#2 (-17.33 cents off), 103.94Hz Theoretical = 104.98Hz AUDF = 79 (Gritty) Note = C#1 (-5.15 cents off), 34.93Hz Theoretical = 35.03Hz AUDF = 78 (Gritty) Note = C#1 (+9.10 cents off), 35.22Hz Theoretical = 35.03Hz AUDF = 77, Unstable! (Buzzy) Note = F-3 (+9.78 cents off), 177.56Hz Theoretical = 176.56Hz AUDF = 76 (Gritty) Note = C#1 (+37.95 cents off), 35.81Hz Theoretical = 35.03Hz AUDF = 75 (Gritty) Note = D-1 (-47.44 cents off), 36.11Hz Theoretical = 37.12Hz AUDF = 74 (Buzzy) Note = A-2 (-30.75 cents off), 109.27Hz Theoretical = 111.22Hz AUDF = 73 (Gritty) Note = D-1 (-17.85 cents off), 36.74Hz Theoretical = 37.12Hz AUDF = 72, Unstable! (Buzzy) Note = F#3 (-16.54 cents off), 185.28Hz Theoretical = 187.06Hz AUDF = 71 (Buzzy) Note = A-2 (+14.22 cents off), 112.14Hz Theoretical = 111.22Hz AUDF = 70 (Gritty) Note = D-1 (+27.52 cents off), 37.71Hz Theoretical = 37.12Hz AUDF = 6f (Gritty) Note = D-1 (+42.91 cents off), 38.05Hz Theoretical = 37.12Hz AUDF = 6e (Buzzy) Note = A#2 (-39.61 cents off), 115.17Hz Theoretical = 117.84Hz AUDF = 6d, Unstable! (Buzzy) Note = G-3 (-39.59 cents off), 193.70Hz Theoretical = 198.18Hz AUDF = 6c (Gritty) Note = D#1 (-10.09 cents off), 39.10Hz Theoretical = 39.32Hz AUDF = 6b (Buzzy) Note = A#2 (+7.82 cents off), 118.37Hz Theoretical = 117.84Hz AUDF = 6a (Gritty) Note = D#1 (+21.97 cents off), 39.83Hz Theoretical = 39.32Hz AUDF = 69 (Gritty) Note = D#1 (+38.23 cents off), 40.20Hz Theoretical = 39.32Hz AUDF = 68, Unstable! (Buzzy) Note = G-3 (+40.95 cents off), 202.92Hz Theoretical = 198.18Hz AUDF = 67 (Gritty) Note = E-1 (-28.80 cents off), 40.97Hz Theoretical = 41.66Hz AUDF = 66 (Gritty) Note = E-1 (-12.07 cents off), 41.37Hz Theoretical = 41.66Hz AUDF = 65 (Buzzy) Note = B-2 (+6.78 cents off), 125.33Hz Theoretical = 124.84Hz AUDF = 64 (Gritty) Note = E-1 (+21.88 cents off), 42.19Hz Theoretical = 41.66Hz AUDF = 63, Unstable! (Buzzy) Note = G#3 (+25.42 cents off), 213.07Hz Theoretical = 209.96Hz AUDF = 62 (Buzzy) Note = C-3 (-41.54 cents off), 129.13Hz Theoretical = 132.27Hz AUDF = 61 (Gritty) Note = F-1 (-25.92 cents off), 43.48Hz Theoretical = 44.14Hz AUDF = 60 (Gritty) Note = F-1 (-8.16 cents off), 43.93Hz Theoretical = 44.14Hz AUDF = 5f (Buzzy) Note = C-3 (+11.73 cents off), 133.17Hz Theoretical = 132.27Hz AUDF = 5e, Unstable! (Buzzy) Note = A-3 (+14.22 cents off), 224.28Hz Theoretical = 222.45Hz AUDF = 5d (Gritty) Note = F-1 (+46.22 cents off), 45.33Hz Theoretical = 44.14Hz AUDF = 5c (Buzzy) Note = C#3 (-33.30 cents off), 137.46Hz Theoretical = 140.13Hz AUDF = 5b (Gritty) Note = F#1 (-16.54 cents off), 46.32Hz Theoretical = 46.76Hz AUDF = 5a (Gritty) Note = F#1 (+2.38 cents off), 46.83Hz Theoretical = 46.76Hz AUDF = 59, Unstable! (Buzzy) Note = A#3 (+7.82 cents off), 236.74Hz Theoretical = 235.68Hz AUDF = 58 (Gritty) Note = F#1 (+40.85 cents off), 47.88Hz Theoretical = 46.76Hz AUDF = 57 (Gritty) Note = G-1 (-39.59 cents off), 48.42Hz Theoretical = 49.54Hz AUDF = 56 (Buzzy) Note = D-3 (-17.85 cents off), 146.94Hz Theoretical = 148.47Hz AUDF = 55 (Gritty) Note = G-1 (+0.21 cents off), 49.55Hz Theoretical = 49.54Hz AUDF = 54, Unstable! (Buzzy) Note = B-3 (+6.78 cents off), 250.67Hz Theoretical = 249.69Hz AUDF = 53 (Buzzy) Note = D-3 (+42.91 cents off), 152.19Hz Theoretical = 148.47Hz AUDF = 52 (Gritty) Note = G#1 (-38.32 cents off), 51.34Hz Theoretical = 52.49Hz AUDF = 51 (Gritty) Note = G#1 (-17.33 cents off), 51.97Hz Theoretical = 52.49Hz AUDF = 50 (Buzzy) Note = D#3 (+5.87 cents off), 157.83Hz Theoretical = 157.29Hz AUDF = 4f, Unstable! (Buzzy) Note = C-4 (+11.73 cents off), 266.34Hz Theoretical = 264.54Hz AUDF = 4e (Gritty) Note = G#1 (+47.19 cents off), 53.94Hz Theoretical = 52.49Hz AUDF = 4d (Buzzy) Note = E-3 (-28.80 cents off), 163.90Hz Theoretical = 166.65Hz AUDF = 4c (Gritty) Note = A-1 (-8.41 cents off), 55.34Hz Theoretical = 55.61Hz AUDF = 4b (Gritty) Note = A-1 (+14.22 cents off), 56.07Hz Theoretical = 55.61Hz AUDF = 4a, Unstable! (Buzzy) Note = C#4 (+23.46 cents off), 284.09Hz Theoretical = 280.27Hz AUDF = 49 (Gritty) Note = A#1 (-39.61 cents off), 57.59Hz Theoretical = 58.92Hz AUDF = 48 (Gritty) Note = A#1 (-16.06 cents off), 58.37Hz Theoretical = 58.92Hz AUDF = 47 (Buzzy) Note = F-3 (+9.78 cents off), 177.56Hz Theoretical = 176.56Hz AUDF = 46 (Gritty) Note = A#1 (+32.03 cents off), 60.02Hz Theoretical = 58.92Hz AUDF = 45, Unstable! (Buzzy) Note = D-4 (+42.91 cents off), 304.38Hz Theoretical = 296.93Hz AUDF = 44 (Buzzy) Note = F#3 (-16.54 cents off), 185.28Hz Theoretical = 187.06Hz AUDF = 43 (Gritty) Note = B-1 (+6.78 cents off), 62.67Hz Theoretical = 62.42Hz AUDF = 42 (Gritty) Note = B-1 (+32.42 cents off), 63.60Hz Theoretical = 62.42Hz AUDF = 41 (Buzzy) Note = G-3 (-39.59 cents off), 193.70Hz Theoretical = 198.18Hz AUDF = 40, Unstable! (Buzzy) Note = E-4 (-28.80 cents off), 327.80Hz Theoretical = 333.30Hz AUDF = 3f (Gritty) Note = C-2 (+11.73 cents off), 66.58Hz Theoretical = 66.13Hz AUDF = 3e (Buzzy) Note = G-3 (+40.95 cents off), 202.92Hz Theoretical = 198.18Hz AUDF = 3d (Gritty) Note = C#2 (-33.30 cents off), 68.73Hz Theoretical = 70.07Hz AUDF = 3c (Gritty) Note = C#2 (-5.15 cents off), 69.86Hz Theoretical = 70.07Hz AUDF = 3b, Unstable! (Buzzy) Note = F-4 (+9.78 cents off), 355.11Hz Theoretical = 353.11Hz AUDF = 3a (Gritty) Note = D-2 (-47.44 cents off), 72.23Hz Theoretical = 74.23Hz AUDF = 39 (Gritty) Note = D-2 (-17.85 cents off), 73.47Hz Theoretical = 74.23Hz AUDF = 38 (Buzzy) Note = A-3 (+14.22 cents off), 224.28Hz Theoretical = 222.45Hz AUDF = 37 (Gritty) Note = D-2 (+42.91 cents off), 76.10Hz Theoretical = 74.23Hz AUDF = 36, Unstable! (Buzzy) Note = G-4 (-39.59 cents off), 387.40Hz Theoretical = 396.36Hz AUDF = 35 (Buzzy) Note = A#3 (+7.82 cents off), 236.74Hz Theoretical = 235.68Hz AUDF = 34 (Gritty) Note = D#2 (+38.23 cents off), 80.40Hz Theoretical = 78.65Hz AUDF = 33 (Gritty) Note = E-2 (-28.80 cents off), 81.95Hz Theoretical = 83.32Hz AUDF = 32 (Buzzy) Note = B-3 (+6.78 cents off), 250.67Hz Theoretical = 249.69Hz AUDF = 31, Unstable! (Buzzy) Note = G#4 (+25.42 cents off), 426.14Hz Theoretical = 419.93Hz AUDF = 30 (Gritty) Note = F-2 (-25.92 cents off), 86.97Hz Theoretical = 88.28Hz AUDF = 2f (Buzzy) Note = C-4 (+11.73 cents off), 266.34Hz Theoretical = 264.54Hz AUDF = 2e (Gritty) Note = F-2 (+46.22 cents off), 90.67Hz Theoretical = 88.28Hz AUDF = 2d (Gritty) Note = F#2 (-16.54 cents off), 92.64Hz Theoretical = 93.53Hz AUDF = 2c, Unstable! (Buzzy) Note = A#4 (+7.82 cents off), 473.48Hz Theoretical = 471.35Hz AUDF = 2b (Gritty) Note = G-2 (-39.59 cents off), 96.85Hz Theoretical = 99.09Hz AUDF = 2a (Gritty) Note = G-2 (+0.21 cents off), 99.10Hz Theoretical = 99.09Hz AUDF = 29 (Buzzy) Note = D-4 (+42.91 cents off), 304.38Hz Theoretical = 296.93Hz AUDF = 28 (Gritty) Note = G#2 (-17.33 cents off), 103.94Hz Theoretical = 104.98Hz AUDF = 27, Unstable! (Buzzy) Note = C-5 (+11.73 cents off), 532.67Hz Theoretical = 529.07Hz AUDF = 26 (Buzzy) Note = E-4 (-28.80 cents off), 327.80Hz Theoretical = 333.30Hz AUDF = 25 (Gritty) Note = A-2 (+14.22 cents off), 112.14Hz Theoretical = 111.22Hz AUDF = 24 (Gritty) Note = A#2 (-39.61 cents off), 115.17Hz Theoretical = 117.84Hz AUDF = 23 (Buzzy) Note = F-4 (+9.78 cents off), 355.11Hz Theoretical = 353.11Hz AUDF = 22, Unstable! (Buzzy) Note = D-5 (+42.91 cents off), 608.77Hz Theoretical = 593.86Hz AUDF = 21 (Gritty) Note = B-2 (+6.78 cents off), 125.33Hz Theoretical = 124.84Hz AUDF = 20 (Buzzy) Note = G-4 (-39.59 cents off), 387.40Hz Theoretical = 396.36Hz AUDF = 1f (Gritty) Note = C-3 (+11.73 cents off), 133.17Hz Theoretical = 132.27Hz AUDF = 1e (Gritty) Note = C#3 (-33.30 cents off), 137.46Hz Theoretical = 140.13Hz AUDF = 1d, Unstable! (Buzzy) Note = F-5 (+9.78 cents off), 710.23Hz Theoretical = 706.23Hz AUDF = 1c (Gritty) Note = D-3 (-17.85 cents off), 146.94Hz Theoretical = 148.47Hz AUDF = 1b (Gritty) Note = D-3 (+42.91 cents off), 152.19Hz Theoretical = 148.47Hz AUDF = 1a (Buzzy) Note = A#4 (+7.82 cents off), 473.48Hz Theoretical = 471.35Hz AUDF = 19 (Gritty) Note = E-3 (-28.80 cents off), 163.90Hz Theoretical = 166.65Hz AUDF = 18, Unstable! (Buzzy) Note = G#5 (+25.42 cents off), 852.27Hz Theoretical = 839.85Hz AUDF = 17 (Buzzy) Note = C-5 (+11.73 cents off), 532.67Hz Theoretical = 529.07Hz AUDF = 16 (Gritty) Note = F#3 (-16.54 cents off), 185.28Hz Theoretical = 187.06Hz AUDF = 15 (Gritty) Note = G-3 (-39.59 cents off), 193.70Hz Theoretical = 198.18Hz AUDF = 14 (Buzzy) Note = D-5 (+42.91 cents off), 608.77Hz Theoretical = 593.86Hz AUDF = 13, Unstable! (Buzzy) Note = C-6 (+11.73 cents off), 1065.34Hz Theoretical = 1058.15Hz AUDF = 12 (Gritty) Note = A-3 (+14.22 cents off), 224.28Hz Theoretical = 222.45Hz AUDF = 11 (Buzzy) Note = F-5 (+9.78 cents off), 710.23Hz Theoretical = 706.23Hz AUDF = 10 (Gritty) Note = B-3 (+6.78 cents off), 250.67Hz Theoretical = 249.69Hz AUDF = f (Gritty) Note = C-4 (+11.73 cents off), 266.34Hz Theoretical = 264.54Hz AUDF = e, Unstable! (Buzzy) Note = F-6 (+9.78 cents off), 1420.45Hz Theoretical = 1412.46Hz AUDF = d (Gritty) Note = D-4 (+42.91 cents off), 304.38Hz Theoretical = 296.93Hz AUDF = c (Gritty) Note = E-4 (-28.80 cents off), 327.80Hz Theoretical = 333.30Hz AUDF = b (Buzzy) Note = C-6 (+11.73 cents off), 1065.34Hz Theoretical = 1058.15Hz AUDF = a (Gritty) Note = G-4 (-39.59 cents off), 387.40Hz Theoretical = 396.36Hz AUDF = 9, Unstable! (Buzzy) Note = C-7 (+11.73 cents off), 2130.68Hz Theoretical = 2116.29Hz AUDF = 8 (Buzzy) Note = F-6 (+9.78 cents off), 1420.45Hz Theoretical = 1412.46Hz AUDF = 7 (Gritty) Note = C-5 (+11.73 cents off), 532.67Hz Theoretical = 529.07Hz AUDF = 6 (Gritty) Note = D-5 (+42.91 cents off), 608.77Hz Theoretical = 593.86Hz AUDF = 5 (Buzzy) Note = C-7 (+11.73 cents off), 2130.68Hz Theoretical = 2116.29Hz AUDF = 4, Unstable! (Buzzy) Note = C-8 (+11.73 cents off), 4261.36Hz Theoretical = 4232.59Hz AUDF = 3 (Gritty) Note = C-6 (+11.73 cents off), 1065.34Hz Theoretical = 1058.15Hz AUDF = 2 (Buzzy) Note = C-8 (+11.73 cents off), 4261.36Hz Theoretical = 4232.59Hz AUDF = 1 (Gritty) Note = C-7 (+11.73 cents off), 2130.68Hz Theoretical = 2116.29Hz AUDF = 0 (Gritty) Note = C-8 (+11.73 cents off), 4261.36Hz Theoretical = 4232.59Hz ---------------------------------------------------- So I think I can say now, the Distortion C formula has been finally broken down! We finally have a way to filter what we want to have, and most importantly, what we want to avoid in the calculations! I'm sure that same sort of pattern can now be observed in many more modes for other distortions I will also make the program generate the list into separate groups for each timbre, that will be infinitely easier to sort later as well ie: 1 list for Buzzies, 1 list for Gritties, 1 list for Unstables, etc [EDIT] I just realised my formula has an error... pitch FB should be a Buzzy! woops! Good thing I was rewriting all of the formulae into much better code structure as well Edited March 4, 2022 by VinsCool forgot some details, added spoiler tag for the list 1 Quote Link to comment Share on other sites More sharing options...
_The Doctor__ Posted March 4, 2022 Share Posted March 4, 2022 (edited) hmmm buzzies and gritties... may have a use but un-stables normally don't, unless you need some ominous game sound effect... The crazy noise crew is coming for you! In any even I got a kick out of reading about it, Glad you re check and find things like you do. Many people just keep marching forward and never get around to that stuff, it become a permanent thing as time progresses. Thanks once again for taking the work forward and making our music machine capable of creating music and sounds rivaling and even surpassing other solutions. Edited March 4, 2022 by _The Doctor__ 1 Quote Link to comment Share on other sites More sharing options...
VinsCool Posted March 5, 2022 Share Posted March 5, 2022 Fuck me, I have been spending way too much efforts into this, but finally I can split Distortion C into separate lists being generated, making all the intermixed pitches all sorted in incrementing order in the appropriate list for each ones of the possible modes. That's not finished still, but this is a big step closer to generating actual tables based on all the nice sorted arrays my crappy calculator can now generate. Spoiler File generated using POKEY Frequencies Calculator v0.1 A-4 Tuning = 444.90 Hz Machine region = NTSC ---------------------------------------------------- Real frequencies generated using the tuning parameter, they will be used for reference... C-0 = 16.53Hz C#0 = 17.52Hz D-0 = 18.56Hz D#0 = 19.66Hz E-0 = 20.83Hz F-0 = 22.07Hz F#0 = 23.38Hz G-0 = 24.77Hz G#0 = 26.25Hz A-0 = 27.81Hz A#0 = 29.46Hz B-0 = 31.21Hz C-1 = 33.07Hz C#1 = 35.03Hz D-1 = 37.12Hz D#1 = 39.32Hz E-1 = 41.66Hz F-1 = 44.14Hz F#1 = 46.76Hz G-1 = 49.54Hz G#1 = 52.49Hz A-1 = 55.61Hz A#1 = 58.92Hz B-1 = 62.42Hz C-2 = 66.13Hz C#2 = 70.07Hz D-2 = 74.23Hz D#2 = 78.65Hz E-2 = 83.32Hz F-2 = 88.28Hz F#2 = 93.53Hz G-2 = 99.09Hz G#2 = 104.98Hz A-2 = 111.22Hz A#2 = 117.84Hz B-2 = 124.84Hz C-3 = 132.27Hz C#3 = 140.13Hz D-3 = 148.47Hz D#3 = 157.29Hz E-3 = 166.65Hz F-3 = 176.56Hz F#3 = 187.06Hz G-3 = 198.18Hz G#3 = 209.96Hz A-3 = 222.45Hz A#3 = 235.68Hz B-3 = 249.69Hz C-4 = 264.54Hz C#4 = 280.27Hz D-4 = 296.93Hz D#4 = 314.59Hz E-4 = 333.30Hz F-4 = 353.11Hz F#4 = 374.11Hz G-4 = 396.36Hz G#4 = 419.93Hz A-4 = 444.90Hz A#4 = 471.35Hz B-4 = 499.38Hz C-5 = 529.07Hz C#5 = 560.53Hz D-5 = 593.86Hz D#5 = 629.18Hz E-5 = 666.59Hz F-5 = 706.23Hz F#5 = 748.22Hz G-5 = 792.71Hz G#5 = 839.85Hz A-5 = 889.79Hz A#5 = 942.70Hz B-5 = 998.76Hz C-6 = 1058.15Hz C#6 = 1121.07Hz D-6 = 1187.73Hz D#6 = 1258.36Hz E-6 = 1333.18Hz F-6 = 1412.46Hz F#6 = 1496.45Hz G-6 = 1585.43Hz G#6 = 1679.70Hz A-6 = 1779.58Hz A#6 = 1885.40Hz B-6 = 1997.51Hz C-7 = 2116.29Hz C#7 = 2242.13Hz D-7 = 2375.46Hz D#7 = 2516.71Hz E-7 = 2666.36Hz F-7 = 2824.91Hz F#7 = 2992.89Hz G-7 = 3170.86Hz G#7 = 3359.41Hz A-7 = 3559.17Hz A#7 = 3770.81Hz B-7 = 3995.03Hz C-8 = 4232.59Hz C#8 = 4484.27Hz D-8 = 4750.92Hz D#8 = 5033.42Hz E-8 = 5332.72Hz F-8 = 5649.82Hz F#8 = 5985.78Hz G-8 = 6341.71Hz G#8 = 6718.81Hz A-8 = 7118.33Hz A#8 = 7541.61Hz B-8 = 7990.06Hz C-9 = 8465.17Hz C#9 = 8968.54Hz D-9 = 9501.83Hz D#9 = 10066.84Hz E-9 = 10665.45Hz F-9 = 11299.65Hz F#9 = 11971.56Hz G-9 = 12683.43Hz G#9 = 13437.62Hz A-9 = 14236.66Hz A#9 = 15083.22Hz B-9 = 15980.12Hz C-10 = 16930.34Hz C#10 = 17937.07Hz D-10 = 19003.67Hz D#10 = 20133.68Hz E-10 = 21330.90Hz F-10 = 22599.30Hz F#10 = 23943.12Hz G-10 = 25366.85Hz G#10 = 26875.24Hz A-10 = 28473.33Hz A#10 = 30166.44Hz B-10 = 31960.23Hz C-11 = 33860.69Hz C#11 = 35874.15Hz D-11 = 38007.34Hz D#11 = 40267.37Hz E-11 = 42661.79Hz F-11 = 45198.59Hz F#11 = 47886.24Hz G-11 = 50733.71Hz G#11 = 53750.49Hz A-11 = 56946.66Hz A#11 = 60332.88Hz B-11 = 63920.46Hz C-12 = 67721.37Hz C#12 = 71748.30Hz D-12 = 76014.67Hz D#12 = 80534.74Hz E-12 = 85323.58Hz F-12 = 90397.19Hz F#12 = 95772.48Hz G-12 = 101467.41Hz G#12 = 107500.98Hz A-12 = 113893.32Hz A#12 = 120665.77Hz B-12 = 127840.93Hz C-13 = 135442.75Hz C#13 = 143496.59Hz D-13 = 152029.34Hz D#13 = 161069.48Hz E-13 = 170647.17Hz F-13 = 180794.38Hz F#13 = 191544.97Hz G-13 = 202934.82Hz G#13 = 215001.96Hz A-13 = 227786.64Hz A#13 = 241331.54Hz B-13 = 255681.86Hz ---------------------------------------------------- Distortion 0, 64kHz (Poly9) ---------------------------------------------------- ---------------------------------------------------- Distortion 0, 15kHz (Poly9) ---------------------------------------------------- ---------------------------------------------------- Distortion 0, 1.79MHz (Poly9) ---------------------------------------------------- ---------------------------------------------------- Distortion 0, 16-bit (Poly9) ---------------------------------------------------- ---------------------------------------------------- Distortion 2, 64kHz ---------------------------------------------------- ---------------------------------------------------- Distortion 2, 15kHz ---------------------------------------------------- ---------------------------------------------------- Distortion 2, 1.79MHz ---------------------------------------------------- ---------------------------------------------------- Distortion 2, 16-bit ---------------------------------------------------- ---------------------------------------------------- Distortion 4, 64kHz ---------------------------------------------------- ---------------------------------------------------- Distortion 4, 15kHz ---------------------------------------------------- ---------------------------------------------------- Distortion 4, 1.79MHz ---------------------------------------------------- ---------------------------------------------------- Distortion 4, 16-bit ---------------------------------------------------- ---------------------------------------------------- Distortion 8, 64kHz (Poly9) ---------------------------------------------------- ---------------------------------------------------- Distortion 8, 15kHz (Poly9) ---------------------------------------------------- ---------------------------------------------------- Distortion 8, 1.79MHz (Poly9) ---------------------------------------------------- ---------------------------------------------------- Distortion 8, 16-bit (Poly9) ---------------------------------------------------- ---------------------------------------------------- Distortion 10, 64kHz ---------------------------------------------------- ---------------------------------------------------- Distortion 10, 15kHz ---------------------------------------------------- ---------------------------------------------------- Distortion 10, 1.79MHz ---------------------------------------------------- ---------------------------------------------------- Distortion 10, 16-bit ---------------------------------------------------- ---------------------------------------------------- Distortion 12, 64kHz Gritty (Neither MOD3 or MOD5) ---------------------------------------------------- AUDF = ff (Gritty) Note = C-0 (+11.73 cents off), 16.65Hz Theoretical = 16.53Hz AUDF = fd (Gritty) Note = C-0 (+25.31 cents off), 16.78Hz Theoretical = 16.53Hz AUDF = fc (Gritty) Note = C-0 (+32.14 cents off), 16.84Hz Theoretical = 16.53Hz AUDF = fa (Gritty) Note = C-0 (+45.88 cents off), 16.98Hz Theoretical = 16.53Hz AUDF = f7 (Gritty) Note = C#0 (-33.30 cents off), 17.18Hz Theoretical = 17.52Hz AUDF = f6 (Gritty) Note = C#0 (-26.31 cents off), 17.25Hz Theoretical = 17.52Hz AUDF = f3 (Gritty) Note = C#0 (-5.15 cents off), 17.46Hz Theoretical = 17.52Hz AUDF = f1 (Gritty) Note = C#0 (+9.10 cents off), 17.61Hz Theoretical = 17.52Hz AUDF = f0 (Gritty) Note = C#0 (+16.26 cents off), 17.68Hz Theoretical = 17.52Hz AUDF = ee (Gritty) Note = C#0 (+30.69 cents off), 17.83Hz Theoretical = 17.52Hz AUDF = ed (Gritty) Note = C#0 (+37.95 cents off), 17.90Hz Theoretical = 17.52Hz AUDF = eb (Gritty) Note = D-0 (-47.44 cents off), 18.06Hz Theoretical = 18.56Hz AUDF = e8 (Gritty) Note = D-0 (-25.29 cents off), 18.29Hz Theoretical = 18.56Hz AUDF = e7 (Gritty) Note = D-0 (-17.85 cents off), 18.37Hz Theoretical = 18.56Hz AUDF = e4 (Gritty) Note = D-0 (+4.69 cents off), 18.61Hz Theoretical = 18.56Hz AUDF = e2 (Gritty) Note = D-0 (+19.87 cents off), 18.77Hz Theoretical = 18.56Hz AUDF = e1 (Gritty) Note = D-0 (+27.52 cents off), 18.86Hz Theoretical = 18.56Hz AUDF = df (Gritty) Note = D-0 (+42.91 cents off), 19.02Hz Theoretical = 18.56Hz AUDF = de (Gritty) Note = D#0 (-49.35 cents off), 19.11Hz Theoretical = 19.66Hz AUDF = dc (Gritty) Note = D#0 (-33.75 cents off), 19.28Hz Theoretical = 19.66Hz AUDF = d9 (Gritty) Note = D#0 (-10.09 cents off), 19.55Hz Theoretical = 19.66Hz AUDF = d8 (Gritty) Note = D#0 (-2.13 cents off), 19.64Hz Theoretical = 19.66Hz AUDF = d5 (Gritty) Note = D#0 (+21.97 cents off), 19.91Hz Theoretical = 19.66Hz AUDF = d3 (Gritty) Note = D#0 (+38.23 cents off), 20.10Hz Theoretical = 19.66Hz AUDF = d2 (Gritty) Note = D#0 (+46.41 cents off), 20.20Hz Theoretical = 19.66Hz AUDF = d0 (Gritty) Note = E-0 (-37.10 cents off), 20.39Hz Theoretical = 20.83Hz AUDF = cf (Gritty) Note = E-0 (-28.80 cents off), 20.49Hz Theoretical = 20.83Hz AUDF = cd (Gritty) Note = E-0 (-12.07 cents off), 20.69Hz Theoretical = 20.83Hz AUDF = ca (Gritty) Note = E-0 (+13.33 cents off), 20.99Hz Theoretical = 20.83Hz AUDF = c9 (Gritty) Note = E-0 (+21.88 cents off), 21.10Hz Theoretical = 20.83Hz AUDF = c6 (Gritty) Note = E-0 (+47.78 cents off), 21.41Hz Theoretical = 20.83Hz AUDF = c4 (Gritty) Note = F-0 (-34.73 cents off), 21.63Hz Theoretical = 22.07Hz AUDF = c3 (Gritty) Note = F-0 (-25.92 cents off), 21.74Hz Theoretical = 22.07Hz AUDF = c1 (Gritty) Note = F-0 (-8.16 cents off), 21.97Hz Theoretical = 22.07Hz AUDF = c0 (Gritty) Note = F-0 (+0.78 cents off), 22.08Hz Theoretical = 22.07Hz AUDF = be (Gritty) Note = F-0 (+18.82 cents off), 22.31Hz Theoretical = 22.07Hz AUDF = bb (Gritty) Note = F-0 (+46.22 cents off), 22.67Hz Theoretical = 22.07Hz AUDF = ba (Gritty) Note = F#0 (-44.54 cents off), 22.79Hz Theoretical = 23.38Hz AUDF = b7 (Gritty) Note = F#0 (-16.54 cents off), 23.16Hz Theoretical = 23.38Hz AUDF = b5 (Gritty) Note = F#0 (+2.38 cents off), 23.41Hz Theoretical = 23.38Hz AUDF = b4 (Gritty) Note = F#0 (+11.92 cents off), 23.54Hz Theoretical = 23.38Hz AUDF = b2 (Gritty) Note = F#0 (+31.15 cents off), 23.81Hz Theoretical = 23.38Hz AUDF = b1 (Gritty) Note = F#0 (+40.85 cents off), 23.94Hz Theoretical = 23.38Hz AUDF = af (Gritty) Note = G-0 (-39.59 cents off), 24.21Hz Theoretical = 24.77Hz AUDF = ac (Gritty) Note = G-0 (-9.82 cents off), 24.63Hz Theoretical = 24.77Hz AUDF = ab (Gritty) Note = G-0 (+0.21 cents off), 24.78Hz Theoretical = 24.77Hz AUDF = a8 (Gritty) Note = G-0 (+30.68 cents off), 25.22Hz Theoretical = 24.77Hz AUDF = a6 (Gritty) Note = G#0 (-48.71 cents off), 25.52Hz Theoretical = 26.25Hz AUDF = a5 (Gritty) Note = G#0 (-38.32 cents off), 25.67Hz Theoretical = 26.25Hz AUDF = a3 (Gritty) Note = G#0 (-17.33 cents off), 25.98Hz Theoretical = 26.25Hz AUDF = a2 (Gritty) Note = G#0 (-6.74 cents off), 26.14Hz Theoretical = 26.25Hz AUDF = a0 (Gritty) Note = G#0 (+14.63 cents off), 26.47Hz Theoretical = 26.25Hz AUDF = 9d (Gritty) Note = G#0 (+47.19 cents off), 26.97Hz Theoretical = 26.25Hz AUDF = 9c (Gritty) Note = A-0 (-41.81 cents off), 27.14Hz Theoretical = 27.81Hz AUDF = 99 (Gritty) Note = A-0 (-8.41 cents off), 27.67Hz Theoretical = 27.81Hz AUDF = 97 (Gritty) Note = A-0 (+14.22 cents off), 28.04Hz Theoretical = 27.81Hz AUDF = 96 (Gritty) Note = A-0 (+25.65 cents off), 28.22Hz Theoretical = 27.81Hz AUDF = 94 (Gritty) Note = A-0 (+48.73 cents off), 28.60Hz Theoretical = 27.81Hz AUDF = 93 (Gritty) Note = A#0 (-39.61 cents off), 28.79Hz Theoretical = 29.46Hz AUDF = 91 (Gritty) Note = A#0 (-16.06 cents off), 29.19Hz Theoretical = 29.46Hz AUDF = 8e (Gritty) Note = A#0 (+19.89 cents off), 29.80Hz Theoretical = 29.46Hz AUDF = 8d (Gritty) Note = A#0 (+32.03 cents off), 30.01Hz Theoretical = 29.46Hz AUDF = 8a (Gritty) Note = B-0 (-31.00 cents off), 30.66Hz Theoretical = 31.21Hz AUDF = 88 (Gritty) Note = B-0 (-5.91 cents off), 31.10Hz Theoretical = 31.21Hz AUDF = 87 (Gritty) Note = B-0 (+6.78 cents off), 31.33Hz Theoretical = 31.21Hz AUDF = 85 (Gritty) Note = B-0 (+32.42 cents off), 31.80Hz Theoretical = 31.21Hz AUDF = 84 (Gritty) Note = B-0 (+45.39 cents off), 32.04Hz Theoretical = 31.21Hz AUDF = 82 (Gritty) Note = C-1 (-28.38 cents off), 32.53Hz Theoretical = 33.07Hz AUDF = 7f (Gritty) Note = C-1 (+11.73 cents off), 33.29Hz Theoretical = 33.07Hz AUDF = 7e (Gritty) Note = C-1 (+25.31 cents off), 33.55Hz Theoretical = 33.07Hz AUDF = 7b (Gritty) Note = C#1 (-33.30 cents off), 34.37Hz Theoretical = 35.03Hz AUDF = 79 (Gritty) Note = C#1 (-5.15 cents off), 34.93Hz Theoretical = 35.03Hz AUDF = 78 (Gritty) Note = C#1 (+9.10 cents off), 35.22Hz Theoretical = 35.03Hz AUDF = 76 (Gritty) Note = C#1 (+37.95 cents off), 35.81Hz Theoretical = 35.03Hz AUDF = 75 (Gritty) Note = D-1 (-47.44 cents off), 36.11Hz Theoretical = 37.12Hz AUDF = 73 (Gritty) Note = D-1 (-17.85 cents off), 36.74Hz Theoretical = 37.12Hz AUDF = 70 (Gritty) Note = D-1 (+27.52 cents off), 37.71Hz Theoretical = 37.12Hz AUDF = 6f (Gritty) Note = D-1 (+42.91 cents off), 38.05Hz Theoretical = 37.12Hz AUDF = 6c (Gritty) Note = D#1 (-10.09 cents off), 39.10Hz Theoretical = 39.32Hz AUDF = 6a (Gritty) Note = D#1 (+21.97 cents off), 39.83Hz Theoretical = 39.32Hz AUDF = 69 (Gritty) Note = D#1 (+38.23 cents off), 40.20Hz Theoretical = 39.32Hz AUDF = 67 (Gritty) Note = E-1 (-28.80 cents off), 40.97Hz Theoretical = 41.66Hz AUDF = 66 (Gritty) Note = E-1 (-12.07 cents off), 41.37Hz Theoretical = 41.66Hz AUDF = 64 (Gritty) Note = E-1 (+21.88 cents off), 42.19Hz Theoretical = 41.66Hz AUDF = 61 (Gritty) Note = F-1 (-25.92 cents off), 43.48Hz Theoretical = 44.14Hz AUDF = 60 (Gritty) Note = F-1 (-8.16 cents off), 43.93Hz Theoretical = 44.14Hz AUDF = 5d (Gritty) Note = F-1 (+46.22 cents off), 45.33Hz Theoretical = 44.14Hz AUDF = 5b (Gritty) Note = F#1 (-16.54 cents off), 46.32Hz Theoretical = 46.76Hz AUDF = 5a (Gritty) Note = F#1 (+2.38 cents off), 46.83Hz Theoretical = 46.76Hz AUDF = 58 (Gritty) Note = F#1 (+40.85 cents off), 47.88Hz Theoretical = 46.76Hz AUDF = 57 (Gritty) Note = G-1 (-39.59 cents off), 48.42Hz Theoretical = 49.54Hz AUDF = 55 (Gritty) Note = G-1 (+0.21 cents off), 49.55Hz Theoretical = 49.54Hz AUDF = 52 (Gritty) Note = G#1 (-38.32 cents off), 51.34Hz Theoretical = 52.49Hz AUDF = 51 (Gritty) Note = G#1 (-17.33 cents off), 51.97Hz Theoretical = 52.49Hz AUDF = 4e (Gritty) Note = G#1 (+47.19 cents off), 53.94Hz Theoretical = 52.49Hz AUDF = 4c (Gritty) Note = A-1 (-8.41 cents off), 55.34Hz Theoretical = 55.61Hz AUDF = 4b (Gritty) Note = A-1 (+14.22 cents off), 56.07Hz Theoretical = 55.61Hz AUDF = 49 (Gritty) Note = A#1 (-39.61 cents off), 57.59Hz Theoretical = 58.92Hz AUDF = 48 (Gritty) Note = A#1 (-16.06 cents off), 58.37Hz Theoretical = 58.92Hz AUDF = 46 (Gritty) Note = A#1 (+32.03 cents off), 60.02Hz Theoretical = 58.92Hz AUDF = 43 (Gritty) Note = B-1 (+6.78 cents off), 62.67Hz Theoretical = 62.42Hz AUDF = 42 (Gritty) Note = B-1 (+32.42 cents off), 63.60Hz Theoretical = 62.42Hz AUDF = 3f (Gritty) Note = C-2 (+11.73 cents off), 66.58Hz Theoretical = 66.13Hz AUDF = 3d (Gritty) Note = C#2 (-33.30 cents off), 68.73Hz Theoretical = 70.07Hz AUDF = 3c (Gritty) Note = C#2 (-5.15 cents off), 69.86Hz Theoretical = 70.07Hz AUDF = 3a (Gritty) Note = D-2 (-47.44 cents off), 72.23Hz Theoretical = 74.23Hz AUDF = 39 (Gritty) Note = D-2 (-17.85 cents off), 73.47Hz Theoretical = 74.23Hz AUDF = 37 (Gritty) Note = D-2 (+42.91 cents off), 76.10Hz Theoretical = 74.23Hz AUDF = 34 (Gritty) Note = D#2 (+38.23 cents off), 80.40Hz Theoretical = 78.65Hz AUDF = 33 (Gritty) Note = E-2 (-28.80 cents off), 81.95Hz Theoretical = 83.32Hz AUDF = 30 (Gritty) Note = F-2 (-25.92 cents off), 86.97Hz Theoretical = 88.28Hz AUDF = 2e (Gritty) Note = F-2 (+46.22 cents off), 90.67Hz Theoretical = 88.28Hz AUDF = 2d (Gritty) Note = F#2 (-16.54 cents off), 92.64Hz Theoretical = 93.53Hz AUDF = 2b (Gritty) Note = G-2 (-39.59 cents off), 96.85Hz Theoretical = 99.09Hz AUDF = 2a (Gritty) Note = G-2 (+0.21 cents off), 99.10Hz Theoretical = 99.09Hz AUDF = 28 (Gritty) Note = G#2 (-17.33 cents off), 103.94Hz Theoretical = 104.98Hz AUDF = 25 (Gritty) Note = A-2 (+14.22 cents off), 112.14Hz Theoretical = 111.22Hz AUDF = 24 (Gritty) Note = A#2 (-39.61 cents off), 115.17Hz Theoretical = 117.84Hz AUDF = 21 (Gritty) Note = B-2 (+6.78 cents off), 125.33Hz Theoretical = 124.84Hz AUDF = 1f (Gritty) Note = C-3 (+11.73 cents off), 133.17Hz Theoretical = 132.27Hz AUDF = 1e (Gritty) Note = C#3 (-33.30 cents off), 137.46Hz Theoretical = 140.13Hz AUDF = 1c (Gritty) Note = D-3 (-17.85 cents off), 146.94Hz Theoretical = 148.47Hz AUDF = 1b (Gritty) Note = D-3 (+42.91 cents off), 152.19Hz Theoretical = 148.47Hz AUDF = 19 (Gritty) Note = E-3 (-28.80 cents off), 163.90Hz Theoretical = 166.65Hz AUDF = 16 (Gritty) Note = F#3 (-16.54 cents off), 185.28Hz Theoretical = 187.06Hz AUDF = 15 (Gritty) Note = G-3 (-39.59 cents off), 193.70Hz Theoretical = 198.18Hz AUDF = 12 (Gritty) Note = A-3 (+14.22 cents off), 224.28Hz Theoretical = 222.45Hz AUDF = 10 (Gritty) Note = B-3 (+6.78 cents off), 250.67Hz Theoretical = 249.69Hz AUDF = f (Gritty) Note = C-4 (+11.73 cents off), 266.34Hz Theoretical = 264.54Hz AUDF = d (Gritty) Note = D-4 (+42.91 cents off), 304.38Hz Theoretical = 296.93Hz AUDF = c (Gritty) Note = E-4 (-28.80 cents off), 327.80Hz Theoretical = 333.30Hz AUDF = a (Gritty) Note = G-4 (-39.59 cents off), 387.40Hz Theoretical = 396.36Hz AUDF = 7 (Gritty) Note = C-5 (+11.73 cents off), 532.67Hz Theoretical = 529.07Hz AUDF = 6 (Gritty) Note = D-5 (+42.91 cents off), 608.77Hz Theoretical = 593.86Hz AUDF = 3 (Gritty) Note = C-6 (+11.73 cents off), 1065.34Hz Theoretical = 1058.15Hz AUDF = 1 (Gritty) Note = C-7 (+11.73 cents off), 2130.68Hz Theoretical = 2116.29Hz AUDF = 0 (Gritty) Note = C-8 (+11.73 cents off), 4261.36Hz Theoretical = 4232.59Hz ---------------------------------------------------- Distortion 12, 64kHz Buzzy (MOD3) ---------------------------------------------------- AUDF = fb (Buzzy) Note = G-1 (+40.95 cents off), 50.73Hz Theoretical = 49.54Hz AUDF = f8 (Buzzy) Note = G#1 (-38.32 cents off), 51.34Hz Theoretical = 52.49Hz AUDF = f5 (Buzzy) Note = G#1 (-17.33 cents off), 51.97Hz Theoretical = 52.49Hz AUDF = f2 (Buzzy) Note = G#1 (+3.91 cents off), 52.61Hz Theoretical = 52.49Hz AUDF = ec (Buzzy) Note = G#1 (+47.19 cents off), 53.94Hz Theoretical = 52.49Hz AUDF = e9 (Buzzy) Note = A-1 (-30.75 cents off), 54.63Hz Theoretical = 55.61Hz AUDF = e6 (Buzzy) Note = A-1 (-8.41 cents off), 55.34Hz Theoretical = 55.61Hz AUDF = e3 (Buzzy) Note = A-1 (+14.22 cents off), 56.07Hz Theoretical = 55.61Hz AUDF = dd (Buzzy) Note = A#1 (-39.61 cents off), 57.59Hz Theoretical = 58.92Hz AUDF = da (Buzzy) Note = A#1 (-16.06 cents off), 58.37Hz Theoretical = 58.92Hz AUDF = d7 (Buzzy) Note = A#1 (+7.82 cents off), 59.19Hz Theoretical = 58.92Hz AUDF = d4 (Buzzy) Note = A#1 (+32.03 cents off), 60.02Hz Theoretical = 58.92Hz AUDF = ce (Buzzy) Note = B-1 (-18.50 cents off), 61.76Hz Theoretical = 62.42Hz AUDF = cb (Buzzy) Note = B-1 (+6.78 cents off), 62.67Hz Theoretical = 62.42Hz AUDF = c8 (Buzzy) Note = B-1 (+32.42 cents off), 63.60Hz Theoretical = 62.42Hz AUDF = c5 (Buzzy) Note = C-2 (-41.54 cents off), 64.57Hz Theoretical = 66.13Hz AUDF = bf (Buzzy) Note = C-2 (+11.73 cents off), 66.58Hz Theoretical = 66.13Hz AUDF = bc (Buzzy) Note = C-2 (+39.00 cents off), 67.64Hz Theoretical = 66.13Hz AUDF = b9 (Buzzy) Note = C#2 (-33.30 cents off), 68.73Hz Theoretical = 70.07Hz AUDF = b6 (Buzzy) Note = C#2 (-5.15 cents off), 69.86Hz Theoretical = 70.07Hz AUDF = b0 (Buzzy) Note = D-2 (-47.44 cents off), 72.23Hz Theoretical = 74.23Hz AUDF = ad (Buzzy) Note = D-2 (-17.85 cents off), 73.47Hz Theoretical = 74.23Hz AUDF = aa (Buzzy) Note = D-2 (+12.26 cents off), 74.76Hz Theoretical = 74.23Hz AUDF = a7 (Buzzy) Note = D-2 (+42.91 cents off), 76.10Hz Theoretical = 74.23Hz AUDF = a1 (Buzzy) Note = D#2 (+5.87 cents off), 78.91Hz Theoretical = 78.65Hz AUDF = 9e (Buzzy) Note = D#2 (+38.23 cents off), 80.40Hz Theoretical = 78.65Hz AUDF = 9b (Buzzy) Note = E-2 (-28.80 cents off), 81.95Hz Theoretical = 83.32Hz AUDF = 98 (Buzzy) Note = E-2 (+4.82 cents off), 83.56Hz Theoretical = 83.32Hz AUDF = 92 (Buzzy) Note = F-2 (-25.92 cents off), 86.97Hz Theoretical = 88.28Hz AUDF = 8f (Buzzy) Note = F-2 (+9.78 cents off), 88.78Hz Theoretical = 88.28Hz AUDF = 8c (Buzzy) Note = F-2 (+46.22 cents off), 90.67Hz Theoretical = 88.28Hz AUDF = 89 (Buzzy) Note = F#2 (-16.54 cents off), 92.64Hz Theoretical = 93.53Hz AUDF = 83 (Buzzy) Note = G-2 (-39.59 cents off), 96.85Hz Theoretical = 99.09Hz AUDF = 80 (Buzzy) Note = G-2 (+0.21 cents off), 99.10Hz Theoretical = 99.09Hz AUDF = 7d (Buzzy) Note = G-2 (+40.95 cents off), 101.46Hz Theoretical = 99.09Hz AUDF = 7a (Buzzy) Note = G#2 (-17.33 cents off), 103.94Hz Theoretical = 104.98Hz AUDF = 74 (Buzzy) Note = A-2 (-30.75 cents off), 109.27Hz Theoretical = 111.22Hz AUDF = 71 (Buzzy) Note = A-2 (+14.22 cents off), 112.14Hz Theoretical = 111.22Hz AUDF = 6e (Buzzy) Note = A#2 (-39.61 cents off), 115.17Hz Theoretical = 117.84Hz AUDF = 6b (Buzzy) Note = A#2 (+7.82 cents off), 118.37Hz Theoretical = 117.84Hz AUDF = 65 (Buzzy) Note = B-2 (+6.78 cents off), 125.33Hz Theoretical = 124.84Hz AUDF = 62 (Buzzy) Note = C-3 (-41.54 cents off), 129.13Hz Theoretical = 132.27Hz AUDF = 5f (Buzzy) Note = C-3 (+11.73 cents off), 133.17Hz Theoretical = 132.27Hz AUDF = 5c (Buzzy) Note = C#3 (-33.30 cents off), 137.46Hz Theoretical = 140.13Hz AUDF = 56 (Buzzy) Note = D-3 (-17.85 cents off), 146.94Hz Theoretical = 148.47Hz AUDF = 53 (Buzzy) Note = D-3 (+42.91 cents off), 152.19Hz Theoretical = 148.47Hz AUDF = 50 (Buzzy) Note = D#3 (+5.87 cents off), 157.83Hz Theoretical = 157.29Hz AUDF = 4d (Buzzy) Note = E-3 (-28.80 cents off), 163.90Hz Theoretical = 166.65Hz AUDF = 47 (Buzzy) Note = F-3 (+9.78 cents off), 177.56Hz Theoretical = 176.56Hz AUDF = 44 (Buzzy) Note = F#3 (-16.54 cents off), 185.28Hz Theoretical = 187.06Hz AUDF = 41 (Buzzy) Note = G-3 (-39.59 cents off), 193.70Hz Theoretical = 198.18Hz AUDF = 3e (Buzzy) Note = G-3 (+40.95 cents off), 202.92Hz Theoretical = 198.18Hz AUDF = 38 (Buzzy) Note = A-3 (+14.22 cents off), 224.28Hz Theoretical = 222.45Hz AUDF = 35 (Buzzy) Note = A#3 (+7.82 cents off), 236.74Hz Theoretical = 235.68Hz AUDF = 32 (Buzzy) Note = B-3 (+6.78 cents off), 250.67Hz Theoretical = 249.69Hz AUDF = 2f (Buzzy) Note = C-4 (+11.73 cents off), 266.34Hz Theoretical = 264.54Hz AUDF = 29 (Buzzy) Note = D-4 (+42.91 cents off), 304.38Hz Theoretical = 296.93Hz AUDF = 26 (Buzzy) Note = E-4 (-28.80 cents off), 327.80Hz Theoretical = 333.30Hz AUDF = 23 (Buzzy) Note = F-4 (+9.78 cents off), 355.11Hz Theoretical = 353.11Hz AUDF = 20 (Buzzy) Note = G-4 (-39.59 cents off), 387.40Hz Theoretical = 396.36Hz AUDF = 1a (Buzzy) Note = A#4 (+7.82 cents off), 473.48Hz Theoretical = 471.35Hz AUDF = 17 (Buzzy) Note = C-5 (+11.73 cents off), 532.67Hz Theoretical = 529.07Hz AUDF = 14 (Buzzy) Note = D-5 (+42.91 cents off), 608.77Hz Theoretical = 593.86Hz AUDF = 11 (Buzzy) Note = F-5 (+9.78 cents off), 710.23Hz Theoretical = 706.23Hz AUDF = b (Buzzy) Note = C-6 (+11.73 cents off), 1065.34Hz Theoretical = 1058.15Hz AUDF = 8 (Buzzy) Note = F-6 (+9.78 cents off), 1420.45Hz Theoretical = 1412.46Hz AUDF = 5 (Buzzy) Note = C-7 (+11.73 cents off), 2130.68Hz Theoretical = 2116.29Hz AUDF = 2 (Buzzy) Note = C-8 (+11.73 cents off), 4261.36Hz Theoretical = 4232.59Hz ---------------------------------------------------- Distortion 12, 64kHz Unstable Buzzy (MOD5) ---------------------------------------------------- AUDF = f9 (Unstable Buzzy) Note = E-2 (+39.10 cents off), 85.23Hz Theoretical = 83.32Hz AUDF = f4 (Unstable Buzzy) Note = F-2 (-25.92 cents off), 86.97Hz Theoretical = 88.28Hz AUDF = ea (Unstable Buzzy) Note = F-2 (+46.22 cents off), 90.67Hz Theoretical = 88.28Hz AUDF = e5 (Unstable Buzzy) Note = F#2 (-16.54 cents off), 92.64Hz Theoretical = 93.53Hz AUDF = db (Unstable Buzzy) Note = G-2 (-39.59 cents off), 96.85Hz Theoretical = 99.09Hz AUDF = d6 (Unstable Buzzy) Note = G-2 (+0.21 cents off), 99.10Hz Theoretical = 99.09Hz AUDF = cc (Unstable Buzzy) Note = G#2 (-17.33 cents off), 103.94Hz Theoretical = 104.98Hz AUDF = c7 (Unstable Buzzy) Note = G#2 (+25.42 cents off), 106.53Hz Theoretical = 104.98Hz AUDF = bd (Unstable Buzzy) Note = A-2 (+14.22 cents off), 112.14Hz Theoretical = 111.22Hz AUDF = b8 (Unstable Buzzy) Note = A#2 (-39.61 cents off), 115.17Hz Theoretical = 117.84Hz AUDF = ae (Unstable Buzzy) Note = B-2 (-43.41 cents off), 121.75Hz Theoretical = 124.84Hz AUDF = a9 (Unstable Buzzy) Note = B-2 (+6.78 cents off), 125.33Hz Theoretical = 124.84Hz AUDF = 9f (Unstable Buzzy) Note = C-3 (+11.73 cents off), 133.17Hz Theoretical = 132.27Hz AUDF = 9a (Unstable Buzzy) Note = C#3 (-33.30 cents off), 137.46Hz Theoretical = 140.13Hz AUDF = 90 (Unstable Buzzy) Note = D-3 (-17.85 cents off), 146.94Hz Theoretical = 148.47Hz AUDF = 8b (Unstable Buzzy) Note = D-3 (+42.91 cents off), 152.19Hz Theoretical = 148.47Hz AUDF = 81 (Unstable Buzzy) Note = E-3 (-28.80 cents off), 163.90Hz Theoretical = 166.65Hz AUDF = 7c (Unstable Buzzy) Note = E-3 (+39.10 cents off), 170.45Hz Theoretical = 166.65Hz AUDF = 72 (Unstable Buzzy) Note = F#3 (-16.54 cents off), 185.28Hz Theoretical = 187.06Hz AUDF = 6d (Unstable Buzzy) Note = G-3 (-39.59 cents off), 193.70Hz Theoretical = 198.18Hz AUDF = 63 (Unstable Buzzy) Note = G#3 (+25.42 cents off), 213.07Hz Theoretical = 209.96Hz AUDF = 5e (Unstable Buzzy) Note = A-3 (+14.22 cents off), 224.28Hz Theoretical = 222.45Hz AUDF = 54 (Unstable Buzzy) Note = B-3 (+6.78 cents off), 250.67Hz Theoretical = 249.69Hz AUDF = 4f (Unstable Buzzy) Note = C-4 (+11.73 cents off), 266.34Hz Theoretical = 264.54Hz AUDF = 45 (Unstable Buzzy) Note = D-4 (+42.91 cents off), 304.38Hz Theoretical = 296.93Hz AUDF = 40 (Unstable Buzzy) Note = E-4 (-28.80 cents off), 327.80Hz Theoretical = 333.30Hz AUDF = 36 (Unstable Buzzy) Note = G-4 (-39.59 cents off), 387.40Hz Theoretical = 396.36Hz AUDF = 31 (Unstable Buzzy) Note = G#4 (+25.42 cents off), 426.14Hz Theoretical = 419.93Hz AUDF = 27 (Unstable Buzzy) Note = C-5 (+11.73 cents off), 532.67Hz Theoretical = 529.07Hz AUDF = 22 (Unstable Buzzy) Note = D-5 (+42.91 cents off), 608.77Hz Theoretical = 593.86Hz AUDF = 18 (Unstable Buzzy) Note = G#5 (+25.42 cents off), 852.27Hz Theoretical = 839.85Hz AUDF = 13 (Unstable Buzzy) Note = C-6 (+11.73 cents off), 1065.34Hz Theoretical = 1058.15Hz AUDF = 9 (Unstable Buzzy) Note = C-7 (+11.73 cents off), 2130.68Hz Theoretical = 2116.29Hz AUDF = 4 (Unstable Buzzy) Note = C-8 (+11.73 cents off), 4261.36Hz Theoretical = 4232.59Hz ---------------------------------------------------- Distortion 12, 15kHz Buzzy ---------------------------------------------------- AUDF = c1 (Buzzy) Note = C-0 (-36.85 cents off), 16.19Hz Theoretical = 16.53Hz AUDF = c0 (Buzzy) Note = C-0 (-27.90 cents off), 16.27Hz Theoretical = 16.53Hz AUDF = bf (Buzzy) Note = C-0 (-18.91 cents off), 16.35Hz Theoretical = 16.53Hz AUDF = be (Buzzy) Note = C-0 (-9.87 cents off), 16.44Hz Theoretical = 16.53Hz AUDF = bc (Buzzy) Note = C-0 (+8.35 cents off), 16.61Hz Theoretical = 16.53Hz AUDF = bb (Buzzy) Note = C-0 (+17.54 cents off), 16.70Hz Theoretical = 16.53Hz AUDF = ba (Buzzy) Note = C-0 (+26.77 cents off), 16.79Hz Theoretical = 16.53Hz AUDF = b9 (Buzzy) Note = C-0 (+36.05 cents off), 16.88Hz Theoretical = 16.53Hz AUDF = b7 (Buzzy) Note = C#0 (-45.23 cents off), 17.06Hz Theoretical = 17.52Hz AUDF = b6 (Buzzy) Note = C#0 (-35.80 cents off), 17.16Hz Theoretical = 17.52Hz AUDF = b5 (Buzzy) Note = C#0 (-26.31 cents off), 17.25Hz Theoretical = 17.52Hz AUDF = b4 (Buzzy) Note = C#0 (-16.77 cents off), 17.35Hz Theoretical = 17.52Hz AUDF = b2 (Buzzy) Note = C#0 (+2.47 cents off), 17.54Hz Theoretical = 17.52Hz AUDF = b1 (Buzzy) Note = C#0 (+12.16 cents off), 17.64Hz Theoretical = 17.52Hz AUDF = b0 (Buzzy) Note = C#0 (+21.92 cents off), 17.74Hz Theoretical = 17.52Hz AUDF = af (Buzzy) Note = C#0 (+31.73 cents off), 17.84Hz Theoretical = 17.52Hz AUDF = ad (Buzzy) Note = D-0 (-48.49 cents off), 18.05Hz Theoretical = 18.56Hz AUDF = ac (Buzzy) Note = D-0 (-38.51 cents off), 18.15Hz Theoretical = 18.56Hz AUDF = ab (Buzzy) Note = D-0 (-28.47 cents off), 18.26Hz Theoretical = 18.56Hz AUDF = aa (Buzzy) Note = D-0 (-18.38 cents off), 18.36Hz Theoretical = 18.56Hz AUDF = a8 (Buzzy) Note = D-0 (+1.99 cents off), 18.58Hz Theoretical = 18.56Hz AUDF = a7 (Buzzy) Note = D-0 (+12.26 cents off), 18.69Hz Theoretical = 18.56Hz AUDF = a6 (Buzzy) Note = D-0 (+22.60 cents off), 18.80Hz Theoretical = 18.56Hz AUDF = a5 (Buzzy) Note = D-0 (+33.00 cents off), 18.92Hz Theoretical = 18.56Hz AUDF = a3 (Buzzy) Note = D#0 (-46.02 cents off), 19.15Hz Theoretical = 19.66Hz AUDF = a2 (Buzzy) Note = D#0 (-35.43 cents off), 19.26Hz Theoretical = 19.66Hz AUDF = a1 (Buzzy) Note = D#0 (-24.78 cents off), 19.38Hz Theoretical = 19.66Hz AUDF = a0 (Buzzy) Note = D#0 (-14.06 cents off), 19.50Hz Theoretical = 19.66Hz AUDF = 9e (Buzzy) Note = D#0 (+7.58 cents off), 19.75Hz Theoretical = 19.66Hz AUDF = 9d (Buzzy) Note = D#0 (+18.51 cents off), 19.87Hz Theoretical = 19.66Hz AUDF = 9c (Buzzy) Note = D#0 (+29.50 cents off), 20.00Hz Theoretical = 19.66Hz AUDF = 9b (Buzzy) Note = D#0 (+40.56 cents off), 20.13Hz Theoretical = 19.66Hz AUDF = 99 (Buzzy) Note = E-0 (-37.10 cents off), 20.39Hz Theoretical = 20.83Hz AUDF = 98 (Buzzy) Note = E-0 (-25.82 cents off), 20.52Hz Theoretical = 20.83Hz AUDF = 97 (Buzzy) Note = E-0 (-14.47 cents off), 20.66Hz Theoretical = 20.83Hz AUDF = 96 (Buzzy) Note = E-0 (-3.04 cents off), 20.79Hz Theoretical = 20.83Hz AUDF = 94 (Buzzy) Note = E-0 (+20.04 cents off), 21.07Hz Theoretical = 20.83Hz AUDF = 93 (Buzzy) Note = E-0 (+31.70 cents off), 21.22Hz Theoretical = 20.83Hz AUDF = 92 (Buzzy) Note = E-0 (+43.44 cents off), 21.36Hz Theoretical = 20.83Hz AUDF = 91 (Buzzy) Note = F-0 (-44.75 cents off), 21.51Hz Theoretical = 22.07Hz AUDF = 8f (Buzzy) Note = F-0 (-20.87 cents off), 21.81Hz Theoretical = 22.07Hz AUDF = 8e (Buzzy) Note = F-0 (-8.80 cents off), 21.96Hz Theoretical = 22.07Hz AUDF = 8d (Buzzy) Note = F-0 (+3.35 cents off), 22.11Hz Theoretical = 22.07Hz AUDF = 8c (Buzzy) Note = F-0 (+15.58 cents off), 22.27Hz Theoretical = 22.07Hz AUDF = 8a (Buzzy) Note = F-0 (+40.31 cents off), 22.59Hz Theoretical = 22.07Hz AUDF = 89 (Buzzy) Note = F#0 (-47.19 cents off), 22.75Hz Theoretical = 23.38Hz AUDF = 88 (Buzzy) Note = F#0 (-34.59 cents off), 22.92Hz Theoretical = 23.38Hz AUDF = 87 (Buzzy) Note = F#0 (-21.91 cents off), 23.09Hz Theoretical = 23.38Hz AUDF = 85 (Buzzy) Note = F#0 (+3.74 cents off), 23.43Hz Theoretical = 23.38Hz AUDF = 84 (Buzzy) Note = F#0 (+16.71 cents off), 23.61Hz Theoretical = 23.38Hz AUDF = 83 (Buzzy) Note = F#0 (+29.77 cents off), 23.79Hz Theoretical = 23.38Hz AUDF = 82 (Buzzy) Note = F#0 (+42.94 cents off), 23.97Hz Theoretical = 23.38Hz AUDF = 80 (Buzzy) Note = G-0 (-30.43 cents off), 24.34Hz Theoretical = 24.77Hz AUDF = 7f (Buzzy) Note = G-0 (-16.96 cents off), 24.53Hz Theoretical = 24.77Hz AUDF = 7e (Buzzy) Note = G-0 (-3.38 cents off), 24.72Hz Theoretical = 24.77Hz AUDF = 7d (Buzzy) Note = G-0 (+10.31 cents off), 24.92Hz Theoretical = 24.77Hz AUDF = 7b (Buzzy) Note = G-0 (+38.01 cents off), 25.32Hz Theoretical = 24.77Hz AUDF = 7a (Buzzy) Note = G#0 (-47.97 cents off), 25.53Hz Theoretical = 26.25Hz AUDF = 79 (Buzzy) Note = G#0 (-33.84 cents off), 25.74Hz Theoretical = 26.25Hz AUDF = 78 (Buzzy) Note = G#0 (-19.59 cents off), 25.95Hz Theoretical = 26.25Hz AUDF = 76 (Buzzy) Note = G#0 (+9.26 cents off), 26.39Hz Theoretical = 26.25Hz AUDF = 75 (Buzzy) Note = G#0 (+23.87 cents off), 26.61Hz Theoretical = 26.25Hz AUDF = 74 (Buzzy) Note = G#0 (+38.61 cents off), 26.84Hz Theoretical = 26.25Hz AUDF = 73 (Buzzy) Note = A-0 (-46.53 cents off), 27.07Hz Theoretical = 27.81Hz AUDF = 71 (Buzzy) Note = A-0 (-16.42 cents off), 27.54Hz Theoretical = 27.81Hz AUDF = 70 (Buzzy) Note = A-0 (-1.17 cents off), 27.79Hz Theoretical = 27.81Hz AUDF = 6f (Buzzy) Note = A-0 (+14.22 cents off), 28.04Hz Theoretical = 27.81Hz AUDF = 6e (Buzzy) Note = A-0 (+29.75 cents off), 28.29Hz Theoretical = 27.81Hz AUDF = 6c (Buzzy) Note = A#0 (-38.78 cents off), 28.81Hz Theoretical = 29.46Hz AUDF = 6b (Buzzy) Note = A#0 (-22.82 cents off), 29.07Hz Theoretical = 29.46Hz AUDF = 6a (Buzzy) Note = A#0 (-6.72 cents off), 29.35Hz Theoretical = 29.46Hz AUDF = 69 (Buzzy) Note = A#0 (+9.54 cents off), 29.62Hz Theoretical = 29.46Hz AUDF = 67 (Buzzy) Note = A#0 (+42.52 cents off), 30.19Hz Theoretical = 29.46Hz AUDF = 66 (Buzzy) Note = B-0 (-40.76 cents off), 30.48Hz Theoretical = 31.21Hz AUDF = 65 (Buzzy) Note = B-0 (-23.87 cents off), 30.78Hz Theoretical = 31.21Hz AUDF = 64 (Buzzy) Note = B-0 (-6.81 cents off), 31.09Hz Theoretical = 31.21Hz AUDF = 62 (Buzzy) Note = B-0 (+27.82 cents off), 31.72Hz Theoretical = 31.21Hz AUDF = 61 (Buzzy) Note = B-0 (+45.39 cents off), 32.04Hz Theoretical = 31.21Hz AUDF = 60 (Buzzy) Note = C-1 (-36.85 cents off), 32.37Hz Theoretical = 33.07Hz AUDF = 5f (Buzzy) Note = C-1 (-18.91 cents off), 32.71Hz Theoretical = 33.07Hz AUDF = 5d (Buzzy) Note = C-1 (+17.54 cents off), 33.40Hz Theoretical = 33.07Hz AUDF = 5c (Buzzy) Note = C-1 (+36.05 cents off), 33.76Hz Theoretical = 33.07Hz AUDF = 5b (Buzzy) Note = C#1 (-45.23 cents off), 34.13Hz Theoretical = 35.03Hz AUDF = 5a (Buzzy) Note = C#1 (-26.31 cents off), 34.50Hz Theoretical = 35.03Hz AUDF = 58 (Buzzy) Note = C#1 (+12.16 cents off), 35.28Hz Theoretical = 35.03Hz AUDF = 57 (Buzzy) Note = C#1 (+31.73 cents off), 35.68Hz Theoretical = 35.03Hz AUDF = 56 (Buzzy) Note = D-1 (-48.49 cents off), 36.09Hz Theoretical = 37.12Hz AUDF = 55 (Buzzy) Note = D-1 (-28.47 cents off), 36.51Hz Theoretical = 37.12Hz AUDF = 53 (Buzzy) Note = D-1 (+12.26 cents off), 37.38Hz Theoretical = 37.12Hz AUDF = 52 (Buzzy) Note = D-1 (+33.00 cents off), 37.83Hz Theoretical = 37.12Hz AUDF = 51 (Buzzy) Note = D#1 (-46.02 cents off), 38.29Hz Theoretical = 39.32Hz AUDF = 50 (Buzzy) Note = D#1 (-24.78 cents off), 38.76Hz Theoretical = 39.32Hz AUDF = 4e (Buzzy) Note = D#1 (+18.51 cents off), 39.75Hz Theoretical = 39.32Hz AUDF = 4d (Buzzy) Note = D#1 (+40.56 cents off), 40.26Hz Theoretical = 39.32Hz AUDF = 4c (Buzzy) Note = E-1 (-37.10 cents off), 40.78Hz Theoretical = 41.66Hz AUDF = 4b (Buzzy) Note = E-1 (-14.47 cents off), 41.32Hz Theoretical = 41.66Hz AUDF = 49 (Buzzy) Note = E-1 (+31.70 cents off), 42.43Hz Theoretical = 41.66Hz AUDF = 48 (Buzzy) Note = F-1 (-44.75 cents off), 43.01Hz Theoretical = 44.14Hz AUDF = 47 (Buzzy) Note = F-1 (-20.87 cents off), 43.61Hz Theoretical = 44.14Hz AUDF = 46 (Buzzy) Note = F-1 (+3.35 cents off), 44.22Hz Theoretical = 44.14Hz AUDF = 44 (Buzzy) Note = F#1 (-47.19 cents off), 45.51Hz Theoretical = 46.76Hz AUDF = 43 (Buzzy) Note = F#1 (-21.91 cents off), 46.18Hz Theoretical = 46.76Hz AUDF = 42 (Buzzy) Note = F#1 (+3.74 cents off), 46.86Hz Theoretical = 46.76Hz AUDF = 41 (Buzzy) Note = F#1 (+29.77 cents off), 47.58Hz Theoretical = 46.76Hz AUDF = 3f (Buzzy) Note = G-1 (-16.96 cents off), 49.06Hz Theoretical = 49.54Hz AUDF = 3e (Buzzy) Note = G-1 (+10.31 cents off), 49.84Hz Theoretical = 49.54Hz AUDF = 3d (Buzzy) Note = G-1 (+38.01 cents off), 50.64Hz Theoretical = 49.54Hz AUDF = 3c (Buzzy) Note = G#1 (-33.84 cents off), 51.47Hz Theoretical = 52.49Hz AUDF = 3a (Buzzy) Note = G#1 (+23.87 cents off), 53.22Hz Theoretical = 52.49Hz AUDF = 39 (Buzzy) Note = A-1 (-46.53 cents off), 54.14Hz Theoretical = 55.61Hz AUDF = 38 (Buzzy) Note = A-1 (-16.42 cents off), 55.09Hz Theoretical = 55.61Hz AUDF = 37 (Buzzy) Note = A-1 (+14.22 cents off), 56.07Hz Theoretical = 55.61Hz AUDF = 35 (Buzzy) Note = A#1 (-22.82 cents off), 58.15Hz Theoretical = 58.92Hz AUDF = 34 (Buzzy) Note = A#1 (+9.54 cents off), 59.24Hz Theoretical = 58.92Hz AUDF = 33 (Buzzy) Note = A#1 (+42.52 cents off), 60.38Hz Theoretical = 58.92Hz AUDF = 32 (Buzzy) Note = B-1 (-23.87 cents off), 61.57Hz Theoretical = 62.42Hz AUDF = 30 (Buzzy) Note = B-1 (+45.39 cents off), 64.08Hz Theoretical = 62.42Hz AUDF = 2f (Buzzy) Note = C-2 (-18.91 cents off), 65.42Hz Theoretical = 66.13Hz AUDF = 2e (Buzzy) Note = C-2 (+17.54 cents off), 66.81Hz Theoretical = 66.13Hz AUDF = 2d (Buzzy) Note = C#2 (-45.23 cents off), 68.26Hz Theoretical = 70.07Hz AUDF = 2b (Buzzy) Note = C#2 (+31.73 cents off), 71.36Hz Theoretical = 70.07Hz AUDF = 2a (Buzzy) Note = D-2 (-28.47 cents off), 73.02Hz Theoretical = 74.23Hz AUDF = 29 (Buzzy) Note = D-2 (+12.26 cents off), 74.76Hz Theoretical = 74.23Hz AUDF = 28 (Buzzy) Note = D#2 (-46.02 cents off), 76.58Hz Theoretical = 78.65Hz AUDF = 26 (Buzzy) Note = D#2 (+40.56 cents off), 80.51Hz Theoretical = 78.65Hz AUDF = 25 (Buzzy) Note = E-2 (-14.47 cents off), 82.63Hz Theoretical = 83.32Hz AUDF = 24 (Buzzy) Note = E-2 (+31.70 cents off), 84.86Hz Theoretical = 83.32Hz AUDF = 23 (Buzzy) Note = F-2 (-20.87 cents off), 87.22Hz Theoretical = 88.28Hz AUDF = 21 (Buzzy) Note = F#2 (-21.91 cents off), 92.35Hz Theoretical = 93.53Hz AUDF = 20 (Buzzy) Note = F#2 (+29.77 cents off), 95.15Hz Theoretical = 93.53Hz AUDF = 1f (Buzzy) Note = G-2 (-16.96 cents off), 98.12Hz Theoretical = 99.09Hz AUDF = 1e (Buzzy) Note = G-2 (+38.01 cents off), 101.29Hz Theoretical = 99.09Hz AUDF = 1c (Buzzy) Note = A-2 (-46.53 cents off), 108.27Hz Theoretical = 111.22Hz AUDF = 1b (Buzzy) Note = A-2 (+14.22 cents off), 112.14Hz Theoretical = 111.22Hz AUDF = 1a (Buzzy) Note = A#2 (-22.82 cents off), 116.29Hz Theoretical = 117.84Hz AUDF = 19 (Buzzy) Note = A#2 (+42.52 cents off), 120.77Hz Theoretical = 117.84Hz AUDF = 17 (Buzzy) Note = C-3 (-18.91 cents off), 130.83Hz Theoretical = 132.27Hz AUDF = 16 (Buzzy) Note = C#3 (-45.23 cents off), 136.52Hz Theoretical = 140.13Hz AUDF = 15 (Buzzy) Note = C#3 (+31.73 cents off), 142.73Hz Theoretical = 140.13Hz AUDF = 14 (Buzzy) Note = D-3 (+12.26 cents off), 149.52Hz Theoretical = 148.47Hz AUDF = 12 (Buzzy) Note = E-3 (-14.47 cents off), 165.26Hz Theoretical = 166.65Hz AUDF = 11 (Buzzy) Note = F-3 (-20.87 cents off), 174.44Hz Theoretical = 176.56Hz AUDF = 10 (Buzzy) Note = F#3 (-21.91 cents off), 184.70Hz Theoretical = 187.06Hz AUDF = f (Buzzy) Note = G-3 (-16.96 cents off), 196.25Hz Theoretical = 198.18Hz AUDF = d (Buzzy) Note = A-3 (+14.22 cents off), 224.28Hz Theoretical = 222.45Hz AUDF = c (Buzzy) Note = A#3 (+42.52 cents off), 241.53Hz Theoretical = 235.68Hz AUDF = b (Buzzy) Note = C-4 (-18.91 cents off), 261.66Hz Theoretical = 264.54Hz AUDF = a (Buzzy) Note = C#4 (+31.73 cents off), 285.45Hz Theoretical = 280.27Hz AUDF = 8 (Buzzy) Note = F-4 (-20.87 cents off), 348.88Hz Theoretical = 353.11Hz AUDF = 7 (Buzzy) Note = G-4 (-16.96 cents off), 392.49Hz Theoretical = 396.36Hz AUDF = 6 (Buzzy) Note = A-4 (+14.22 cents off), 448.56Hz Theoretical = 444.90Hz AUDF = 5 (Buzzy) Note = C-5 (-18.91 cents off), 523.33Hz Theoretical = 529.07Hz AUDF = 3 (Buzzy) Note = G-5 (-16.96 cents off), 784.99Hz Theoretical = 792.71Hz AUDF = 2 (Buzzy) Note = C-6 (-18.91 cents off), 1046.65Hz Theoretical = 1058.15Hz AUDF = 1 (Buzzy) Note = G-6 (-16.96 cents off), 1569.98Hz Theoretical = 1585.43Hz AUDF = 0 (Buzzy) Note = G-7 (-16.96 cents off), 3139.95Hz Theoretical = 3170.86Hz ---------------------------------------------------- Distortion 12, 1.79MHz Gritty (Neither MOD3 or MOD5) ---------------------------------------------------- AUDF = ff (Gritty) Note = A#4 (-39.61 cents off), 460.69Hz Theoretical = 471.35Hz AUDF = fd (Gritty) Note = A#4 (-26.19 cents off), 464.27Hz Theoretical = 471.35Hz AUDF = fc (Gritty) Note = A#4 (-19.44 cents off), 466.09Hz Theoretical = 471.35Hz AUDF = fa (Gritty) Note = A#4 (-5.86 cents off), 469.76Hz Theoretical = 471.35Hz AUDF = f9 (Gritty) Note = A#4 (+0.96 cents off), 471.61Hz Theoretical = 471.35Hz AUDF = f7 (Gritty) Note = A#4 (+14.70 cents off), 475.37Hz Theoretical = 471.35Hz AUDF = f4 (Gritty) Note = A#4 (+35.52 cents off), 481.12Hz Theoretical = 471.35Hz AUDF = f3 (Gritty) Note = A#4 (+42.52 cents off), 483.07Hz Theoretical = 471.35Hz AUDF = f0 (Gritty) Note = B-4 (-36.33 cents off), 489.01Hz Theoretical = 499.38Hz AUDF = ee (Gritty) Note = B-4 (-22.08 cents off), 493.05Hz Theoretical = 499.38Hz AUDF = ed (Gritty) Note = B-4 (-14.91 cents off), 495.10Hz Theoretical = 499.38Hz AUDF = eb (Gritty) Note = B-4 (-0.48 cents off), 499.24Hz Theoretical = 499.38Hz AUDF = ea (Gritty) Note = B-4 (+6.78 cents off), 501.34Hz Theoretical = 499.38Hz AUDF = e8 (Gritty) Note = B-4 (+21.39 cents off), 505.59Hz Theoretical = 499.38Hz AUDF = e5 (Gritty) Note = B-4 (+43.53 cents off), 512.10Hz Theoretical = 499.38Hz AUDF = e4 (Gritty) Note = C-5 (-49.02 cents off), 514.30Hz Theoretical = 529.07Hz AUDF = e1 (Gritty) Note = C-5 (-26.49 cents off), 521.04Hz Theoretical = 529.07Hz AUDF = df (Gritty) Note = C-5 (-11.30 cents off), 525.63Hz Theoretical = 529.07Hz AUDF = de (Gritty) Note = C-5 (-3.66 cents off), 527.96Hz Theoretical = 529.07Hz AUDF = dc (Gritty) Note = C-5 (+11.73 cents off), 532.67Hz Theoretical = 529.07Hz AUDF = db (Gritty) Note = C-5 (+19.48 cents off), 535.06Hz Theoretical = 529.07Hz AUDF = d9 (Gritty) Note = C-5 (+35.07 cents off), 539.90Hz Theoretical = 529.07Hz AUDF = d6 (Gritty) Note = C#5 (-41.26 cents off), 547.33Hz Theoretical = 560.53Hz AUDF = d5 (Gritty) Note = C#5 (-33.30 cents off), 549.85Hz Theoretical = 560.53Hz AUDF = d2 (Gritty) Note = C#5 (-9.20 cents off), 557.56Hz Theoretical = 560.53Hz AUDF = d0 (Gritty) Note = C#5 (+7.05 cents off), 562.82Hz Theoretical = 560.53Hz AUDF = cf (Gritty) Note = C#5 (+15.24 cents off), 565.49Hz Theoretical = 560.53Hz AUDF = cd (Gritty) Note = C#5 (+31.73 cents off), 570.90Hz Theoretical = 560.53Hz AUDF = cc (Gritty) Note = C#5 (+40.03 cents off), 573.65Hz Theoretical = 560.53Hz AUDF = ca (Gritty) Note = D-5 (-43.24 cents off), 579.21Hz Theoretical = 593.86Hz AUDF = c7 (Gritty) Note = D-5 (-17.85 cents off), 587.77Hz Theoretical = 593.86Hz AUDF = c6 (Gritty) Note = D-5 (-9.30 cents off), 590.68Hz Theoretical = 593.86Hz AUDF = c3 (Gritty) Note = D-5 (+16.61 cents off), 599.59Hz Theoretical = 593.86Hz AUDF = c1 (Gritty) Note = D-5 (+34.10 cents off), 605.68Hz Theoretical = 593.86Hz AUDF = c0 (Gritty) Note = D-5 (+42.91 cents off), 608.77Hz Theoretical = 593.86Hz AUDF = be (Gritty) Note = D#5 (-39.34 cents off), 615.04Hz Theoretical = 629.18Hz AUDF = bd (Gritty) Note = D#5 (-30.39 cents off), 618.23Hz Theoretical = 629.18Hz AUDF = bb (Gritty) Note = D#5 (-12.36 cents off), 624.70Hz Theoretical = 629.18Hz AUDF = b8 (Gritty) Note = D#5 (+15.05 cents off), 634.67Hz Theoretical = 629.18Hz AUDF = b7 (Gritty) Note = D#5 (+24.28 cents off), 638.07Hz Theoretical = 629.18Hz AUDF = b4 (Gritty) Note = E-5 (-47.72 cents off), 648.47Hz Theoretical = 666.59Hz AUDF = b2 (Gritty) Note = E-5 (-28.80 cents off), 655.59Hz Theoretical = 666.59Hz AUDF = b1 (Gritty) Note = E-5 (-19.26 cents off), 659.22Hz Theoretical = 666.59Hz AUDF = af (Gritty) Note = E-5 (-0.02 cents off), 666.58Hz Theoretical = 666.59Hz AUDF = ae (Gritty) Note = E-5 (+9.68 cents off), 670.33Hz Theoretical = 666.59Hz AUDF = ac (Gritty) Note = E-5 (+29.24 cents off), 677.94Hz Theoretical = 666.59Hz AUDF = a9 (Gritty) Note = F-5 (-41.00 cents off), 689.70Hz Theoretical = 706.23Hz AUDF = a8 (Gritty) Note = F-5 (-30.96 cents off), 693.71Hz Theoretical = 706.23Hz AUDF = a5 (Gritty) Note = F-5 (-0.50 cents off), 706.02Hz Theoretical = 706.23Hz AUDF = a3 (Gritty) Note = F-5 (+20.11 cents off), 714.48Hz Theoretical = 706.23Hz AUDF = a2 (Gritty) Note = F-5 (+30.51 cents off), 718.78Hz Theoretical = 706.23Hz AUDF = a0 (Gritty) Note = F#5 (-48.51 cents off), 727.55Hz Theoretical = 748.22Hz AUDF = 9f (Gritty) Note = F#5 (-37.92 cents off), 732.01Hz Theoretical = 748.22Hz AUDF = 9d (Gritty) Note = F#5 (-16.54 cents off), 741.11Hz Theoretical = 748.22Hz AUDF = 9a (Gritty) Note = F#5 (+16.02 cents off), 755.18Hz Theoretical = 748.22Hz AUDF = 99 (Gritty) Note = F#5 (+27.01 cents off), 759.99Hz Theoretical = 748.22Hz AUDF = 96 (Gritty) Note = G-5 (-39.59 cents off), 774.79Hz Theoretical = 792.71Hz AUDF = 94 (Gritty) Note = G-5 (-16.96 cents off), 784.99Hz Theoretical = 792.71Hz AUDF = 93 (Gritty) Note = G-5 (-5.53 cents off), 790.19Hz Theoretical = 792.71Hz AUDF = 91 (Gritty) Note = G-5 (+17.55 cents off), 800.79Hz Theoretical = 792.71Hz AUDF = 90 (Gritty) Note = G-5 (+29.21 cents off), 806.20Hz Theoretical = 792.71Hz AUDF = 8e (Gritty) Note = G#5 (-47.23 cents off), 817.25Hz Theoretical = 839.85Hz AUDF = 8b (Gritty) Note = G#5 (-11.29 cents off), 834.39Hz Theoretical = 839.85Hz AUDF = 8a (Gritty) Note = G#5 (+0.86 cents off), 840.27Hz Theoretical = 839.85Hz AUDF = 87 (Gritty) Note = G#5 (+37.83 cents off), 858.40Hz Theoretical = 839.85Hz AUDF = 85 (Gritty) Note = A-5 (-37.08 cents off), 870.94Hz Theoretical = 889.79Hz AUDF = 84 (Gritty) Note = A-5 (-24.40 cents off), 877.34Hz Theoretical = 889.79Hz AUDF = 82 (Gritty) Note = A-5 (+1.25 cents off), 890.43Hz Theoretical = 889.79Hz AUDF = 81 (Gritty) Note = A-5 (+14.22 cents off), 897.13Hz Theoretical = 889.79Hz AUDF = 7f (Gritty) Note = A-5 (+40.45 cents off), 910.83Hz Theoretical = 889.79Hz AUDF = 7c (Gritty) Note = A#5 (-19.44 cents off), 932.17Hz Theoretical = 942.70Hz AUDF = 7b (Gritty) Note = A#5 (-5.86 cents off), 939.51Hz Theoretical = 942.70Hz AUDF = 78 (Gritty) Note = A#5 (+35.52 cents off), 962.24Hz Theoretical = 942.70Hz AUDF = 76 (Gritty) Note = B-5 (-36.33 cents off), 978.02Hz Theoretical = 998.76Hz AUDF = 75 (Gritty) Note = B-5 (-22.08 cents off), 986.10Hz Theoretical = 998.76Hz AUDF = 73 (Gritty) Note = B-5 (+6.78 cents off), 1002.67Hz Theoretical = 998.76Hz AUDF = 72 (Gritty) Note = B-5 (+21.39 cents off), 1011.17Hz Theoretical = 998.76Hz AUDF = 70 (Gritty) Note = C-6 (-49.02 cents off), 1028.61Hz Theoretical = 1058.15Hz AUDF = 6d (Gritty) Note = C-6 (-3.66 cents off), 1055.91Hz Theoretical = 1058.15Hz AUDF = 6c (Gritty) Note = C-6 (+11.73 cents off), 1065.34Hz Theoretical = 1058.15Hz AUDF = 69 (Gritty) Note = C#6 (-41.26 cents off), 1094.66Hz Theoretical = 1121.07Hz AUDF = 67 (Gritty) Note = C#6 (-9.20 cents off), 1115.12Hz Theoretical = 1121.07Hz AUDF = 66 (Gritty) Note = C#6 (+7.05 cents off), 1125.64Hz Theoretical = 1121.07Hz AUDF = 64 (Gritty) Note = C#6 (+40.03 cents off), 1147.29Hz Theoretical = 1121.07Hz AUDF = 63 (Gritty) Note = D-6 (-43.24 cents off), 1158.43Hz Theoretical = 1187.73Hz AUDF = 61 (Gritty) Note = D-6 (-9.30 cents off), 1181.37Hz Theoretical = 1187.73Hz AUDF = 5e (Gritty) Note = D-6 (+42.91 cents off), 1217.53Hz Theoretical = 1187.73Hz AUDF = 5d (Gritty) Note = D#6 (-39.34 cents off), 1230.08Hz Theoretical = 1258.36Hz AUDF = 5a (Gritty) Note = D#6 (+15.05 cents off), 1269.34Hz Theoretical = 1258.36Hz AUDF = 58 (Gritty) Note = E-6 (-47.72 cents off), 1296.94Hz Theoretical = 1333.18Hz AUDF = 57 (Gritty) Note = E-6 (-28.80 cents off), 1311.19Hz Theoretical = 1333.18Hz AUDF = 55 (Gritty) Note = E-6 (+9.68 cents off), 1340.65Hz Theoretical = 1333.18Hz AUDF = 54 (Gritty) Note = E-6 (+29.24 cents off), 1355.89Hz Theoretical = 1333.18Hz AUDF = 52 (Gritty) Note = F-6 (-30.96 cents off), 1387.42Hz Theoretical = 1412.46Hz AUDF = 4f (Gritty) Note = F-6 (+30.51 cents off), 1437.57Hz Theoretical = 1412.46Hz AUDF = 4e (Gritty) Note = F#6 (-48.51 cents off), 1455.10Hz Theoretical = 1496.45Hz AUDF = 4b (Gritty) Note = F#6 (+16.02 cents off), 1510.36Hz Theoretical = 1496.45Hz AUDF = 49 (Gritty) Note = G-6 (-39.59 cents off), 1549.59Hz Theoretical = 1585.43Hz AUDF = 48 (Gritty) Note = G-6 (-16.96 cents off), 1569.98Hz Theoretical = 1585.43Hz AUDF = 46 (Gritty) Note = G-6 (+29.21 cents off), 1612.41Hz Theoretical = 1585.43Hz AUDF = 45 (Gritty) Note = G#6 (-47.23 cents off), 1634.50Hz Theoretical = 1679.70Hz AUDF = 43 (Gritty) Note = G#6 (+0.86 cents off), 1680.54Hz Theoretical = 1679.70Hz AUDF = 40 (Gritty) Note = A-6 (-24.40 cents off), 1754.68Hz Theoretical = 1779.58Hz AUDF = 3f (Gritty) Note = A-6 (+1.25 cents off), 1780.87Hz Theoretical = 1779.58Hz AUDF = 3c (Gritty) Note = A#6 (-19.44 cents off), 1864.35Hz Theoretical = 1885.40Hz AUDF = 3a (Gritty) Note = A#6 (+35.52 cents off), 1924.49Hz Theoretical = 1885.40Hz AUDF = 39 (Gritty) Note = B-6 (-36.33 cents off), 1956.04Hz Theoretical = 1997.51Hz AUDF = 37 (Gritty) Note = B-6 (+21.39 cents off), 2022.34Hz Theoretical = 1997.51Hz AUDF = 36 (Gritty) Note = C-7 (-49.02 cents off), 2057.21Hz Theoretical = 2116.29Hz AUDF = 34 (Gritty) Note = C-7 (+11.73 cents off), 2130.68Hz Theoretical = 2116.29Hz AUDF = 31 (Gritty) Note = C#7 (+7.05 cents off), 2251.29Hz Theoretical = 2242.13Hz AUDF = 30 (Gritty) Note = C#7 (+40.03 cents off), 2294.58Hz Theoretical = 2242.13Hz AUDF = 2d (Gritty) Note = D-7 (+42.91 cents off), 2435.07Hz Theoretical = 2375.46Hz AUDF = 2b (Gritty) Note = D#7 (+15.05 cents off), 2538.69Hz Theoretical = 2516.71Hz AUDF = 2a (Gritty) Note = E-7 (-47.72 cents off), 2593.87Hz Theoretical = 2666.36Hz AUDF = 28 (Gritty) Note = E-7 (+29.24 cents off), 2711.78Hz Theoretical = 2666.36Hz AUDF = 27 (Gritty) Note = F-7 (-30.96 cents off), 2774.84Hz Theoretical = 2824.91Hz AUDF = 25 (Gritty) Note = F#7 (-48.51 cents off), 2910.20Hz Theoretical = 2992.89Hz AUDF = 22 (Gritty) Note = G-7 (-16.96 cents off), 3139.95Hz Theoretical = 3170.86Hz AUDF = 21 (Gritty) Note = G-7 (+29.21 cents off), 3224.82Hz Theoretical = 3170.86Hz AUDF = 1e (Gritty) Note = A-7 (-24.40 cents off), 3509.36Hz Theoretical = 3559.17Hz AUDF = 1c (Gritty) Note = A#7 (-19.44 cents off), 3728.69Hz Theoretical = 3770.81Hz AUDF = 1b (Gritty) Note = A#7 (+35.52 cents off), 3848.97Hz Theoretical = 3770.81Hz AUDF = 19 (Gritty) Note = C-8 (-49.02 cents off), 4114.42Hz Theoretical = 4232.59Hz AUDF = 18 (Gritty) Note = C-8 (+11.73 cents off), 4261.36Hz Theoretical = 4232.59Hz AUDF = 16 (Gritty) Note = C#8 (+40.03 cents off), 4589.16Hz Theoretical = 4484.27Hz AUDF = 13 (Gritty) Note = E-8 (-47.72 cents off), 5187.75Hz Theoretical = 5332.72Hz AUDF = 12 (Gritty) Note = E-8 (+29.24 cents off), 5423.55Hz Theoretical = 5332.72Hz AUDF = f (Gritty) Note = G-8 (-16.96 cents off), 6279.91Hz Theoretical = 6341.71Hz AUDF = d (Gritty) Note = A-8 (-24.40 cents off), 7018.72Hz Theoretical = 7118.33Hz AUDF = c (Gritty) Note = A#8 (-19.44 cents off), 7457.39Hz Theoretical = 7541.61Hz AUDF = a (Gritty) Note = C-9 (+11.73 cents off), 8522.73Hz Theoretical = 8465.17Hz AUDF = 9 (Gritty) Note = C#9 (+40.03 cents off), 9178.32Hz Theoretical = 8968.54Hz AUDF = 7 (Gritty) Note = E-9 (+29.24 cents off), 10847.11Hz Theoretical = 10665.45Hz AUDF = 4 (Gritty) Note = A#9 (-19.44 cents off), 14914.77Hz Theoretical = 15083.22Hz AUDF = 3 (Gritty) Note = C-10 (+11.73 cents off), 17045.46Hz Theoretical = 16930.34Hz AUDF = 0 (Gritty) Note = A#10 (-19.44 cents off), 29829.55Hz Theoretical = 30166.44Hz ---------------------------------------------------- Distortion 12, 1.79MHz Buzzy (MOD3) ---------------------------------------------------- AUDF = fe (Buzzy) Note = F-6 (-30.96 cents off), 1387.42Hz Theoretical = 1412.46Hz AUDF = f8 (Buzzy) Note = F-6 (+9.78 cents off), 1420.45Hz Theoretical = 1412.46Hz AUDF = f5 (Buzzy) Note = F-6 (+30.51 cents off), 1437.57Hz Theoretical = 1412.46Hz AUDF = f2 (Buzzy) Note = F#6 (-48.51 cents off), 1455.10Hz Theoretical = 1496.45Hz AUDF = ef (Buzzy) Note = F#6 (-27.26 cents off), 1473.06Hz Theoretical = 1496.45Hz AUDF = e9 (Buzzy) Note = F#6 (+16.02 cents off), 1510.36Hz Theoretical = 1496.45Hz AUDF = e6 (Buzzy) Note = F#6 (+38.07 cents off), 1529.72Hz Theoretical = 1496.45Hz AUDF = e3 (Buzzy) Note = G-6 (-39.59 cents off), 1549.59Hz Theoretical = 1585.43Hz AUDF = e0 (Buzzy) Note = G-6 (-16.96 cents off), 1569.98Hz Theoretical = 1585.43Hz AUDF = da (Buzzy) Note = G-6 (+29.21 cents off), 1612.41Hz Theoretical = 1585.43Hz AUDF = d7 (Buzzy) Note = G#6 (-47.23 cents off), 1634.50Hz Theoretical = 1679.70Hz AUDF = d4 (Buzzy) Note = G#6 (-23.35 cents off), 1657.20Hz Theoretical = 1679.70Hz AUDF = d1 (Buzzy) Note = G#6 (+0.86 cents off), 1680.54Hz Theoretical = 1679.70Hz AUDF = cb (Buzzy) Note = A-6 (-49.67 cents off), 1729.25Hz Theoretical = 1779.58Hz AUDF = c8 (Buzzy) Note = A-6 (-24.40 cents off), 1754.68Hz Theoretical = 1779.58Hz AUDF = c5 (Buzzy) Note = A-6 (+1.25 cents off), 1780.87Hz Theoretical = 1779.58Hz AUDF = c2 (Buzzy) Note = A-6 (+27.28 cents off), 1807.85Hz Theoretical = 1779.58Hz AUDF = bc (Buzzy) Note = A#6 (-19.44 cents off), 1864.35Hz Theoretical = 1885.40Hz AUDF = b9 (Buzzy) Note = A#6 (+7.82 cents off), 1893.94Hz Theoretical = 1885.40Hz AUDF = b6 (Buzzy) Note = A#6 (+35.52 cents off), 1924.49Hz Theoretical = 1885.40Hz AUDF = b3 (Buzzy) Note = B-6 (-36.33 cents off), 1956.04Hz Theoretical = 1997.51Hz AUDF = ad (Buzzy) Note = B-6 (+21.39 cents off), 2022.34Hz Theoretical = 1997.51Hz AUDF = aa (Buzzy) Note = C-7 (-49.02 cents off), 2057.21Hz Theoretical = 2116.29Hz AUDF = a7 (Buzzy) Note = C-7 (-18.91 cents off), 2093.30Hz Theoretical = 2116.29Hz AUDF = a4 (Buzzy) Note = C-7 (+11.73 cents off), 2130.68Hz Theoretical = 2116.29Hz AUDF = 9e (Buzzy) Note = C#7 (-25.31 cents off), 2209.60Hz Theoretical = 2242.13Hz AUDF = 9b (Buzzy) Note = C#7 (+7.05 cents off), 2251.29Hz Theoretical = 2242.13Hz AUDF = 98 (Buzzy) Note = C#7 (+40.03 cents off), 2294.58Hz Theoretical = 2242.13Hz AUDF = 95 (Buzzy) Note = D-7 (-26.35 cents off), 2339.57Hz Theoretical = 2375.46Hz AUDF = 8f (Buzzy) Note = D-7 (+42.91 cents off), 2435.07Hz Theoretical = 2375.46Hz AUDF = 8c (Buzzy) Note = D#7 (-21.40 cents off), 2485.80Hz Theoretical = 2516.71Hz AUDF = 89 (Buzzy) Note = D#7 (+15.05 cents off), 2538.69Hz Theoretical = 2516.71Hz AUDF = 86 (Buzzy) Note = E-7 (-47.72 cents off), 2593.87Hz Theoretical = 2666.36Hz AUDF = 80 (Buzzy) Note = E-7 (+29.24 cents off), 2711.78Hz Theoretical = 2666.36Hz AUDF = 7d (Buzzy) Note = F-7 (-30.96 cents off), 2774.84Hz Theoretical = 2824.91Hz AUDF = 7a (Buzzy) Note = F-7 (+9.78 cents off), 2840.91Hz Theoretical = 2824.91Hz AUDF = 77 (Buzzy) Note = F#7 (-48.51 cents off), 2910.20Hz Theoretical = 2992.89Hz AUDF = 71 (Buzzy) Note = F#7 (+38.07 cents off), 3059.44Hz Theoretical = 2992.89Hz AUDF = 6e (Buzzy) Note = G-7 (-16.96 cents off), 3139.95Hz Theoretical = 3170.86Hz AUDF = 6b (Buzzy) Note = G-7 (+29.21 cents off), 3224.82Hz Theoretical = 3170.86Hz AUDF = 68 (Buzzy) Note = G#7 (-23.35 cents off), 3314.39Hz Theoretical = 3359.41Hz AUDF = 62 (Buzzy) Note = A-7 (-24.40 cents off), 3509.36Hz Theoretical = 3559.17Hz AUDF = 5f (Buzzy) Note = A-7 (+27.28 cents off), 3615.70Hz Theoretical = 3559.17Hz AUDF = 5c (Buzzy) Note = A#7 (-19.44 cents off), 3728.69Hz Theoretical = 3770.81Hz AUDF = 59 (Buzzy) Note = A#7 (+35.52 cents off), 3848.97Hz Theoretical = 3770.81Hz AUDF = 53 (Buzzy) Note = C-8 (-49.02 cents off), 4114.42Hz Theoretical = 4232.59Hz AUDF = 50 (Buzzy) Note = C-8 (+11.73 cents off), 4261.36Hz Theoretical = 4232.59Hz AUDF = 4d (Buzzy) Note = C#8 (-25.31 cents off), 4419.19Hz Theoretical = 4484.27Hz AUDF = 4a (Buzzy) Note = C#8 (+40.03 cents off), 4589.16Hz Theoretical = 4484.27Hz AUDF = 44 (Buzzy) Note = D#8 (-21.40 cents off), 4971.59Hz Theoretical = 5033.42Hz AUDF = 41 (Buzzy) Note = E-8 (-47.72 cents off), 5187.75Hz Theoretical = 5332.72Hz AUDF = 3e (Buzzy) Note = E-8 (+29.24 cents off), 5423.55Hz Theoretical = 5332.72Hz AUDF = 3b (Buzzy) Note = F-8 (+9.78 cents off), 5681.82Hz Theoretical = 5649.82Hz AUDF = 35 (Buzzy) Note = G-8 (-16.96 cents off), 6279.91Hz Theoretical = 6341.71Hz AUDF = 32 (Buzzy) Note = G#8 (-23.35 cents off), 6628.79Hz Theoretical = 6718.81Hz AUDF = 2f (Buzzy) Note = A-8 (-24.40 cents off), 7018.72Hz Theoretical = 7118.33Hz AUDF = 2c (Buzzy) Note = A#8 (-19.44 cents off), 7457.39Hz Theoretical = 7541.61Hz AUDF = 26 (Buzzy) Note = C-9 (+11.73 cents off), 8522.73Hz Theoretical = 8465.17Hz AUDF = 23 (Buzzy) Note = C#9 (+40.03 cents off), 9178.32Hz Theoretical = 8968.54Hz AUDF = 20 (Buzzy) Note = D#9 (-21.40 cents off), 9943.18Hz Theoretical = 10066.84Hz AUDF = 1d (Buzzy) Note = E-9 (+29.24 cents off), 10847.11Hz Theoretical = 10665.45Hz AUDF = 17 (Buzzy) Note = G#9 (-23.35 cents off), 13257.58Hz Theoretical = 13437.62Hz AUDF = 14 (Buzzy) Note = A#9 (-19.44 cents off), 14914.77Hz Theoretical = 15083.22Hz AUDF = 11 (Buzzy) Note = C-10 (+11.73 cents off), 17045.46Hz Theoretical = 16930.34Hz AUDF = e (Buzzy) Note = D#10 (-21.40 cents off), 19886.37Hz Theoretical = 20133.68Hz AUDF = 8 (Buzzy) Note = A#10 (-19.44 cents off), 29829.55Hz Theoretical = 30166.44Hz AUDF = 5 (Buzzy) Note = D#11 (-21.40 cents off), 39772.73Hz Theoretical = 40267.37Hz AUDF = 2 (Buzzy) Note = A#11 (-19.44 cents off), 59659.10Hz Theoretical = 60332.88Hz ---------------------------------------------------- Distortion 12, 1.79MHz Unstable Buzzy (MOD5) ---------------------------------------------------- AUDF = f6 (Unstable Buzzy) Note = D-7 (+7.93 cents off), 2386.36Hz Theoretical = 2375.46Hz AUDF = f1 (Unstable Buzzy) Note = D-7 (+42.91 cents off), 2435.07Hz Theoretical = 2375.46Hz AUDF = e7 (Unstable Buzzy) Note = D#7 (+15.05 cents off), 2538.69Hz Theoretical = 2516.71Hz AUDF = e2 (Unstable Buzzy) Note = E-7 (-47.72 cents off), 2593.87Hz Theoretical = 2666.36Hz AUDF = d8 (Unstable Buzzy) Note = E-7 (+29.24 cents off), 2711.78Hz Theoretical = 2666.36Hz AUDF = d3 (Unstable Buzzy) Note = F-7 (-30.96 cents off), 2774.84Hz Theoretical = 2824.91Hz AUDF = c9 (Unstable Buzzy) Note = F#7 (-48.51 cents off), 2910.20Hz Theoretical = 2992.89Hz AUDF = c4 (Unstable Buzzy) Note = F#7 (-5.76 cents off), 2982.95Hz Theoretical = 2992.89Hz AUDF = ba (Unstable Buzzy) Note = G-7 (-16.96 cents off), 3139.95Hz Theoretical = 3170.86Hz AUDF = b5 (Unstable Buzzy) Note = G-7 (+29.21 cents off), 3224.82Hz Theoretical = 3170.86Hz AUDF = ab (Unstable Buzzy) Note = G#7 (+25.42 cents off), 3409.09Hz Theoretical = 3359.41Hz AUDF = a6 (Unstable Buzzy) Note = A-7 (-24.40 cents off), 3509.36Hz Theoretical = 3559.17Hz AUDF = 9c (Unstable Buzzy) Note = A#7 (-19.44 cents off), 3728.69Hz Theoretical = 3770.81Hz AUDF = 97 (Unstable Buzzy) Note = A#7 (+35.52 cents off), 3848.97Hz Theoretical = 3770.81Hz AUDF = 8d (Unstable Buzzy) Note = C-8 (-49.02 cents off), 4114.42Hz Theoretical = 4232.59Hz AUDF = 88 (Unstable Buzzy) Note = C-8 (+11.73 cents off), 4261.36Hz Theoretical = 4232.59Hz AUDF = 7e (Unstable Buzzy) Note = C#8 (+40.03 cents off), 4589.16Hz Theoretical = 4484.27Hz AUDF = 79 (Unstable Buzzy) Note = D-8 (+7.93 cents off), 4772.73Hz Theoretical = 4750.92Hz AUDF = 6f (Unstable Buzzy) Note = E-8 (-47.72 cents off), 5187.75Hz Theoretical = 5332.72Hz AUDF = 6a (Unstable Buzzy) Note = E-8 (+29.24 cents off), 5423.55Hz Theoretical = 5332.72Hz AUDF = 60 (Unstable Buzzy) Note = F#8 (-5.76 cents off), 5965.91Hz Theoretical = 5985.78Hz AUDF = 5b (Unstable Buzzy) Note = G-8 (-16.96 cents off), 6279.91Hz Theoretical = 6341.71Hz AUDF = 51 (Unstable Buzzy) Note = A-8 (-24.40 cents off), 7018.72Hz Theoretical = 7118.33Hz AUDF = 4c (Unstable Buzzy) Note = A#8 (-19.44 cents off), 7457.39Hz Theoretical = 7541.61Hz AUDF = 42 (Unstable Buzzy) Note = C-9 (+11.73 cents off), 8522.73Hz Theoretical = 8465.17Hz AUDF = 3d (Unstable Buzzy) Note = C#9 (+40.03 cents off), 9178.32Hz Theoretical = 8968.54Hz AUDF = 33 (Unstable Buzzy) Note = E-9 (+29.24 cents off), 10847.11Hz Theoretical = 10665.45Hz AUDF = 2e (Unstable Buzzy) Note = F#9 (-5.76 cents off), 11931.82Hz Theoretical = 11971.56Hz AUDF = 24 (Unstable Buzzy) Note = A#9 (-19.44 cents off), 14914.77Hz Theoretical = 15083.22Hz AUDF = 1f (Unstable Buzzy) Note = C-10 (+11.73 cents off), 17045.46Hz Theoretical = 16930.34Hz AUDF = 15 (Unstable Buzzy) Note = F#10 (-5.76 cents off), 23863.64Hz Theoretical = 23943.12Hz AUDF = 10 (Unstable Buzzy) Note = A#10 (-19.44 cents off), 29829.55Hz Theoretical = 30166.44Hz AUDF = 6 (Unstable Buzzy) Note = A#11 (-19.44 cents off), 59659.10Hz Theoretical = 60332.88Hz AUDF = 1 (Unstable Buzzy) Note = A#12 (-19.44 cents off), 119318.20Hz Theoretical = 120665.77Hz ---------------------------------------------------- Distortion 12, 16-bit Gritty (Neither MOD3 or MOD5) ---------------------------------------------------- Distortion 12, 16-bit Buzzy (MOD3) ---------------------------------------------------- Distortion 12, 16-bit Unstable Buzzy (MOD5) ---------------------------------------------------- Note that everything else is missing since I'm rewriting all the formulae and pitch calculations function into a much cleaner version of itself, Distortion C being my first one done since I really needed to test all of its cases in 1 shot. All the 16-bit code is also there but not yet in the "special Distortion C lists" case, which is why it is also skipped in the .txt dump. That also is a piece of shit, but as a proof of concept this is still progress, since that's all correct data as far as I could tell... I hope it is still correct. 1 Quote Link to comment Share on other sites More sharing options...
emkay Posted March 6, 2022 Share Posted March 6, 2022 (edited) In this Video, I'm using the polyounter basses one octave higher than I usually would trust the stability If you want some information, have a look at my YT channel... and put the questens there. Edited March 6, 2022 by emkay 1 Quote Link to comment Share on other sites More sharing options...
VinsCool Posted March 6, 2022 Share Posted March 6, 2022 Progress: POKEY Frequencies Calculator v01-1.zip - very early lookup table generation, Distortion A only for now. - major formula code cleanup, the whole thing runs almost 10x faster! - fixed all the Distortion C modulo checks - added checks for invalid values so they are automatically skipped for all known modes - few improvements with the Poly9 frequencies calculations, 15khz and 64khz aren't quite right but this works ok for now Distortion 4 is next on the list for the formula... for now I found 2 common divisor for it: 77.5 and 232.5, and I have a feeling there are many more... Special thanks to synthpopalooza for the tables I was able to use for reference, hopefully we will soon no longer need to pick up each single values by ear I just fear that generating the Distortion C tables (or anything that has multiple things in 1 mode) will be a nightmare... Finding a pitch from a known pattern is nice, but actually finding the closest possible pitch that also respects the wanted modulo might be a little tricky to achieve... 2 Quote Link to comment Share on other sites More sharing options...
VinsCool Posted March 6, 2022 Share Posted March 6, 2022 Some cleanup is needed and this is still work in progress but as promised here's the sources since this works okay right now. https://github.com/VinsCool/POKEY-Frequencies-Calculator/ Please don't mind the large block of commented out code, this was the older and less good attempt, so that will be deleted eventually. I simply keep it for reference until I don't need it anymore. This works on Windows and Linux now, no idea for macOS. 2 Quote Link to comment Share on other sites More sharing options...
VinsCool Posted March 7, 2022 Share Posted March 7, 2022 Good news everyone! My calculator can now generate Distortion C tables (work in progress). So far, only Distortion C, 64khz and Buzzy tones has been added into the table generation, but despite the loose approach I took for the calculations, I think the results speak for themselves: Test!!! Generated Distortion C Buzzy 64khz table... ---------------------------------------------------- $0,$0,$0,$0,$0,$0,$0,$0,$F2,$E6,$D7,$CB, $BF,$B6,$AA,$A1,$98,$8F,$89,$80,$7A,$71,$6B,$65, $5F,$5C,$56,$50,$4D,$47,$44,$41,$3E,$38,$35,$32, $2F,$2F,$29,$29,$26,$23,$20,$20,$20,$1A,$1A,$1A, $17,$17,$14,$14,$11,$11,$11,$11,$11,$B,$B,$B, $B,$B,$B,$8, ---------------------------------------------------- This is a perfect match to my own Buzzy table I had made by hand, except this time I only input 2 parameters: the A-4 tuning and the machine region! Based on this pattern this is incredibly motivating, so let's get all the other ones done using the same approach now! 3 Quote Link to comment Share on other sites More sharing options...
VinsCool Posted March 8, 2022 Share Posted March 8, 2022 My calculator can now generate tables for the following: Distortion 2 (All modes except 15khz since it barely has any useful pitches) Distortion A (All modes) Distortion C (All modes, including unique tables for Buzzies, Gritties and Unstables) Here's the tables using the best tuning compromise I had figured out some time ago: Spoiler File generated using POKEY Frequencies Calculator v0.1 ---------------------------------------------------- A-4 Tuning = 444.90 Hz Machine region = NTSC ---------------------------------------------------- Test!!! Generated Distortion 2 64khz table... ---------------------------------------------------- $3E,$3A,$37,$33,$30,$2E,$2B,$29,$26,$24,$22,$20 $1F,$1C,$1B,$19,$18,$16,$15,$14,$13,$12,$10,$10 $0F,$0E,$0D,$0C,$0B,$0B,$0A,$09,$09,$08,$08,$07 $07,$06,$06,$06,$05,$05,$05,$04,$04,$04,$03,$03 $03,$03,$02,$02,$02,$02,$02,$02,$01,$01,$01,$01 $01,$01,$01,$01 ---------------------------------------------------- Test!!! Generated Distortion 2 15khz table... Nah just kidding! ---------------------------------------------------- Test!!! Generated Distortion 2 1.79mhz table... ---------------------------------------------------- $D6,$CA,$BE,$B4,$A9,$A0,$96,$8E,$85,$7E,$76,$70 $69,$63,$5D,$58,$53,$4E,$49,$45,$41,$3D,$39,$36 $33,$2F,$2D,$2A,$27,$25,$23,$20,$1E,$1C,$1A,$19 $17,$16,$14,$13,$12,$10,$0F,$0E,$0D,$0C,$0B,$0A $0A,$09,$08,$07,$07,$06,$06,$05,$05,$04,$04,$03 $03,$02,$02,$02 ---------------------------------------------------- Test!!! Generated Distortion 2 16-bit table... ---------------------------------------------------- 16-bit MSB $03,$03,$03,$02,$02,$02,$02,$02,$02,$02,$01,$01 $01,$01,$01,$01,$01,$01,$01,$01,$01,$00,$00,$00 $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00 $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00 $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00 $00,$00,$00,$00 16-bit LSB $62,$31,$03,$D7,$AE,$87,$62,$40,$1F,$00,$E3,$C7 $AD,$95,$7E,$68,$53,$40,$2E,$1C,$0C,$FD,$EE,$E0 $D3,$C7,$BB,$B1,$A6,$9D,$93,$8B,$82,$7B,$73,$6D $66,$60,$5A,$55,$50,$4B,$46,$42,$3E,$3A,$36,$33 $30,$2C,$2A,$27,$24,$22,$20,$1D,$1B,$19,$17,$16 $14,$13,$11,$10 ---------------------------------------------------- Test!!! Generated Distortion A 64khz table... ---------------------------------------------------- $F1,$E3,$D6,$CA,$BF,$B4,$AA,$A0,$97,$8F,$87,$7F $78,$71,$6B,$65,$5F,$5A,$54,$50,$4B,$47,$43,$3F $3B,$38,$35,$32,$2F,$2C,$2A,$27,$25,$23,$21,$1F $1D,$1C,$1A,$18,$17,$16,$14,$13,$12,$11,$10,$0F $0E,$0D,$0C,$0C,$0B,$0A,$0A,$09,$09,$08,$07,$07 $07,$06,$06,$05 ---------------------------------------------------- Test!!! Generated Distortion A 15khz table... ---------------------------------------------------- $EC,$DF,$D2,$C7,$BB,$B1,$A7,$9D,$95,$8C,$84,$7D $76,$6F,$69,$63,$5D,$58,$53,$4E,$4A,$46,$42,$3E $3A,$37,$34,$31,$2E,$2B,$29,$27,$24,$22,$20,$1E $1D,$1B,$19,$18,$17,$15,$14,$13,$12,$11,$10,$0F $0E,$0D,$0C,$0B,$0B,$0A,$09,$09,$08,$08,$07,$07 $06,$06,$06,$05 ---------------------------------------------------- Test!!! Generated Distortion A 1.79mhz table... ---------------------------------------------------- $CF,$C4,$B8,$AE,$A4,$9A,$92,$89,$81,$7A,$73,$6C $66,$60,$5A,$55,$50,$4B,$47,$43,$3F,$3B,$37,$34 $31,$2E,$2B,$28,$26,$24,$21,$1F,$1D,$1B,$1A,$18 $16,$15,$14,$12,$11,$10,$0F,$0E,$0D,$0C,$0B,$0A $09,$08,$08,$07,$06,$06,$05,$05,$04,$04,$03,$03 $03,$02,$02,$02 ---------------------------------------------------- Test!!! Generated Distortion A 16-bit table... ---------------------------------------------------- 16-bit MSB $69,$63,$5E,$58,$53,$4F,$4A,$46,$42,$3E,$3B,$37 $34,$31,$2F,$2C,$29,$27,$25,$23,$21,$1F,$1D,$1B $1A,$18,$17,$16,$14,$13,$12,$11,$10,$0F,$0E,$0D $0D,$0C,$0B,$0B,$0A,$09,$09,$08,$08,$07,$07,$06 $06,$06,$05,$05,$05,$04,$04,$04,$04,$03,$03,$03 $03,$03,$02,$02 16-bit LSB $B0,$C1,$27,$DE,$E1,$2B,$B9,$87,$91,$D5,$4D,$F9 $D4,$DD,$10,$6B,$ED,$92,$59,$40,$45,$67,$A3,$F9 $67,$EB,$85,$32,$F3,$C6,$A9,$9D,$9F,$B0,$CE,$F9 $30,$72,$BF,$16,$76,$DF,$51,$CB,$4C,$D4,$64,$F9 $94,$35,$DC,$87,$37,$EC,$A5,$62,$23,$E7,$AE,$79 $47,$17,$EA,$C0 ---------------------------------------------------- Test!!! Generated Distortion C Gritty 64khz table... ---------------------------------------------------- $FF,$F3,$E4,$D8,$CD,$C0,$B5,$AB,$A2,$99,$91,$88 $7F,$79,$73,$6C,$66,$60,$5A,$55,$51,$4C,$48,$43 $3F,$3C,$39,$34,$33,$30,$2D,$2A,$28,$25,$24,$21 $1F,$1E,$1C,$1B,$19,$16,$16,$15,$12,$12,$12,$10 $0F,$0F,$0D,$0D,$0C,$0C,$0A,$0A,$0A,$0A,$07,$07 $07,$07,$06,$06 ---------------------------------------------------- Test!!! Generated Distortion C Buzzy 64khz table... ---------------------------------------------------- $00,$00,$00,$00,$00,$00,$00,$00,$F2,$E6,$D7,$CB $BF,$B6,$AA,$A1,$98,$8F,$89,$80,$7A,$71,$6B,$65 $5F,$5C,$56,$50,$4D,$47,$44,$41,$3E,$38,$35,$32 $2F,$2F,$29,$29,$26,$23,$20,$20,$20,$1A,$1A,$1A $17,$17,$14,$14,$11,$11,$11,$11,$11,$0B,$0B,$0B $0B,$0B,$0B,$08 ---------------------------------------------------- Test!!! Generated Distortion C Unstable 64khz table... ---------------------------------------------------- $00,$00,$00,$00,$00,$F4,$E5,$D6,$CC,$BD,$B8,$A9 $9F,$9A,$90,$8B,$81,$7C,$72,$6D,$63,$5E,$5E,$54 $4F,$4F,$45,$45,$40,$40,$36,$36,$31,$31,$31,$27 $27,$27,$22,$22,$22,$22,$18,$18,$18,$18,$18,$13 $13,$13,$13,$13,$13,$13,$13,$12,$09,$09,$09,$09 $09,$09,$09,$09 ---------------------------------------------------- Test!!! Generated Distortion C Buzzy 15khz table... ---------------------------------------------------- $BC,$B2,$A8,$9E,$96,$8D,$85,$7E,$76,$70,$6A,$64 $5D,$58,$53,$4E,$4B,$46,$42,$3E,$3A,$37,$34,$32 $2E,$2B,$29,$26,$25,$23,$21,$1F,$1C,$1B,$1A,$19 $17,$15,$14,$14,$12,$11,$10,$0F,$0F,$0D,$0C,$0C $0B,$0A,$0A,$0A,$08,$08,$07,$07,$06,$06,$06,$05 $05,$05,$05,$05 ---------------------------------------------------- Test!!! Generated Distortion C Gritty 1.79mhz table... ---------------------------------------------------- $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$F9,$EB $DE,$D0,$C6,$BB,$AF,$A5,$9A,$93,$8A,$82,$7B,$73 $6D,$66,$61,$5A,$55,$52,$4B,$48,$43,$3F,$3C,$37 $34,$31,$2D,$2B,$28,$27,$25,$22,$21,$1E,$1C,$19 $18,$16,$16,$13,$12,$12,$0F,$0F,$0D,$0D,$0C,$0A $0A,$09,$09,$07 ---------------------------------------------------- Test!!! Generated Distortion C Buzzy 1.79mhz table... ---------------------------------------------------- $00,$00,$00,$00,$00,$F8,$E9,$E0,$D1,$C5,$B9,$AD $A4,$9B,$95,$89,$80,$7A,$71,$6E,$68,$62,$5C,$53 $50,$4D,$4A,$44,$3E,$3B,$35,$35,$32,$2F,$2C,$26 $26,$23,$23,$20,$1D,$1D,$1D,$17,$17,$14,$14,$11 $11,$11,$0E,$0E,$0E,$0E,$0E,$08,$08,$08,$08,$08 $08,$05,$05,$05 ---------------------------------------------------- Test!!! Generated Distortion C Unstable 1.79mhz table... ---------------------------------------------------- $00,$00,$F6,$E7,$D8,$D3,$C4,$BA,$AB,$A6,$9C,$8D $88,$7E,$79,$6F,$6A,$6A,$60,$5B,$51,$51,$4C,$42 $42,$3D,$3D,$33,$33,$33,$2E,$2E,$24,$24,$24,$1F $1F,$1F,$1F,$1F,$15,$15,$15,$15,$10,$10,$10,$10 $10,$10,$10,$10,$10,$0F,$06,$06,$06,$06,$06,$06 $06,$06,$06,$06 ---------------------------------------------------- Test!!! Generated Distortion C Gritty 16-bit table... ---------------------------------------------------- 16-bit MSB $0E,$0D,$0C,$0B,$0B,$0A,$09,$09,$08,$08,$07,$07 $07,$06,$06,$05,$05,$05,$04,$04,$04,$04,$03,$03 $03,$03,$03,$02,$02,$02,$02,$02,$02,$02,$01,$01 $01,$01,$01,$01,$01,$01,$01,$01,$01,$01,$00,$00 $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00 $00,$00,$00,$00 16-bit LSB $11,$47,$87,$D3,$29,$89,$F1,$61,$DA,$5B,$E3,$71 $05,$A0,$40,$E6,$91,$41,$F5,$AD,$69,$2A,$EE,$B5 $7F,$4C,$1C,$EF,$C5,$9D,$77,$53,$31,$11,$F3,$D7 $BC,$A4,$8A,$74,$5F,$4B,$38,$26,$15,$05,$F6,$E8 $DB,$CD,$C3,$B8,$AC,$A2,$97,$90,$87,$7F,$78,$70 $6A,$63,$5E,$57 ---------------------------------------------------- Test!!! Generated Distortion C Buzzy 16-bit table... ---------------------------------------------------- 16-bit MSB $2A,$27,$25,$23,$21,$1F,$1D,$1C,$1A,$19,$17,$16 $15,$13,$12,$11,$10,$0F,$0E,$0E,$0D,$0C,$0B,$0B $0A,$09,$09,$08,$08,$07,$07,$07,$06,$06,$05,$05 $05,$04,$04,$04,$04,$03,$03,$03,$03,$03,$02,$02 $02,$02,$02,$02,$02,$01,$01,$01,$01,$01,$01,$01 $01,$01,$01,$01 16-bit LSB $41,$E3,$A3,$87,$89,$A6,$E1,$31,$9C,$1F,$B7,$5E $1D,$EE,$CE,$C0,$C1,$D1,$ED,$15,$4C,$8C,$D8,$2D $8B,$F2,$65,$DE,$5D,$E5,$73,$07,$A1,$41,$E7,$93 $42,$F7,$AF,$6A,$2B,$EF,$B6,$80,$4D,$1D,$F0,$C6 $9F,$78,$54,$30,$12,$F4,$D6,$BE,$A3,$8B,$76,$5E $4C,$37,$28,$13 ---------------------------------------------------- Test!!! Generated Distortion C Unstable 16-bit table... ---------------------------------------------------- 16-bit MSB $46,$42,$3E,$3B,$37,$34,$31,$2F,$2C,$29,$27,$25 $23,$21,$1F,$1D,$1B,$1A,$18,$17,$16,$14,$13,$12 $11,$10,$0F,$0E,$0D,$0D,$0C,$0B,$0B,$0A,$09,$09 $08,$08,$07,$07,$06,$06,$06,$05,$05,$05,$04,$04 $04,$04,$03,$03,$03,$03,$03,$02,$02,$02,$02,$02 $02,$02,$01,$01 16-bit LSB $71,$7F,$C4,$3B,$E9,$C9,$D1,$01,$5E,$E3,$8B,$51 $35,$3C,$5C,$9A,$F1,$61,$E5,$7D,$29,$EE,$C2,$A5 $97,$98,$A8,$C7,$F5,$2D,$6F,$BB,$11,$71,$DB,$4F $C8,$46,$CE,$60,$F7,$93,$34,$DA,$85,$35,$EA,$A4 $63,$1D,$E1,$AF,$78,$46,$19,$EC,$BF,$97,$74,$4C $2E,$0B,$ED,$D4 ---------------------------------------------------- And here's the standard 440hz NTSC for comparison's sake: Spoiler File generated using POKEY Frequencies Calculator v0.1 ---------------------------------------------------- A-4 Tuning = 440.00 Hz Machine region = NTSC ---------------------------------------------------- Test!!! Generated Distortion 2 64khz table... ---------------------------------------------------- $3E,$3B,$37,$34,$31,$2E,$2C,$29,$27,$24,$22,$20 $1F,$1D,$1B,$1A,$18,$17,$15,$14,$13,$12,$11,$10 $0F,$0E,$0D,$0C,$0C,$0B,$0A,$0A,$09,$08,$08,$07 $07,$06,$06,$06,$05,$05,$05,$04,$04,$04,$03,$03 $03,$03,$03,$02,$02,$02,$02,$02,$01,$01,$01,$01 $01,$01,$01,$01 ---------------------------------------------------- Test!!! Generated Distortion 2 15khz table... Nah just kidding! ---------------------------------------------------- Test!!! Generated Distortion 2 1.79mhz table... ---------------------------------------------------- $D9,$CC,$C1,$B5,$AB,$A1,$98,$8F,$87,$7F,$77,$71 $6A,$64,$5E,$58,$54,$4F,$4A,$46,$42,$3E,$39,$36 $33,$30,$2D,$2A,$28,$25,$23,$21,$1F,$1D,$1A,$19 $18,$16,$15,$13,$12,$11,$10,$0E,$0D,$0C,$0B,$0B $0A,$09,$08,$08,$07,$06,$06,$05,$05,$04,$04,$03 $03,$03,$02,$02 ---------------------------------------------------- Test!!! Generated Distortion 2 16-bit table... ---------------------------------------------------- 16-bit MSB $03,$03,$03,$02,$02,$02,$02,$02,$02,$02,$01,$01 $01,$01,$01,$01,$01,$01,$01,$01,$01,$00,$00,$00 $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00 $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00 $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00 $00,$00,$00,$00 16-bit LSB $6C,$3A,$0B,$DF,$B6,$8E,$69,$47,$25,$06,$E8,$CD $B2,$9A,$82,$6C,$57,$44,$31,$20,$0F,$FF,$F0,$E3 $D6,$C9,$BE,$B2,$A8,$9E,$95,$8C,$84,$7C,$74,$6E $67,$61,$5B,$55,$51,$4C,$47,$43,$3F,$3B,$36,$33 $30,$2D,$2A,$27,$25,$22,$20,$1E,$1C,$1A,$17,$16 $15,$13,$12,$10 ---------------------------------------------------- Test!!! Generated Distortion A 64khz table... ---------------------------------------------------- $F3,$E6,$D9,$CC,$C1,$B6,$AC,$A2,$99,$90,$88,$80 $79,$72,$6C,$66,$60,$5B,$55,$51,$4C,$48,$44,$40 $3C,$39,$35,$32,$2F,$2D,$2A,$28,$25,$23,$21,$1F $1E,$1C,$1A,$19,$17,$16,$15,$13,$12,$11,$10,$0F $0E,$0D,$0D,$0C,$0B,$0A,$0A,$09,$09,$08,$08,$07 $07,$06,$06,$05 ---------------------------------------------------- Test!!! Generated Distortion A 15khz table... ---------------------------------------------------- $EF,$E2,$D5,$C9,$BE,$B3,$A9,$9F,$96,$8E,$86,$7E $77,$70,$6A,$64,$5E,$59,$54,$4F,$4B,$46,$42,$3F $3B,$38,$34,$31,$2F,$2C,$29,$27,$25,$23,$21,$1F $1D,$1B,$1A,$18,$17,$15,$14,$13,$12,$11,$10,$0F $0E,$0D,$0C,$0C,$0B,$0A,$0A,$09,$08,$08,$07,$07 $07,$06,$06,$05 ---------------------------------------------------- Test!!! Generated Distortion A 1.79mhz table... ---------------------------------------------------- $D2,$C6,$BA,$B0,$A6,$9C,$93,$8B,$83,$7B,$74,$6D $67,$61,$5B,$56,$51,$4C,$48,$43,$3F,$3C,$38,$35 $31,$2E,$2C,$29,$26,$24,$22,$20,$1E,$1C,$1A,$18 $17,$15,$14,$12,$11,$10,$0F,$0E,$0D,$0C,$0B,$0A $09,$09,$08,$07,$07,$06,$05,$05,$04,$04,$03,$03 $03,$02,$02,$02 ---------------------------------------------------- Test!!! Generated Distortion A 16-bit table... ---------------------------------------------------- 16-bit MSB $6A,$64,$5F,$59,$54,$50,$4B,$47,$43,$3F,$3B,$38 $35,$32,$2F,$2C,$2A,$28,$25,$23,$21,$1F,$1D,$1C $1A,$19,$17,$16,$15,$13,$12,$11,$10,$0F,$0E,$0E $0D,$0C,$0B,$0B,$0A,$09,$09,$08,$08,$07,$07,$07 $06,$06,$05,$05,$05,$04,$04,$04,$04,$03,$03,$03 $03,$03,$02,$02 16-bit LSB $DD,$DD,$33,$DB,$D0,$0D,$8E,$50,$4F,$88,$F6,$99 $6B,$6B,$96,$EA,$64,$03,$C4,$A5,$A4,$C0,$F8,$49 $B2,$32,$C8,$72,$2F,$FE,$DE,$CF,$CF,$DD,$F8,$21 $55,$96,$E0,$35,$94,$FB,$6C,$E4,$64,$EB,$79,$0D $A7,$47,$ED,$97,$46,$FA,$B2,$6E,$2E,$F2,$B9,$83 $50,$20,$F3,$C8 ---------------------------------------------------- Test!!! Generated Distortion C Gritty 64khz table... ---------------------------------------------------- $FF,$F6,$E7,$D9,$CD,$C3,$B7,$AC,$A3,$99,$91,$8A $82,$79,$73,$6C,$66,$61,$5B,$55,$51,$4C,$48,$43 $3F,$3C,$39,$37,$33,$30,$2D,$2A,$28,$25,$24,$21 $1F,$1E,$1C,$1B,$19,$16,$16,$15,$15,$12,$12,$10 $0F,$0F,$0D,$0D,$0C,$0C,$0A,$0A,$0A,$0A,$07,$07 $07,$07,$06,$06 ---------------------------------------------------- Test!!! Generated Distortion C Buzzy 64khz table... ---------------------------------------------------- $00,$00,$00,$00,$00,$00,$00,$00,$F5,$E6,$DA,$CE $C5,$B6,$AD,$A1,$9B,$92,$89,$80,$7A,$74,$6E,$65 $62,$5C,$56,$50,$4D,$47,$44,$41,$3E,$38,$35,$32 $2F,$2F,$29,$29,$26,$23,$23,$20,$20,$1A,$1A,$1A $17,$17,$14,$14,$14,$11,$11,$11,$11,$11,$0B,$0B $0B,$0B,$0B,$08 ---------------------------------------------------- Test!!! Generated Distortion C Unstable 64khz table... ---------------------------------------------------- $00,$00,$00,$00,$00,$F4,$E5,$D6,$CC,$BD,$B8,$AE $9F,$9A,$90,$8B,$81,$7C,$72,$6D,$63,$5E,$5E,$54 $4F,$4F,$45,$45,$40,$40,$36,$36,$31,$31,$31,$27 $27,$27,$22,$22,$22,$22,$18,$18,$18,$18,$18,$13 $13,$13,$13,$13,$13,$13,$13,$13,$09,$09,$09,$09 $09,$09,$09,$09 ---------------------------------------------------- Test!!! Generated Distortion C Buzzy 15khz table... ---------------------------------------------------- $BF,$B4,$AA,$A0,$97,$8F,$87,$7F,$78,$71,$6B,$65 $5F,$5A,$55,$50,$4B,$47,$43,$3F,$3C,$38,$35,$32 $2F,$2D,$2A,$28,$25,$23,$21,$1F,$1E,$1C,$1A,$19 $17,$16,$14,$14,$12,$11,$10,$0F,$0F,$0D,$0C,$0C $0B,$0A,$0A,$0A,$08,$08,$07,$07,$07,$06,$06,$05 $05,$05,$05,$05 ---------------------------------------------------- Test!!! Generated Distortion C Gritty 1.79mhz table... ---------------------------------------------------- $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$FC,$EE $E1,$D2,$C7,$BB,$B1,$A8,$9D,$94,$8B,$84,$7C,$75 $6D,$67,$61,$5D,$57,$52,$4E,$48,$43,$40,$3C,$39 $36,$31,$30,$2B,$2A,$27,$25,$22,$21,$1E,$1C,$1B $19,$16,$16,$13,$13,$12,$0F,$0F,$0F,$0D,$0C,$0C $0A,$09,$09,$09 ---------------------------------------------------- Test!!! Generated Distortion C Buzzy 1.79mhz table... ---------------------------------------------------- $00,$00,$00,$00,$00,$FE,$EF,$E0,$D4,$C8,$BC,$B3 $A7,$9E,$95,$8C,$86,$7D,$77,$6E,$68,$62,$5C,$59 $53,$4D,$4A,$44,$41,$3B,$3B,$35,$32,$2F,$2C,$2C $26,$23,$23,$20,$1D,$1D,$1D,$17,$17,$17,$14,$14 $11,$11,$0E,$0E,$0E,$0E,$0E,$08,$08,$08,$08,$08 $08,$05,$05,$05 ---------------------------------------------------- Test!!! Generated Distortion C Unstable 1.79mhz table... ---------------------------------------------------- $00,$00,$F6,$E7,$E2,$D3,$C4,$BA,$AB,$A6,$9C,$97 $8D,$7E,$79,$79,$6F,$6A,$60,$5B,$5B,$51,$4C,$4C $42,$3D,$3D,$3D,$33,$33,$2E,$2E,$2E,$24,$24,$24 $1F,$1F,$1F,$1F,$15,$15,$15,$15,$15,$10,$10,$10 $10,$10,$10,$10,$10,$0F,$06,$06,$06,$06,$06,$06 $06,$06,$06,$06 ---------------------------------------------------- Test!!! Generated Distortion C Gritty 16-bit table... ---------------------------------------------------- 16-bit MSB $0E,$0D,$0C,$0B,$0B,$0A,$0A,$09,$08,$08,$07,$07 $07,$06,$06,$05,$05,$05,$05,$04,$04,$04,$03,$03 $03,$03,$03,$02,$02,$02,$02,$02,$02,$02,$01,$01 $01,$01,$01,$01,$01,$01,$01,$01,$01,$01,$00,$00 $00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00,$00 $00,$00,$00,$00 16-bit LSB $3A,$6C,$AC,$F5,$49,$A7,$0C,$7B,$F4,$71,$F9,$86 $18,$B2,$51,$F7,$A1,$50,$02,$BA,$75,$35,$F9,$C0 $8A,$57,$25,$F8,$CD,$A4,$7D,$59,$37,$17,$F9,$DD $C2,$A8,$8F,$78,$63,$4E,$3B,$29,$18,$08,$F9,$EB $DE,$CF,$C4,$B8,$AE,$A5,$9A,$91,$88,$81,$79,$72 $6A,$64,$5E,$5A ---------------------------------------------------- Test!!! Generated Distortion C Buzzy 16-bit table... ---------------------------------------------------- 16-bit MSB $2A,$28,$26,$23,$21,$20,$1E,$1C,$1A,$19,$17,$16 $15,$14,$13,$11,$10,$0F,$0F,$0E,$0D,$0C,$0B,$0B $0A,$0A,$09,$08,$08,$07,$07,$07,$06,$06,$05,$05 $05,$05,$04,$04,$04,$03,$03,$03,$03,$03,$02,$02 $02,$02,$02,$02,$02,$01,$01,$01,$01,$01,$01,$01 $01,$01,$01,$01 16-bit LSB $BC,$55,$12,$ED,$E9,$00,$32,$85,$E7,$64,$F9,$A0 $59,$27,$07,$F3,$F1,$FE,$14,$3F,$70,$AD,$F9,$4B $A9,$10,$80,$F6,$75,$FA,$85,$1C,$B3,$53,$F9,$A2 $51,$06,$BB,$79,$37,$FB,$BF,$89,$56,$26,$F9,$CF $A5,$81,$5A,$39,$18,$FA,$DC,$C1,$A9,$91,$79,$64 $4F,$3D,$2B,$19 ---------------------------------------------------- Test!!! Generated Distortion C Unstable 16-bit table... ---------------------------------------------------- 16-bit MSB $47,$43,$3F,$3B,$38,$35,$32,$2F,$2C,$2A,$27,$25 $23,$21,$1F,$1D,$1C,$1A,$19,$17,$16,$15,$13,$12 $11,$10,$0F,$0E,$0E,$0D,$0C,$0B,$0B,$0A,$09,$09 $08,$08,$07,$07,$07,$06,$06,$05,$05,$05,$04,$04 $04,$04,$03,$03,$03,$03,$03,$02,$02,$02,$02,$02 $02,$02,$01,$01 16-bit LSB $3E,$38,$73,$E5,$89,$5F,$58,$88,$E0,$5B,$F9,$BA $9E,$96,$B6,$EF,$41,$AC,$26,$BE,$6F,$2A,$F9,$DC $CE,$C5,$D5,$F4,$1D,$50,$8D,$D9,$34,$8F,$F9,$6D $E6,$5F,$E7,$74,$0B,$A2,$43,$E9,$94,$44,$F9,$B3 $72,$2C,$F0,$B4,$82,$4B,$1E,$F1,$C4,$A1,$79,$56 $38,$10,$F2,$D4 ---------------------------------------------------- I also have updated it to split the data dump into 2 files. frequencies.txt for all the unique AUDF pitches that can be calculated right now, and tables.txt for tables generated with the tool, that can then be used by anyone for their tools, use for RMT2LZSS, etc I have not been able to make a static Windows build so I still have included the bloat .dll files. Static Linux build also included this time. POKEY Frequencies Calculator v01-2.zip All code available on my github, I have not yet made a proper release but this shouldn't take too much longer now 2 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.