From a87f26b25411b8bb272746da5be751dad7995d38 Mon Sep 17 00:00:00 2001 From: Eddie Hung Date: Sun, 19 Aug 2018 19:41:24 -0700 Subject: [PATCH] Update comment --- xc7/arch.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xc7/arch.cc b/xc7/arch.cc index 892fe1ec..df21c208 100644 --- a/xc7/arch.cc +++ b/xc7/arch.cc @@ -237,7 +237,7 @@ WireId Arch::getBelPinWire(BelId bel, IdString pin) const auto pin_name = pin.str(this); if (getBelType(bel) == id_SLICE_LUT6) { - // For all LUT based inputs (I1-I6,O,OQ,OMUX) then change the I/O into the LUT + // For all LUT based inputs and outputs (I1-I6,O,OQ,OMUX) then change the I/O into the LUT if (pin_name[0] == 'I' || pin_name[0] == 'O') { switch (torc_info->bel_to_z[bel.index]) { case 0: case 4: pin_name[0] = 'A'; break;