Search found 122 matches
- Sat Jan 17, 2015 8:15 pm
- Forum: Collaboration
- Topic: GENESology (or MDology?, depending)
- Replies: 2
- Views: 7497
GENESology (or MDology?, depending)
The SNES-style music remix community SNESology recently had a regime change and the new community manager asked if I was interested in leading a Genesis-style music offshoot, tentatively called "GENESology" (or MDology for non-Americans?). For now, I've accepted, and would very much like more experi...
- Sat Dec 27, 2014 5:50 pm
- Forum: Sound
- Topic: New Documentation: An authoritative reference on the YM2612
- Replies: 863
- Views: 777686
Would be very interesting to know how many cycles are needed for each type of register changes. I guess there'd be no other option than polling the state of the BUSY flag while counting cycles, right ? If I have to start counting cycles, then if byuu's higan and Nemesis's Exodus are any indication ...
- Wed Nov 26, 2014 7:14 pm
- Forum: Sound
- Topic: JAVASCRIPT YM2612~!!!
- Replies: 16
- Views: 18301
- Tue Nov 25, 2014 6:36 pm
- Forum: Announcement
- Topic: Don't forget what SpritesMind is
- Replies: 17
- Views: 33856
- Mon Nov 24, 2014 10:13 pm
- Forum: SGDK
- Topic: New XGM driver !
- Replies: 67
- Views: 35338
Re VGM programs - maybe get in contact with ValleyBell about it? I know he made an entire suite of command-line programs to manipulate VGMs, including an optimizer, and while I haven't touched it in a long time I myself previously started work on an updated version of VGMTool that would also be cros...
- Mon Oct 27, 2014 5:26 pm
- Forum: Sound
- Topic: SMPS status ?
- Replies: 11
- Views: 13024
- Fri Oct 24, 2014 5:41 am
- Forum: Tools
- Topic: Retro Graphics Toolkit
- Replies: 117
- Views: 92349
- Thu Oct 23, 2014 5:28 pm
- Forum: Sound
- Topic: SMPS status ?
- Replies: 11
- Views: 13024
- Mon Oct 20, 2014 6:03 pm
- Forum: Sound
- Topic: Using the CPU clock for musical timing.
- Replies: 11
- Views: 12513
- Thu Oct 16, 2014 3:06 am
- Forum: Blabla
- Topic: GEMS YouTube video
- Replies: 91
- Views: 72327
powerofrecall or r57shell - If either of you can provide or otherwise point me to either the spec or reliable example preset files of this "Artec FM" and/or GEMS PAT format, I can add YM2612-to-GEMS preset dumping to VGM2Pre :D A VGM made using a given preset file would also be appreciated so I can ...
- Tue Oct 14, 2014 5:43 pm
- Forum: SGDK
- Topic: "Out Run" Road movement. How?
- Replies: 10
- Views: 5486
I found the link back : http://www.extentofthejam.com/pseudo/ Funnily enough I was just reading that. I emailed Chris White whose blog you posted above and he sent me the link. Turns out I was on the right track and that's exactly what I need. Thanks! That's the Louis Gorenfeld pseudo-3D article I ...
- Tue Oct 14, 2014 5:19 am
- Forum: SGDK
- Topic: "Out Run" Road movement. How?
- Replies: 10
- Views: 5486
codeincomplete has a 4-part series on using Lou Gorenfeld's pseudo-3D procedures to create an Outrun-style racer in JavaScript; I'm pretty sure it's rather easy to port to another language. 

- Sun Oct 05, 2014 2:57 am
- Forum: Sound
- Topic: General guidelines on working with PSG/YM2612 natively
- Replies: 49
- Views: 39963
With MIDI almost no one does micro-tuning, so multiplying by 2^(1/12) to get the default frequencies for the 128 MIDI notes for these purposes is safe. I just don't understand what you said just right now. What I meant was almost no-one uses micro-tuning other than "equal temperament," so my functi...
- Sun Oct 05, 2014 2:17 am
- Forum: Sound
- Topic: General guidelines on working with PSG/YM2612 natively
- Replies: 49
- Views: 39963
function MIDI_noteToHz(n){ return 440*Math.pow(2,(n-69)/12); }; Wrong assumption that all 12 notes in octave are uniformly distributed. With MIDI almost no one does micro-tuning, so multiplying by 2^(1/12) to get the default frequencies for the 128 MIDI notes for these purposes is safe. @Count Symp...
- Sun Oct 05, 2014 1:37 am
- Forum: Sound
- Topic: General guidelines on working with PSG/YM2612 natively
- Replies: 49
- Views: 39963
I wrote up a couple of quick functions in JavaScript a while back for converting Hz to FNUM for both the PSG and YM, if you wanted to have that cheat sheet as a web page or something. function MIDI_noteToHz(n){ return 440*Math.pow(2,(n-69)/12); }; function MIDI_HzToNote(hz){ var div = hz/440.0; retu...