| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| ROM-Info.zip | 2010-02-20 | 400.4 kB | |
| README.txt | 2010-02-16 | 1.4 kB | |
| Totals: 2 Items | 401.8 kB | 0 | |
This archive contains:
Preset (prs), Instrument (ins), Arpeggio (arp) and Riff (rff) names of all(?) commercially available SIMM Modules for the PXK synthesizers from E-mu.
prodatum/
these files are for (future) use with prodatum
(not needed now (v0.41), but maybe useful in the future)
plain/
same information but with line breaks and .txt file extension for use with DAWs ("preset by name selection") or whatever.
################################################################################
ROM ID to ROM Name conversion (sorry for the bad formatting:):
const char* ROM::name() const
{
pmesg(100, "name(code: %d)\n", id);
switch (id)
{
case 0:
return "User";
case 2:
return "XTREM";
case 3:
return "Audity";
case 4:
return "Composer";
case 5:
return "Protozoa";
case 6:
return "B3";
case 7:
return "XL-1";
case 8:
return "ZR-76";
case 9:
return "World Exp.";
case 10:
return "Orch 1";
case 11:
return "Orch 2";
case 13:
case 15:
return "Mo'Phatt";
case 14:
return "XL-2";
case 16:
return "Ensoniq";
case 17:
return "PROM1";
case 18:
return "Vintage";
case 19:
return "DRUM";
case 64:
return "Holy Grail";
case 65:
return "TSCY";
case 66:
return "Siedlaczek";
case 67:
return "Beat";
default:
static char buf[20];
snprintf(buf, 20, "Unknown (%d)", id);
return buf;
}
}
vvd_