2022-03-06 17:31:03 +00:00
# Seta/Allumer X1-010
2023-09-12 04:29:14 +00:00
the X1-010 is a chip used by Seta (and Allumer) in the Seta 1 and 2 arcade boards.
2022-03-06 17:31:03 +00:00
2023-09-12 04:29:14 +00:00
it has 16 channels of wavetable sound with some support for 8-bit samples up to 128KB in length.
the sample frequency resolution is pretty bad in the low end though...
2022-03-06 17:31:03 +00:00
2023-09-12 04:29:14 +00:00
even though this chip has stereo output, no board (as far as we know) uses the two outputs that it has... instead, only one output is connected, effectively being used as a mono chip.
2022-03-06 17:31:03 +00:00
2023-09-15 07:47:41 +00:00
the chip also has some (complicated) hardware volume envelope capabilities, with half of its memory being usable for that purpose. the shape of a volume envelope is defined by user-provided 128× 16 waveforms.
2023-09-13 10:32:28 +00:00
2023-09-14 21:19:20 +00:00
the chip can store up to 32 sound waveforms and envelope waveforms at once.
2022-03-08 15:50:10 +00:00
2023-09-12 04:29:14 +00:00
this chip was the inspiration for Organya/PxTone (the former being used in a well-known game called Cave Story).
2022-03-08 15:50:10 +00:00
2023-09-11 00:34:13 +00:00
## effects
2022-03-06 17:31:03 +00:00
2023-06-25 07:05:30 +00:00
- `10xx` : **change wave.**
- `11xx` : **change envelope shape.** also wavetable.
2023-08-05 08:45:00 +00:00
- `17xx` : **toggle LEGACY sample mode.**
- **this effect exists only for compatibility reasons! its use is NOT recommented. use Sample type instruments instead.**
2023-06-25 07:05:30 +00:00
- `20xx` : **set PCM frequency.** range is `1` to `FF` .
- PCM frequency formula: `step * (clock / 8192)` .
- range is 1.95KHz to 498KHz if the chip clock is 16MHz.
- `22xx` : **set envelope mode.**
2022-03-06 17:31:03 +00:00
- bit 0 sets whether envelope will affect this channel.
2023-09-12 04:29:14 +00:00
- bit 1 sets whether envelope will run once instead of looping.
- bit 2 sets whether split mode is used. I don't know what it does.
2022-03-08 15:50:10 +00:00
- bit 3/5 sets whether the right/left shape will mirror the original one.
- bit 4/6 sets whether the right/left output will mirror the original one.
2023-06-25 07:05:30 +00:00
- `23xx` : **set envelope period.**
- `25xx` : **slide envelope period up.**
- `26xx` : **slide envelope period down.**
- `29xy` : **enable auto-envelope mode.**
2022-03-06 17:31:03 +00:00
- in this mode the envelope period is set to the channel's notes, multiplied by a fraction.
- `x` is the numerator.
- `y` is the denominator.
- if `x` or `y` are 0 this will disable auto-envelope mode.
2023-08-04 16:11:53 +00:00
2023-09-11 00:34:13 +00:00
## info
2023-08-04 16:11:53 +00:00
2023-09-11 04:57:46 +00:00
this chip uses the [X1-010 ](../4-instrument/x1_010.md ) instrument editor.