diff options
author | root <root@no.no.james.local> | 2018-05-17 18:20:05 +0100 |
---|---|---|
committer | root <root@no.no.james.local> | 2018-05-17 18:20:05 +0100 |
commit | 197c9ef49989a2900688e19a7e66e3b5eae08b2f (patch) | |
tree | 1c35fe7fb4ae0d265d46027f406be42c625de3d6 | |
parent | 85b8cf5877ed7082564a47d94917ca7151977625 (diff) | |
download | rob_spdif-197c9ef49989a2900688e19a7e66e3b5eae08b2f.tar.gz rob_spdif-197c9ef49989a2900688e19a7e66e3b5eae08b2f.tar.bz2 rob_spdif-197c9ef49989a2900688e19a7e66e3b5eae08b2f.zip |
only mute if all mute
-rw-r--r-- | spdif.vhd | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -118,7 +118,7 @@ begin mute => mute3 ); - mute <= mute1 or mute2 or mute3; + mute <= mute1 and mute2 and mute3; n_mute_out <= not mute; n_stby_out <= not mute; |