mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-24 13:18:56 +00:00
Renamed $_INV_ cell type to $_NOT_
This commit is contained in:
parent
bf486002d9
commit
f092b50148
19 changed files with 47 additions and 47 deletions
|
@ -20,12 +20,12 @@
|
|||
* The internal logic cell simulation library.
|
||||
*
|
||||
* This verilog library contains simple simulation models for the internal
|
||||
* logic cells ($_INV_ , $_AND_ , ...) that are generated by the default technology
|
||||
* logic cells ($_NOT_ , $_AND_ , ...) that are generated by the default technology
|
||||
* mapper (see "techmap.v" in this directory) and expected by the "abc" pass.
|
||||
*
|
||||
*/
|
||||
|
||||
module \$_INV_ (A, Y);
|
||||
module \$_NOT_ (A, Y);
|
||||
input A;
|
||||
output Y;
|
||||
assign Y = ~A;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue