From cbe1b85e7b58a5da668e8db2ceabedf7e5af3ca4 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Thu, 9 Jul 2020 10:55:52 +0100 Subject: [PATCH] irony comment on how one line creates a massive array of gates --- src/soc/fu/mul/main_stage.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/soc/fu/mul/main_stage.py b/src/soc/fu/mul/main_stage.py index 3d620367..68bcf47d 100644 --- a/src/soc/fu/mul/main_stage.py +++ b/src/soc/fu/mul/main_stage.py @@ -24,6 +24,7 @@ class MulMainStage2(PipeModBase): a, b, o = self.i.a, self.i.b, self.o.o # actual multiply (TODO: split into stages) + # it's ironic that one line of code can create 15,000 gates... comb += o.eq(a * b) ###### xer and context, all pass-through ##### -- 2.30.2