summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroot <root@no.no.james.local>2018-05-17 18:20:05 +0100
committerroot <root@no.no.james.local>2018-05-17 18:20:05 +0100
commit197c9ef49989a2900688e19a7e66e3b5eae08b2f (patch)
tree1c35fe7fb4ae0d265d46027f406be42c625de3d6
parent85b8cf5877ed7082564a47d94917ca7151977625 (diff)
downloadrob_spdif-197c9ef49989a2900688e19a7e66e3b5eae08b2f.tar.gz
rob_spdif-197c9ef49989a2900688e19a7e66e3b5eae08b2f.tar.bz2
rob_spdif-197c9ef49989a2900688e19a7e66e3b5eae08b2f.zip
only mute if all mute
-rw-r--r--spdif.vhd2
1 files changed, 1 insertions, 1 deletions
diff --git a/spdif.vhd b/spdif.vhd
index e3016a1..0339bad 100644
--- a/spdif.vhd
+++ b/spdif.vhd
@@ -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;