为何除法器IP内核仿真总是高阻状态

2011年05月16日 21:01    发布者:txmilan
我刚开始玩FPGA,发现不能直接使用除法,需要使用除法内核(暂时没考虑自己别写除法程序)。
我尝试了IP内核中的Math Functions--dividers, 里面有2个IP核,我都试过了,仿真的时候输出总是高阻状态。
我使用的是Xilinx Spatan3, ISE10.1, Verilog语言,采用自带的ISE Simulator仿真器, 使用编写Verilog Test Fixture的方法仿真。
例如,我利用divider generator V1.0生成my_div模块,并实例化,程序如下:

module div(clk, ce, dividend, divisor, quotient, remainder);
    input clk;
    input ce;
    input dividend;
    input divisor;
    output quotient;
    output remainder;

    my_div test(
    .clk(clk),
    .ce(ce),
    .aclr(1'b0),
    .sclr(1'b0),
    .dividend(dividend),
    .divisor(divisor),
    .quotient(quotient),
    .remainder(remainder),
    .rfd());

endmodule

然后仿真程序如下:
module test;
     // Inputs
     reg clk;
     reg ce;
     reg dividend;
     reg divisor;
     // Outputs
     wire quotient;
     wire remainder;

     // Instantiate the Unit Under Test (UUT)
    div uut (
    .clk(clk),
    .dividend(dividend),
    .divisor(divisor),
    .quotient(quotient),
    .remainder(remainder)
     );

   initial begin
   forever #10 clk = ~clk;
   end

   initial begin
   // Initialize Inputs
  clk = 0;
  ce = 0;
  dividend = 0;
  divisor = 0;
  // Wait 100 ns for global reset to finish
  #100;
  dividend = 100;
  divisor = 12;
  #10;
  ce = 1;
  #500 $stop;
      end
  // Add stimulus here
endmodule

但是进入仿真后,quotient与remainder输出总是高电平(见图片),试过好多次了都是这样。
请问大家遇到过这种情况没?
求解原因!谢谢!

网友评论

txmilan 2011年05月16日
对了,是试过其他一些IP核的仿真,都没有问题