Fix remap on new 074 code.

Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
This commit is contained in:
Keith Rothman 2020-02-21 13:01:30 -08:00
parent 586acfef6c
commit 9e21e951c8
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!