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