diff options
Diffstat (limited to 'works/life/computer-organization-experiment/multiplexer_32_2.vhdl')
-rw-r--r-- | works/life/computer-organization-experiment/multiplexer_32_2.vhdl | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/works/life/computer-organization-experiment/multiplexer_32_2.vhdl b/works/life/computer-organization-experiment/multiplexer_32_2.vhdl index 563874d..1c7d626 100644 --- a/works/life/computer-organization-experiment/multiplexer_32_2.vhdl +++ b/works/life/computer-organization-experiment/multiplexer_32_2.vhdl @@ -8,13 +8,5 @@ end multiplexer_32_2; architecture behaviour of multiplexer_32_2 is begin - b: process is - begin - if S = '1' then - Y <= A1; - else - Y <= A0; - end if; - wait for 1 ps; - end process b; + Y <= A0 when S = '0' else A1; end behaviour; |