|
In the or1200_alu.v file on line 250 the lines `ifdef OR1200_CASE_DEFAULT
default: begin
`else
`OR1200_ALUOP_COMP, `OR1200_ALUOP_AND
`endif
result=result_and;
end
should be to avoid compilation errors:
`ifdef OR1200_CASE_DEFAULT
default: begin
`else
`OR1200_ALUOP_COMP, `OR1200_ALUOP_AND:
begin
`endif
result=result_and;
end
|