VOGONS

Common searches


Search results

Display options

Re: Weekly update

The Adlib and MT-32 were both released in late 1987. The Adlib in August, and the MT-32 I'm unsure of except late 87' prior to September. The first revision of the MT-32 manual(1.01) was in September, which leaves July or August but I'm pretty sure it was also released in August. Sound Blaster was …

Re: Driver source code available

LAPC-I doc from quest studios: http://www.queststudios.com/roland/docs/lapc1.txt As for the time involved, captvk is the one who has the cm-64 and he'd be doing the extraction. What's being asked is to describe what it was you were refering to about tricks to getting clean samples.

Re: Driver source code available

Um, the cm-64 is a combination of a cm-32l + u110 in one module. The u110 part can be cascaded off of the cm-32l part for a sort of 64 note polyphony, but that doesn't mean you can't just access the cm-32l part. I ran lasynth and saw they only had mt-32 or d-110 in the pulldown menu but I'll bet …

Re: Driver source code available

Function not matching description? "Editor/Librarian A Windows 3x/9x/ME based patch editor and librarian for the MT-32, LAPC-1, CM-32L, CM-64, and D-110 synths. Saves and loads standard SysEx banks. " ps. quest's link is dead, so will have to find it someplace else. Perhaps put up the copy you have? …

Re: Quick Status Update

Did you get my email to your hotmail account? ps. Describe the non ripping method you mentioned in the 'well, I lost my ebay bids.' thread for CapTVK. He has a CM-64 that's he's willing to pull out of storage and dump 'for the cause'. He asked what to do in the same thread.

Re: Not handling expression control?

You should have given the link to the guys site containing the download, because he also has a links page and... that's right, you know what's coming, another site with a copy of the d-50 manual!:) http://w3.to/d50ve I actually had run into this page more than a few times but never noticed it had …

Re: Not handling expression control?

basic and advanced d-50 manuals, english & french versions: http://membres.lycos.fr/jeanlouispy/D50.htm Though, the first d-50 pdf is a combination of the two + more?; and, the pdf of the english version of the advanced manual is corrupt(damn frenchies:)) that acrobat 5 couldn't fix(it froze …

Re: Not handling expression control?

Though I did find lillchips on my own from searching on google, if you grab the mt-32 owners manual from quest, you'll find lilchips txt file banners in the zip. I searched with generic title words: roland, manual, owners manual, midi implimentation, the models: mt-32 cm-32l, d-110, d-50, etc, and …

Re: Not handling expression control?

Found a sharper easier all in one pdf version of the mt-32 owners manual here: http://www.planet-zero.org/wiki/index.php/mt-32 The lilchips/quest studio copy is a bunch of tiffs; one per page. Even better though, a more verbose d-110 manual: http://www.reasonsound.com/gear/gear_d_110.htm Still …

Re: well, I lost my ebay bids.

Or have canadacow describe the easier way he referred to, to get the samples. There is another chunk of data I'd be interested in, though I imagine the dumping method would be needed to grab it, which is the controller rom. Since you & vlad already put together a dumper, perhaps you guys could do it …

Re: Not handling expression control?

I havn't tested this but here's a preliminary active sense implementation. void ActiveSense(void) { if (flag) { timeout++; if (timeout>300) { flag = 0; int channel, poly; // midi doc says should only turn off channels started by note on // currently turns them all off, though this is accurate by …

Re: Not handling expression control?

Two other documented mt-32 commands aren't currently implemented; resets all controllers and active sensing. here's resets all controllers: case 0x79: // resets all controllers mchan[chan]->SetModulation(0); mchan[chan]->SetVolume(127); mchan[chan]->SetPan(64); mchan[chan]->SetExpression(127); mchan …

Re: Not handling expression control?

The volume formula from the microsoft ddk is for fine scale. http://www.borg.com/~jglatt/tech/midispec/vol.htm The mt-32 doesn't have controller 37, it only implemented coarse grain volume control (7). The coarse formula is '40 log (Volume/127) '. In inittables, the line where it sets amp & volt …

Page 39 of 41