pantantrant
Feb 5th, 2024
38
0
Never
This is comment for paste Outfox Semiconductor FPGA Source Code
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. On lines 7 through 11, change:
  2.  
  3. Module MyLogicBlock(Side0, Side1, Side2, Side3);
  4. Inout wire [6:0] Side0;
  5. Inout wire [6:0] Side1;
  6. Inout wire [6:0] Side2;
  7. Inout wire [6:0] Side3;
  8.  
  9. to
  10.  
  11. module MyLogicBlock(Side0, Side1, Side2, Side3);
  12. inout wire [6:0] Side0;
  13. inout wire [6:0] Side1;
  14. inout wire [6:0] Side2;
  15. inout wire [6:0] Side3;
  16.  
  17. For it to synthesize.
Advertisement
Add Comment
Please, Sign In to add comment