diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-08-15 14:11:40 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-08-15 14:11:40 +0200 |
commit | f092b5014895dc5dc62b8103fcedf94cfa9f85a8 (patch) | |
tree | 2f09add560746030249fe333e551de2f113bccdb /manual/CHAPTER_StateOfTheArt | |
parent | bf486002d9a6d976b3d086700ccdcfb0fb70ba0b (diff) | |
download | yosys-f092b5014895dc5dc62b8103fcedf94cfa9f85a8.tar.gz yosys-f092b5014895dc5dc62b8103fcedf94cfa9f85a8.tar.bz2 yosys-f092b5014895dc5dc62b8103fcedf94cfa9f85a8.zip |
Renamed $_INV_ cell type to $_NOT_
Diffstat (limited to 'manual/CHAPTER_StateOfTheArt')
-rw-r--r-- | manual/CHAPTER_StateOfTheArt/simlib_yosys.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manual/CHAPTER_StateOfTheArt/simlib_yosys.v b/manual/CHAPTER_StateOfTheArt/simlib_yosys.v index a2df8f648..54c076614 100644 --- a/manual/CHAPTER_StateOfTheArt/simlib_yosys.v +++ b/manual/CHAPTER_StateOfTheArt/simlib_yosys.v @@ -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 "stdcells.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; |