diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-10-05 09:59:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-05 09:59:57 +0200 |
commit | ed1f0b25770ee7a1f475f9aa261145c984af29fb (patch) | |
tree | cb2d87daf181f9ba849f01eca12c4d0838d4ea97 /kernel | |
parent | 115ca576475a2e8d30e63b339ae6a1b5db6906a6 (diff) | |
parent | 1355492c8966596f3694b781d6cdf12b17681bc1 (diff) | |
download | yosys-ed1f0b25770ee7a1f475f9aa261145c984af29fb.tar.gz yosys-ed1f0b25770ee7a1f475f9aa261145c984af29fb.tar.bz2 yosys-ed1f0b25770ee7a1f475f9aa261145c984af29fb.zip |
Merge pull request #651 from ARandomOWL/stdcells_fix
Fix IdString M in setup_stdcells()
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 fcc4fcc4b..6041168bb 100644 --- a/kernel/celltypes.h +++ b/kernel/celltypes.h @@ -157,7 +157,7 @@ struct CellTypes IdString A = "\\A", B = "\\B", C = "\\C", D = "\\D"; IdString E = "\\E", F = "\\F", G = "\\G", H = "\\H"; IdString I = "\\I", J = "\\J", K = "\\K", L = "\\L"; - IdString M = "\\I", N = "\\N", O = "\\O", P = "\\P"; + IdString M = "\\M", N = "\\N", O = "\\O", P = "\\P"; IdString S = "\\S", T = "\\T", U = "\\U", V = "\\V"; IdString Y = "\\Y"; |