Help for this page

Select Code to Download


  1. or download this
    XOR_portmap file is as follows
    m : XOR2 port map (A=> in1, B=> enable_c, Y => output);
    
  2. or download this
    uut_names file is as follows
    M1
    M2
    M3
    
  3. or download this
    nets file is as follows
    a_c
    b_c
    c_c
    
  4. or download this
    enabled_nets file is as follows
    a_e
    b_e
    c_e
    
  5. or download this
    use strict;
    use warnings;
    ...
    close (IN3);
    close (IN4);
    close (OUT);
    
  6. or download this
    M1
     : XOR2 port map (A=> a_c
    , B=> enable_c, Y => a_e
    );
    
  7. or download this
    M1 : XOR2 port map (A=> a_c, B=> enable_c, Y => a_e);
    M2 : XOR2 port map (A=> b_c, B=> enable_c, Y => b_e);
    M3 : XOR2 port map (A=> c_c, B=> enable_c, Y => c_e);