Md Omar Faruque
12/14/2023, 5:38 PMAnton Maurovic
12/14/2023, 11:07 PMSynthesis failed. Signal not matching port size. Search for 'Resizing cell port' in /home/engtech/... -- I recall that this normally means you have instantiated a module, and at least one of the module's ports is expecting a given number of signals (e.g. in your case an inverter would likely have just a single input and a single output), but at the point of instantiation you have assigned more or fewer signals than the port is expecting. For example, if io_in is 38 signals wide, I think you would get this error if you did .my_inverter_input(io_in) and instead you might want to do .my_inverter_input(io_in[10]) or whatever.Anton Maurovic
12/14/2023, 11:08 PMResizing cell port in the file it mentions at the end of that line.