2022-04-05 23:18:14 +00:00
# Famicom Disk System
2023-06-25 07:05:30 +00:00
the Famicom Disk System is an expansion device for the Famicom (known as NES outside Japan), a popular console from the '80s.
2022-04-05 23:18:14 +00:00
as it name implies, it allowed people to play games on specialized floppy disks that could be rewritten on vending machines, therefore reducing the cost of ownership and manufacturing.
2022-04-08 20:34:13 +00:00
it also offers an additional 6-bit, 64-byte wavetable sound channel with (somewhat limited) FM capabilities, which is what Furnace supports.
2022-04-05 23:18:14 +00:00
# effects
2023-06-25 07:05:30 +00:00
- `10xx` : **change wave.**
- `11xx` : **set modulation depth.**
- `12xy` : **set modulation speed high byte and toggle on/off.**
- `x` is the toggle. a value of `1` turns on the modulator.
2022-04-05 23:18:14 +00:00
- `y` is the speed.
2023-06-25 07:05:30 +00:00
- `13xx` : **set modulation speed low byte.**
- `14xx` : **set modulator position.**
- `15xx` : **set modulator wave.**
2022-04-05 23:18:14 +00:00
- `xx` points to a wavetable. it should (preferably) have a height of 7 with the values mapping to:
- 0: +0
- 1: +1
- 2: +2
- 3: +3
- 4: reset
- 5: -3
- 6: -2
- 7: -1
2022-10-16 05:53:05 +00:00
- why is this mapping so unnatural? because that's how DefleMask does it (yeah, as you may have guessed this effect is mostly for compatibility reasons)...