[USRP-users] Re: why $diplay function is not work in my custom rfnoc block but

2023-08-21 Thread sp
Thanks for your explanation. On Tue, Aug 22, 2023 at 10:36 AM Yasir Özçalık wrote: > You need to use it inside a initial begin block. > > initial begin > $display("This ends with a new line "); > end > > If you write like this, it will work. But don't forget that the $display > function is onl

[USRP-users] Re: why $diplay function is not work in my custom rfnoc block but

2023-08-21 Thread Yasir Özçalık
You need to use it inside a initial begin block. initial begin $display("This ends with a new line "); end If you write like this, it will work. But don't forget that the $display function is only used for simulation, but not synthesis. Therefore; it is best to use it in testbench files. Kind

[USRP-users] Re: why $diplay function is not work in my custom rfnoc block but

2023-08-21 Thread Yasir Özçalık
Just to be clear, you mean $display function, right? If so, I have used it in my custom rfnoc block for simulation and it worked flawlessly. Can you give a little more detail about your code? sp , 22 Ağu 2023 Sal, 08:01 tarihinde şunu yazdı: > why $diplay function is not work in my custom rfnoc b