diff options
author | William D. Jones <thor0505@comcast.net> | 2020-12-07 22:29:36 -0500 |
---|---|---|
committer | Marcelina KoĆcielnicka <mwk@0x04.net> | 2021-02-23 17:39:58 +0100 |
commit | 124780ecd9a74e9477313975b5e06e3fdd902573 (patch) | |
tree | 7d56bea1d19c434c9963a3758f82da2f91125628 /techlibs | |
parent | c31b17a2e28ac5f70600ee8b27f0befb3a1706be (diff) | |
download | yosys-124780ecd9a74e9477313975b5e06e3fdd902573.tar.gz yosys-124780ecd9a74e9477313975b5e06e3fdd902573.tar.bz2 yosys-124780ecd9a74e9477313975b5e06e3fdd902573.zip |
machxo2: Add missing OSCH oscillator primitive.
Diffstat (limited to 'techlibs')
-rw-r--r-- | techlibs/machxo2/cells_sim.v | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/techlibs/machxo2/cells_sim.v b/techlibs/machxo2/cells_sim.v index 134f26453..76de39299 100644 --- a/techlibs/machxo2/cells_sim.v +++ b/techlibs/machxo2/cells_sim.v @@ -178,3 +178,13 @@ module FACADE_IO #( end endgenerate endmodule + +(* blackbox *) +module OSCH #( + parameter NOM_FREQ = "2.08" +) ( + input STDBY, + output OSC, + output SEDSTDBY +); +endmodule |