本帖最后由 fpgaw 于 2010-6-29 05:13 编辑
二进制转bcd码仿真问题?出来的bcd码总是0!
//二进制转bcd码
//clk是系统时钟,load输入为高时表示有输入待转的二进制数,
//eoc为1时输出,为0时不输出且表示处于运算中
//cout为输出
//cin为输入
module encode_bcd(clk,load,cin,cout,eoc);
input clk,load;
input [31:0]cin;
output [31:0]cout;
output eoc;
reg [31:0]cout,cout_buffer,jianshu,cin_buffer;//jianshu:减数
reg eoc;
reg [2:0]i;
reg [3:0]wei_buffer;
always @(posedge clk)
begin
if(eoc==1) //eoc=1时输出,eoc=1且load=1是表示计算完成且有输入,进行初始化
begin
cout=cout_buffer;
if(load==1)
begin jianshu=10000000;cin_buffer=cin;i=3'b111;wei_buffer=4'b0000;cout_buffer=0;eoc=1'b0;end
//初始化
end
else
begin
if(cin_buffer>=jianshu)begin cin_buffer=cin_buffer-jianshu;wei_buffer=wei_buffer+1;end
else
begin
{cout_buffer[i*4+3],cout_buffer[i*4+2],cout_buffer[i*4+1],cout_buffer[i*4]}=wei_buffer;
wei_buffer=4'b0000;
i=i-1;
case(i)
3'b111:jianshu=10000000;
3'b110:jianshu=1000000;
3'b101:jianshu=100000;
3'b100:jianshu=10000;
3'b011:jianshu=1000;
3'b010:jianshu=100;
3'b001:jianshu=10;
3'b000:jianshu=10000000;
endcase
if(i==3'b000)begin cout_buffer[3:0]=cin_buffer[3:0];eoc=1'b1;end
end
end
end
endmodule |