This website requires JavaScript.
Explore
Help
Register
Sign In
luke
/
iverilog
mirror of
https://github.com/steveicarus/iverilog.git
Watch
1
Star
0
Fork
You've already forked iverilog
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
master
iverilog
/
vvp
/
vvp_vpi.cc
10 lines
69 B
C++
Raw
Permalink
Normal View
History
Unescape
Escape
Add missing Log and Ident strings.
2002-08-12 01:47:04 +02:00
Remove malloc.h support and for C++ files use <c...> include files. The functions (malloc, free, etc.) that used to be provided in malloc.h are now provided in cstdlib for C++ files and stdlib.h for C files. Since we require a C99 compliant compiler it makes sense that malloc.h is no longer needed. This patch also modifies all the C++ files to use the <c...> version of the standard C header files (e.g. <cstdlib> vs <stdlib.h>). Some of the files used the C++ version and others did not. There are still a few other header changes that could be done, but this takes care of much of it.
2010-05-31 22:12:06 +02:00
#
include
<cstdarg>
Change the VPI call process so that loaded .vpi modules use a function table instead of implicit binding.
2001-06-12 05:53:10 +02:00
#
include
"vpi_user.h"
void
vvp_vpi_init
(
)
{
}
Add missing Log and Ident strings.
2002-08-12 01:47:04 +02:00