diff options
author | Clifford Wolf <clifford@clifford.at> | 2015-07-06 17:45:56 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2015-07-06 17:45:56 +0200 |
commit | 85aaf08e53763a665d358d2c81d80a1de02e793f (patch) | |
tree | d15d7a3f884ec7d88bc9685091828efff0e0fd46 /techlibs | |
parent | 3049a08912b4da0ac952a111fc4ed0484938ab2b (diff) | |
download | yosys-85aaf08e53763a665d358d2c81d80a1de02e793f.tar.gz yosys-85aaf08e53763a665d358d2c81d80a1de02e793f.tar.bz2 yosys-85aaf08e53763a665d358d2c81d80a1de02e793f.zip |
Improved liberty file test case
Diffstat (limited to 'techlibs')
-rw-r--r-- | techlibs/cmos/cmos_cells.lib | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/techlibs/cmos/cmos_cells.lib b/techlibs/cmos/cmos_cells.lib index bf6b34788..1b0bf8457 100644 --- a/techlibs/cmos/cmos_cells.lib +++ b/techlibs/cmos/cmos_cells.lib @@ -39,7 +39,7 @@ library(demo) { } cell(DFFSR) { area: 18; - ff(IQ, IQN) { clocked_on: C; + ff("IQ", "IQN") { clocked_on: C; next_state: D; preset: S; clear: R; } @@ -50,5 +50,6 @@ library(demo) { function: "IQ"; } pin(S) { direction: input; } pin(R) { direction: input; } + ; // empty statement } } |