The Designer's Guide Community Forum
https://designers-guide.org/forum/YaBB.pl
Modeling >> Behavioral Models >> veriloga counter_
https://designers-guide.org/forum/YaBB.pl?num=1530894857

Message started by moreed on Jul 6th, 2018, 9:34am

Title: veriloga counter_
Post by moreed on Jul 6th, 2018, 9:34am

i have to implement a counter in verilog-A that counts the number of beats of a signal(beat frequency counter). for example, the input pulse is varying (5u s, 12u s , 14u s) and the reference signal is 1u s. i want the counter to to give (5 , 12 , 14). in decimal or in analog format.

The verilog-A im writing is as follows:
module counter_a(vout, vclk, vin);

input vclk, vin;
electrical vout,  vclk, vin;
parameter real vlogic_high = 1.0;
parameter real vlogic_low = 0;
parameter real vtrans_clk = 0.6;
parameter real vtrans = 0.6;
parameter real tdel = 50p from [0:inf);
parameter real trise = 20p from (0:inf);
parameter real tfall = 20p from (0:inf);

real x;

  analog begin
     @ (cross( V(vin) - vtrans_clk, +1 ))
           begin
           V(x) = ( V(vin) * V(vclk));


end

           V(vout) <+ transition ( V(x) * vlogic_high, tdel, trise, tfall);

end
//      $strobe ("Count is %d", x);


           endmodule  


please any help

Title: Re: veriloga counter_
Post by Ken Kundert on Jul 7th, 2018, 1:15am

Your model exhibits several obvious problems, but fixing them would not result in the counter you are looking for.

Perhaps you could explain the basic algorithm of what you are trying to accomplish.

Also, when including code, you should use the code markup (push the button marked with a #). It makes the code easier to read.

-Ken

The Designer's Guide Community Forum » Powered by YaBB 2.2.2!
YaBB © 2000-2008. All Rights Reserved.