diff options
author | Andrew Zonenberg <azonenberg@drawersteak.com> | 2017-02-16 07:48:44 -0800 |
---|---|---|
committer | Andrew Zonenberg <azonenberg@drawersteak.com> | 2017-02-16 07:48:44 -0800 |
commit | 2eabe43efa59f7264fec9252a79f937c6bd58a31 (patch) | |
tree | 6d0cb63017af1ee536d2e7d8839b7422c4f3189a /kernel/celltypes.h | |
parent | 6fed2dc996a57b0f7c4205e1d76da865dd410982 (diff) | |
parent | cf25dc9ce7216f740611d802eba6f978d18899e3 (diff) | |
download | yosys-2eabe43efa59f7264fec9252a79f937c6bd58a31.tar.gz yosys-2eabe43efa59f7264fec9252a79f937c6bd58a31.tar.bz2 yosys-2eabe43efa59f7264fec9252a79f937c6bd58a31.zip |
Merge https://github.com/cliffordwolf/yosys
Diffstat (limited to 'kernel/celltypes.h')
-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_") |