PLI Examples
Part I
Jan-7-2025
C Code
1 #include <stdio.h> 2 3 void hello () { 4 printf ("\nHello Deepak\n"); 5 }
Verilog Code
1 module hello_pli (); 2 3 initial begin 4 $hello; 5 #10 $finish; 6 end 7 8 endmodule
Copyright © 1998-2025
Deepak Kumar Tala - All rights reserved
Do you have any Comment? mail me at:deepak@asic-world.com