- or download this
XOR_portmap file is as follows
m : XOR2 port map (A=> in1, B=> enable_c, Y => output);
- or download this
uut_names file is as follows
M1
M2
M3
- or download this
nets file is as follows
a_c
b_c
c_c
- or download this
enabled_nets file is as follows
a_e
b_e
c_e
- or download this
use strict;
use warnings;
...
close (IN3);
close (IN4);
close (OUT);
- or download this
M1
: XOR2 port map (A=> a_c
, B=> enable_c, Y => a_e
);
- 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);