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