Stefan Holst
Results
2
issues of
Stefan Holst
ISA manual section in 26.5.5. NOP Instruction: "C.NOP is only valid when imm=0; the code points with imm≠0 encode HINTs.". This suggests that 0 should be allowed for the c_imm6...
Consider this verilog module: ``` module m; typedef enum { FALSE, TRUE } u; //typedef u [0:1] yeah; // "yeah" works typedef u [0:1] crash; // "crash" segfaults endmodule ```...