diff options
author | William D. Jones <thor0505@comcast.net> | 2020-11-17 12:49:15 -0500 |
---|---|---|
committer | Marcelina KoĆcielnicka <mwk@0x04.net> | 2021-02-23 17:39:58 +0100 |
commit | b87f6a09069eb2b1dce3ff197691e5f2e76dff38 (patch) | |
tree | cfc07ce0108da0bc0dd8b0ab1477c91aa9064f2a | |
parent | 88c8f812602c25ef0a062002bede8fe737b6ac77 (diff) | |
download | yosys-b87f6a09069eb2b1dce3ff197691e5f2e76dff38.tar.gz yosys-b87f6a09069eb2b1dce3ff197691e5f2e76dff38.tar.bz2 yosys-b87f6a09069eb2b1dce3ff197691e5f2e76dff38.zip |
machxo2: Fix typos. test/arch/run-test.sh passes.
-rw-r--r-- | techlibs/machxo2/cells_sim.v | 2 | ||||
-rw-r--r-- | techlibs/machxo2/synth_machxo2.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/machxo2/cells_sim.v b/techlibs/machxo2/cells_sim.v index 06fbe2023..22b4fcf3c 100644 --- a/techlibs/machxo2/cells_sim.v +++ b/techlibs/machxo2/cells_sim.v @@ -26,7 +26,7 @@ module FACADE_FF #( parameter SRMODE = "LSR_OVER_CE", parameter REGSET = "SET" ) ( - input CLK, D, LSR, CE, + input CLK, DI, LSR, CE, output reg Q ); diff --git a/techlibs/machxo2/synth_machxo2.cc b/techlibs/machxo2/synth_machxo2.cc index 625d708cc..f126f9c32 100644 --- a/techlibs/machxo2/synth_machxo2.cc +++ b/techlibs/machxo2/synth_machxo2.cc @@ -35,7 +35,7 @@ struct SynthMachXO2Pass : public ScriptPass log("\n"); log(" synth_machxo2 [options]\n"); log("\n"); - log("This command runs synthesis for ECP5 FPGAs.\n"); + log("This command runs synthesis for MachXO2 FPGAs.\n"); log("\n"); log(" -top <module>\n"); log(" use the specified module as top module\n"); |