⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 propagatep_test.v

📁 pli_handbook_examples_pc verilog hdl 与C的接口的典型例子
💻 V
字号:
/**********************************************************************
 * $propagatep_test example -- Verilog HDL test bench.
 *
 * Verilog test bench to test the $propagatep_test PLI application.
 *
 * For the book, "The Verilog PLI Handbook" by Stuart Sutherland
 *  Book copyright 1999, Kluwer Academic Publishers, Norwell, MA, USA
 *   Contact: www.wkap.il
 *  Example copyright 1998, Sutherland HDL Inc, Portland, Oregon, USA
 *   Contact: www.sutherland.com or (503) 692-0898
 *********************************************************************/
`timescale 1ns / 1ns
module test;
  reg  [7:0] reg1;
  real       real1;
  reg  [7:0] mem1 [0:3];

  initial
    begin
      $monitor("\nAt time %0d in test bench: reg1=%h  real1=%2.1f  mem1[0]=%h\n",
               $stime, reg1, real1, mem1[0]);
      reg1  = 1'b0;
      real1 = 0.0;

      #1 $display("Calling $propagatep_test(reg1)...");
         $propagatep_test(reg1);

      #1 $display("Calling $propagatep_test(real1)...");
         $propagatep_test(real1);

      #1 $display("Calling $propagatep_test(reg1[2])...");
         $propagatep_test(reg1[2]);

      #1 $display("Calling $propagatep_test(reg1[7:4])...");
         $propagatep_test(reg1[7:4]);

      #1 $display("Calling $propagatep_test(mem1[0])...");
         $propagatep_test(mem1[0]);

      #1 $finish;
    end

endmodule

/**********************************************************************/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -