Merge pull request #1250 from litghost/fix_remap

Fix remap on new 074 code.
This commit is contained in:
litghost 2020-02-22 09:02:10 -08:00 committed by GitHub
commit 64379fff56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -21,8 +21,8 @@ proc get_speed_model_name {name} {
# This isn't exactly correct, but it is a better model to use.
# BSW_INT_LONG_MUX is a tl_buffer (which we don't really understand), and
# BSW_INT_HLONG_MUX is not. This subsitution appears good enough for now.
if { $name == "BSW_INT_LONG_MUX" } {
set name "BSW_INT_HLONG_MUX"
if { $name == "_BSW_INT_LONG_MUX" } {
set name "_BSW_INT_HLONG_MUX"
}
# Same here!