aboutsummaryrefslogtreecommitdiffstats
path: root/mistral/arch.cc
diff options
context:
space:
mode:
Diffstat (limited to 'mistral/arch.cc')
-rw-r--r--mistral/arch.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/mistral/arch.cc b/mistral/arch.cc
index ba7483e7..045625a3 100644
--- a/mistral/arch.cc
+++ b/mistral/arch.cc
@@ -71,7 +71,10 @@ Arch::Arch(ArchArgs args)
for (CycloneV::block_type_t bel : cyclonev->pos_get_bels(pos)) {
switch (bel) {
case CycloneV::block_type_t::LAB:
- create_lab(x, y);
+ create_lab(x, y, /*is_mlab=*/false);
+ break;
+ case CycloneV::block_type_t::MLAB:
+ create_lab(x, y, /*is_mlab=*/true);
break;
default:
continue;