blob: 2cafaaa11268260a6e442e4704695f95c510eb05 [file] [log] [blame]
module fwrisc_mul_div_shift_formal_op(
output[31:0] in_a,
output[31:0] in_b,
output[3:0] op
);
assign op = 4'b0000; // shl
assign in_a = $anyconst;
assign in_b = $anyconst;
endmodule