Skip to content

Commit 28c807e

Browse files
acomodilitghost
authored andcommitted
Revert bad revision.
Signed-off-by: Alessandro Comodi <[email protected]>
1 parent 629b039 commit 28c807e

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

libs/libarchfpga/src/read_xml_arch_file.cpp

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4907,7 +4907,8 @@ static void check_port_direct_mappings(t_physical_tile_type_ptr physical_tile, t
49074907

49084908
if (pb_type->num_pins != (int)pin_direct_mapping.size()) {
49094909
archfpga_throw(__FILE__, __LINE__,
4910-
"Logical and Physical types have a different number of ports.\n");
4910+
"Logical block (%s) and Physical tile (%s) have a different number of ports.\n",
4911+
logical_block->name, physical_tile->name);
49114912
}
49124913

49134914
for (auto pin_map : pin_direct_mapping) {
@@ -4921,7 +4922,8 @@ static void check_port_direct_mappings(t_physical_tile_type_ptr physical_tile, t
49214922
|| tile_port->num_pins != block_port->num_pins
49224923
|| tile_port->equivalent != block_port->equivalent) {
49234924
archfpga_throw(__FILE__, __LINE__,
4924-
"Logical and Physical types do not have equivalent port specifications.\n");
4925+
"Logical block (%s) and Physical tile (%s) do not have equivalent port specifications.\n",
4926+
logical_block->name, physical_tile->name);
49254927
}
49264928
}
49274929
}

0 commit comments

Comments
 (0)