diff options
| author | Clifford Wolf <clifford@clifford.at> | 2016-03-30 10:02:18 +0200 |
|---|---|---|
| committer | Clifford Wolf <clifford@clifford.at> | 2016-03-30 10:02:18 +0200 |
| commit | 2c15a3a9d0aad62f92c37bd76b763d6c2cf079b1 (patch) | |
| tree | 7f41e75a28ef24ed589f5f2a462bea41012e4ce6 /techlibs/greenpak4 | |
| parent | a47f69536a1ac93657d334f57dac2a800ab34f3f (diff) | |
| parent | 19c20235b55648c150df294320b9f2515d2f3c5b (diff) | |
| download | yosys-2c15a3a9d0aad62f92c37bd76b763d6c2cf079b1.tar.gz yosys-2c15a3a9d0aad62f92c37bd76b763d6c2cf079b1.tar.bz2 yosys-2c15a3a9d0aad62f92c37bd76b763d6c2cf079b1.zip | |
Merge branch 'master' of github.com:cliffordwolf/yosys
Diffstat (limited to 'techlibs/greenpak4')
| -rw-r--r-- | techlibs/greenpak4/gp_dff.lib | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/techlibs/greenpak4/gp_dff.lib b/techlibs/greenpak4/gp_dff.lib index bc41d18ef..b4b8c1028 100644 --- a/techlibs/greenpak4/gp_dff.lib +++ b/techlibs/greenpak4/gp_dff.lib @@ -2,9 +2,9 @@ library(gp_dff) { cell(GP_DFF) { area: 1; ff("IQ", "IQN") { clocked_on: CLK; - next_state: D; } + next_state: D; } pin(CLK) { direction: input; - clock: true; } + clock: true; } pin(D) { direction: input; } pin(Q) { direction: output; function: "IQ"; } @@ -24,10 +24,10 @@ library(gp_dff) { cell(GP_DFFR) { area: 1; ff("IQ", "IQN") { clocked_on: CLK; - next_state: D; - clear: "nRST'"; } + next_state: D; + clear: "nRST'"; } pin(CLK) { direction: input; - clock: true; } + clock: true; } pin(D) { direction: input; } pin(Q) { direction: output; function: "IQ"; } |
