diff options
author | Clifford Wolf <clifford@clifford.at> | 2017-03-14 11:29:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-14 11:29:20 +0100 |
commit | 3eb2bf12bff058bc8fe83db661b0b3fd1b35dffa (patch) | |
tree | 3304b718ed039ab5826a6cd7ac8e6a510736f50b /icepll | |
parent | efbf7846fe9977c7cbbb39a79103729672009061 (diff) | |
parent | 5bde6134cec5f6d67da60ec25287aeeb6651d465 (diff) | |
download | icestorm-3eb2bf12bff058bc8fe83db661b0b3fd1b35dffa.tar.gz icestorm-3eb2bf12bff058bc8fe83db661b0b3fd1b35dffa.tar.bz2 icestorm-3eb2bf12bff058bc8fe83db661b0b3fd1b35dffa.zip |
Merge pull request #75 from joshhead/icepll-comma
Remove trailing comma in icepll module output.
Diffstat (limited to 'icepll')
-rw-r--r-- | icepll/icepll.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/icepll/icepll.cc b/icepll/icepll.cc index 273c6a1..c9b1a45 100644 --- a/icepll/icepll.cc +++ b/icepll/icepll.cc @@ -252,7 +252,7 @@ int main(int argc, char **argv) "\t\t.RESETB(1'b1),\n" "\t\t.BYPASS(1'b0),\n" "\t\t.REFERENCECLK(clock_in),\n" - "\t\t.PLLOUTCORE(clock_out),\n" + "\t\t.PLLOUTCORE(clock_out)\n" "\t\t);\n\n" ); |