S
server
Guest
message unavailable
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
For anyone interested, I have completed an 8b/10b implementation,
per Widmer and Franaszek (IBM JRD, Sep \'83). I\'ve posted it
at http://asics.chuckbenz.com.
You can use it quite freely, I only ask that you keep my copyright
header notice intact, even if you change the module name, or merge
it into your verilog code, or even if you translate it to VHDL
(shouldn\'t be hard). It\'s coded as a combinational block, so you
would add your own flop external to each block to latch disparity.
Logic designers might find a few other interesting things at my site,
and I hope to continue to add useful stuff - please feel free to offer
any feedback.
\\chuck
Chuck Benz
ASIC and FPGA design
newsbenz@chuckbenz.com
On Monday, May 13, 2002 at 10:01:24 AM UTC+5:30, Chuck Benz wrote:
For anyone interested, I have completed an 8b/10b implementation,
per Widmer and Franaszek (IBM JRD, Sep \'83). I\'ve posted it
at http://asics.chuckbenz.com.
You can use it quite freely, I only ask that you keep my copyright
header notice intact, even if you change the module name, or merge
it into your verilog code, or even if you translate it to VHDL
(shouldn\'t be hard). It\'s coded as a combinational block, so you
would add your own flop external to each block to latch disparity.
Logic designers might find a few other interesting things at my site,
and I hope to continue to add useful stuff - please feel free to offer
any feedback.
\\chuck
Chuck Benz
ASIC and FPGA design
newsbenz@chuckbenz.com
Hi, I need 64b/66b or 128b/130b implementation.
Can you please help.
Hi everybody,
Does anyone could help me ?
I\'m currently trying to simulate a JK flip-flop Verilog-netlisted from
a schematic. And as Q is equal to x at the beginning, it always stays
at x...
So i need to initialize Q, but as it is an output it doesn \'t work,
even if i put it as an inout.
Could you give me some tips ?
Thanks by advance,
Alex
On Thursday, 28 March 2002 15:15:20 UTC+4:30, Alex wrote:
Hi everybody,
Does anyone could help me ?
I\'m currently trying to simulate a JK flip-flop Verilog-netlisted from
a schematic. And as Q is equal to x at the beginning, it always stays
at x...
So i need to initialize Q, but as it is an output it doesn \'t work,
even if i put it as an inout.
Could you give me some tips ?
Thanks by advance,
Alex
I\'m having the same problem in simulation if anyone know how to initialize the output Q at first time please tell us.
On Thursday, 28 March 2002 15:15:20 UTC+4:30, Alex wrote:
Hi everybody,
Does anyone could help me ?
I\'m currently trying to simulate a JK flip-flop Verilog-netlisted from
a schematic. And as Q is equal to x at the beginning, it always stays
at x...
So i need to initialize Q, but as it is an output it doesn \'t work,
even if i put it as an inout.
Could you give me some tips ?
Thanks by advance,
Alex
I\'m having the same problem in simulation if anyone know how to
initialize the output Q at first time please tell us.
On Fri, 12 Jun 2020 13:30:49 -0400, <paslarerfan1@gmail.com> wrote:
On Thursday, 28 March 2002 15:15:20 UTC+4:30, Alex wrote:
Hi everybody,
Does anyone could help me ?
I\'m currently trying to simulate a JK flip-flop Verilog-netlisted from
a schematic. And as Q is equal to x at the beginning, it always stays
at x...
So i need to initialize Q, but as it is an output it doesn \'t work,
even if i put it as an inout.
Could you give me some tips ?
Thanks by advance,
Alex
I\'m having the same problem in simulation if anyone know how to
initialize the output Q at first time please tell us.
Can you not use something like this?
initial q = 0;
Using Icarus verilog, I\'ve also been a bit frustrated by getting x\'s
everywhere. It seems that it will even give you a result of \'x\' in cases
where I would expect a real answer, like \'x\' AND 0, or \'x\' multiplied by
0. It would be nice if the simulator could be directed to automatically
make all registers zero, or fill them with random data, instead of me
having to manually specify it. However I could not find such an option in
the documentation.