1
0
mirror of https://github.com/UzixLS/zx-sizif-xxs.git synced 2025-07-19 07:11:28 +03:00

mixer: implement panning settings

This commit is contained in:
UzixLS
2021-06-18 22:34:17 +03:00
parent 1435f856b3
commit ca42c05ce6
3 changed files with 41 additions and 22 deletions

View File

@ -229,7 +229,7 @@ cpucontrol cpucontrol0(
/* MAGIC */
wire magic_mode, magic_map;
wire divmmc_en, joy_sinclair, rom_plus3, rom_alt48, ay_abc, ay_mono;
wire divmmc_en, joy_sinclair, rom_plus3, rom_alt48, mix_abc, mix_mono;
magic magic0(
.rst_n(usrrst_n),
.clk28(clk28),
@ -252,8 +252,8 @@ magic magic0(
.joy_sinclair(joy_sinclair),
.rom_plus3(rom_plus3),
.rom_alt48(rom_alt48),
.ay_abc(ay_abc),
.ay_mono(ay_mono),
.mix_abc(mix_abc),
.mix_mono(mix_mono),
.divmmc_en(divmmc_en)
);
@ -365,8 +365,8 @@ mixer mixer0(
.sd_r0(soundrive_r0),
.sd_r1(soundrive_r1),
.ay_abc(ay_abc),
.ay_mono(ay_mono),
.ay_abc(mix_abc),
.mono(mix_mono),
.dac_l(snd_l),
.dac_r(snd_r)