Error (10170): Verilog HDL Syntax Error at <filename> near text "int"; expecting an identifier ("int" is a reserved keyword) - Error (10170): Verilog HDL Syntax Error at <filename> near text "int"; expecting an identifier ("int" is a reserved keyword) Description In the Quartus® II software may generate this error when you declare multiple loop variables within a SystemVerilog FOR loop, because this syntax is currently unsupported. The following is an example of unsupported syntax: for(int i=0, int j=0; i<4, j<2; i , j ) To work around this problem, declare only one loop variable within the FOR loop. Use the following supported syntax to work around this problem: int j=0; for(int i=0, j=0; i<4, j<2; i , j ) This problem is scheduled to be fixed in a future release of the Quartus II software. Custom Fields values: ['novalue'] Troubleshooting novalue False ['novalue'] ['novalue'] novalue novalue ['Programmable Logic Devices'] ['novalue'] ['novalue'] ['novalue'] - 2021-08-25

external_document