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

📄 stub.v

📁 openaccess与verilog互相转化时所用的源代码
💻 V
字号:
// Test the reader's ability to handle undefined modules in the Verilog// input.  The reader should create "stub" references to these modules// using the union of all interfaces that are defined on the module.  Also test// the reader's ability to detect and detach empty modules which should be// created as black boxes.module empty(a, b, c);    input	    a;    input   [1:0]   b;    output	    c;endmodulemodule top();    wire            wireToA, wireToC, wireToX, wireToZ;    wire    [1:0]   busToB, busToY;    wire    [3:0]   wideBusToB, wideBusToY;        empty   designInst(.a(wireToA), .b(busToB), .c(wireToC));        stub    lowNames(.c(wireToC), .a(wireToA), .b(busToB)),            highNames(.y(busToY), .z(wireToZ), .x(wireToX));                stub    vectorInst[1:0](.y(wideBusToY), .z(wireToZ), .x(wireToX));    stub    scalarOrder(wireToA, busToB, wireToC,                         wireToX, busToY, wireToZ);                stub    vectorOrder[1:0](wireToA, wideBusToB, wireToC,                             wireToX, wideBusToY, wireToZ);   endmodule

⌨️ 快捷键说明

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