ÿØÿà JFIF ` ` ÿþxØ
| Server IP : 109.234.164.53 / Your IP : 216.73.216.110 Web Server : Apache System : Linux cervelle.o2switch.net 4.18.0-553.32.1.lve.el8.x86_64 #1 SMP Thu Dec 19 13:14:03 UTC 2024 x86_64 User : computer3 ( 1098) PHP Version : 7.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/alt/python37/share/doc/alt-python37-pyparsing-doc/examples/verilog/ |
Upload File : |
// Verilog HDL for "gates.lib", "splitter" "_functional" module psr2_split (out1, out2, in); input in; output out1, out2; reg out1, out2; parameter delay=10, // multichannel description of a warning file warning_file=2, // multichannel description of a delay file delay_file = warning_file<<1; integer vdelay; // variable delay `include "INIT" `ifdef RANDOM_DELAYS `include "RANDOM_GATE" `endif initial begin vdelay = delay; `ifdef RANDOM_DELAYS delay_dev = psr2_split_variation*delay; vdelay = $dist_normal(psr2_split_seed, delay, delay_dev); `endif #1 $fdisplay(delay_file, "module=%m, nom_delay=%0d, delay=%0d", delay, vdelay); out1 = 0; out2 = 0; end always @(posedge in) // Execute at positive edge of in begin out1 <= #vdelay in; out1 <= #(vdelay+2) 0; out2 <= #vdelay in; out2 <= #(vdelay+2) 0; end endmodule