diff options
Diffstat (limited to 'tp1/test/fulladder.net')
-rw-r--r-- | tp1/test/fulladder.net | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/tp1/test/fulladder.net b/tp1/test/fulladder.net new file mode 100644 index 0000000..b2271c2 --- /dev/null +++ b/tp1/test/fulladder.net @@ -0,0 +1,12 @@ +INPUT a, b, c +OUTPUT s, r +VAR + _l_1, _l_3, _l_4, _l_5, a, b, c, r, s +IN +r = OR _l_3 _l_5 +s = XOR _l_1 c +_l_1 = XOR a b +_l_3 = AND a b +_l_4 = XOR a b +_l_5 = AND _l_4 c + |