diff options
author | Clifford Wolf <clifford@clifford.at> | 2017-02-16 12:17:03 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2017-02-16 12:17:03 +0100 |
commit | e6d56d23b5a283dbb1d220e28168abf4c59c58c2 (patch) | |
tree | 4b48a8bfab2e8f1de1ae55cad2dd01787d66c4b7 /kernel | |
parent | 4fb800717101c65344fe78a365b8ae6ca0a90d9e (diff) | |
download | yosys-e6d56d23b5a283dbb1d220e28168abf4c59c58c2.tar.gz yosys-e6d56d23b5a283dbb1d220e28168abf4c59c58c2.tar.bz2 yosys-e6d56d23b5a283dbb1d220e28168abf4c59c58c2.zip |
Fix eval implementation of $_NOR_
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/celltypes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/celltypes.h b/kernel/celltypes.h index 04db5125e..8f31d0172 100644 --- a/kernel/celltypes.h +++ b/kernel/celltypes.h @@ -313,7 +313,7 @@ struct CellTypes if (type == "$_OR_") return const_or(arg1, arg2, false, false, 1); if (type == "$_NOR_") - return eval_not(const_and(arg1, arg2, false, false, 1)); + return eval_not(const_or(arg1, arg2, false, false, 1)); if (type == "$_XOR_") return const_xor(arg1, arg2, false, false, 1); if (type == "$_XNOR_") |