Skip to content

Commit

Permalink
fixed verilog file source parsing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sbarillet committed May 24, 2017
1 parent 1eed242 commit 4bfd3a2
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ puts "AWS FPGA: ([clock format [clock seconds] -format %T]) Reading developer's
# Reading the .sv and .v files, as proper designs would not require
# reading .v, .vh, nor .inc files

read_verilog -sv [ glob $ENC_SRC_DIR/*.?v ]
read_verilog -sv [ glob $ENC_SRC_DIR/*.{v,sv} ]

#---- End of section replaced by User ----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ puts "AWS FPGA: ([clock format [clock seconds] -format %T]) Reading developer's
# Reading the .sv and .v files, as proper designs would not require
# reading .v, .vh, nor .inc files

read_verilog -sv [glob $ENC_SRC_DIR/*.?v]
read_verilog -sv [glob $ENC_SRC_DIR/*.{v,sv}]

#---- End of section replaced by User ----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ puts "AWS FPGA: ([clock format [clock seconds] -format %T]) Reading developer's
# Reading the .sv and .v files, as proper designs would not require
# reading .v, .vh, nor .inc files

read_verilog -sv [glob $ENC_SRC_DIR/*.?v]
read_verilog -sv [glob $ENC_SRC_DIR/*.{v,sv}]

#---- End of section replaced by User ----

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ puts "AWS FPGA: ([clock format [clock seconds] -format %T]) Reading developer's
# Reading the .sv and .v files, as proper designs would not require
# reading .v, .vh, nor .inc files

read_verilog -sv [glob $ENC_SRC_DIR/*.?v]
read_verilog -sv [glob $ENC_SRC_DIR/*.{v,sv}]

#---- End of section replaced by User ----

Expand Down

0 comments on commit 4bfd3a2

Please sign in to comment.