我写了一个Verilog程序,但是好像运行不了,求大神帮我看看错在哪儿,并告诉我修改的方法 新手拜谢!
modulecomputer(a,b,sel,clk,result);input[7:0]a,b;input[1:0]sel;inputclk;output[8:0]re...
module computer (a,b,sel,clk,result);
input[7:0] a,b;
input[1:0] sel;
input clk;
output[8:0] result;
reg [8:0] result;
always @ (posedge clk)
reg [1:0] sel;
initial
case (sel)
2'b00:result=a+b;
2'b01:result=a-b;
2'b10:result=a|b;
default:result=a&b;
endcase
endmodule 展开
input[7:0] a,b;
input[1:0] sel;
input clk;
output[8:0] result;
reg [8:0] result;
always @ (posedge clk)
reg [1:0] sel;
initial
case (sel)
2'b00:result=a+b;
2'b01:result=a-b;
2'b10:result=a|b;
default:result=a&b;
endcase
endmodule 展开
2个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询