diff options
author | Alex AUVOLAT <alex.auvolat@ens.fr> | 2013-11-08 15:51:54 +0100 |
---|---|---|
committer | Alex AUVOLAT <alex.auvolat@ens.fr> | 2013-11-08 15:51:54 +0100 |
commit | 05749abf8efdcaae6afd9f3dd087df475e5e93ad (patch) | |
tree | 82bbadb87137519a51d633fe5c33766748448d91 /tests/nadder.mj | |
parent | e78802739247d120d6694993675e5a2a1cd6debb (diff) | |
download | SystDigit-Projet-05749abf8efdcaae6afd9f3dd087df475e5e93ad.tar.gz SystDigit-Projet-05749abf8efdcaae6afd9f3dd087df475e5e93ad.zip |
[WIP] Change dumb netlist format in scheduler and simulator.
Diffstat (limited to 'tests/nadder.mj')
-rw-r--r-- | tests/nadder.mj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/nadder.mj b/tests/nadder.mj index b75a83c..0e24ca4 100644 --- a/tests/nadder.mj +++ b/tests/nadder.mj @@ -14,6 +14,6 @@ adder<n>(a:[n], b:[n], c_in) = (o:[n], c_out) where end if end where -main(a:[4], b:[4]) = (o:[4], c) where - (o, c) = adder<4>(a,b,0) +main(a:[2], b:[2]) = (o:[2], c) where + (o, c) = adder<2>(a,b,0) end where |