2001-03-16 02:44:34 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2001 Stephen Williams (steve@icarus.com)
|
|
|
|
|
*
|
|
|
|
|
* This source code is free software; you can redistribute it
|
|
|
|
|
* and/or modify it in source code form under the terms of the GNU
|
|
|
|
|
* General Public License as published by the Free Software
|
|
|
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
|
|
|
* any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
|
*/
|
2002-08-12 03:34:58 +02:00
|
|
|
#ifdef HAVE_CVS_IDENT
|
2002-12-12 00:55:22 +01:00
|
|
|
#ident "$Id: vpi_priv.cc,v 1.25 2002/12/11 23:55:22 steve Exp $"
|
2001-03-16 02:44:34 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
# include "vpi_priv.h"
|
2001-03-19 02:55:38 +01:00
|
|
|
# include "schedule.h"
|
2001-03-16 02:44:34 +01:00
|
|
|
# include <stdio.h>
|
|
|
|
|
# include <stdarg.h>
|
2002-07-05 19:14:15 +02:00
|
|
|
# include <string.h>
|
2001-03-16 02:44:34 +01:00
|
|
|
# include <assert.h>
|
2001-09-15 20:27:04 +02:00
|
|
|
#ifdef HAVE_MALLOC_H
|
2001-03-16 02:44:34 +01:00
|
|
|
# include <malloc.h>
|
2001-09-15 20:27:04 +02:00
|
|
|
#endif
|
|
|
|
|
# include <stdlib.h>
|
2001-03-16 02:44:34 +01:00
|
|
|
|
2002-05-18 04:34:11 +02:00
|
|
|
vpi_mode_t vpi_mode_flag = VPI_MODE_NONE;
|
|
|
|
|
|
2002-07-19 03:57:26 +02:00
|
|
|
static s_vpi_vlog_info vpi_vlog_info;
|
|
|
|
|
static s_vpi_error_info vpip_last_error = { 0, 0, 0, 0, 0, 0, 0 };
|
|
|
|
|
|
2002-07-05 19:14:15 +02:00
|
|
|
/*
|
|
|
|
|
* The vpip_string function creates a constant string from the pass
|
|
|
|
|
* input. This constant string is permanently allocate from an
|
|
|
|
|
* efficient string buffer store.
|
|
|
|
|
*/
|
|
|
|
|
struct vpip_string_chunk {
|
|
|
|
|
struct vpip_string_chunk*next;
|
|
|
|
|
char data[64*1024 - sizeof (struct vpip_string_chunk*)];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const char *vpip_string(const char*str)
|
|
|
|
|
{
|
|
|
|
|
static vpip_string_chunk first_chunk = {0, {0}};
|
|
|
|
|
static vpip_string_chunk*chunk_list = &first_chunk;
|
|
|
|
|
static unsigned chunk_fill = 0;
|
|
|
|
|
|
|
|
|
|
unsigned len = strlen(str);
|
|
|
|
|
assert( (len+1) <= sizeof chunk_list->data );
|
|
|
|
|
|
|
|
|
|
if ( (len+1) > (sizeof chunk_list->data - chunk_fill) ) {
|
|
|
|
|
vpip_string_chunk*tmp = new vpip_string_chunk;
|
|
|
|
|
tmp->next = chunk_list;
|
|
|
|
|
chunk_list = tmp;
|
|
|
|
|
chunk_fill = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char*res = chunk_list->data + chunk_fill;
|
|
|
|
|
chunk_fill += len + 1;
|
|
|
|
|
|
|
|
|
|
strcpy(res, str);
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2002-07-19 03:57:26 +02:00
|
|
|
int vpi_chk_error(p_vpi_error_info info)
|
|
|
|
|
{
|
2002-08-24 07:02:58 +02:00
|
|
|
if (vpip_last_error.state == 0)
|
2002-07-19 03:57:26 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
info->state = vpip_last_error.state;
|
|
|
|
|
info->level = vpip_last_error.level;
|
|
|
|
|
info->message = vpip_last_error.message;
|
|
|
|
|
info->product = vpi_vlog_info.product;
|
|
|
|
|
info->code = "";
|
|
|
|
|
info->file = 0;
|
|
|
|
|
info->line = 0;
|
|
|
|
|
|
|
|
|
|
return info->level;
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-16 02:44:34 +01:00
|
|
|
/*
|
|
|
|
|
* When a task is called, this value is set so that vpi_handle can
|
|
|
|
|
* fathom the vpi_handle(vpiSysTfCall,0) function.
|
|
|
|
|
*/
|
|
|
|
|
struct __vpiSysTaskCall*vpip_cur_task = 0;
|
|
|
|
|
|
|
|
|
|
int vpi_free_object(vpiHandle ref)
|
|
|
|
|
{
|
2002-06-02 21:05:50 +02:00
|
|
|
assert(ref);
|
2002-05-03 17:44:11 +02:00
|
|
|
assert(ref->vpi_type->vpi_free_object_);
|
|
|
|
|
return ref->vpi_type->vpi_free_object_(ref);
|
2001-03-16 02:44:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int vpip_get_global(int property)
|
|
|
|
|
{
|
|
|
|
|
switch (property) {
|
|
|
|
|
|
2001-04-03 05:46:14 +02:00
|
|
|
case vpiTimePrecision:
|
2001-07-01 01:03:16 +02:00
|
|
|
return vpip_get_time_precision();
|
2001-04-03 05:46:14 +02:00
|
|
|
|
2001-03-16 02:44:34 +01:00
|
|
|
default:
|
2001-04-03 05:46:14 +02:00
|
|
|
fprintf(stderr, "vpi error: bad global property: %d\n", property);
|
2001-03-16 02:44:34 +01:00
|
|
|
assert(0);
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int vpi_get(int property, vpiHandle ref)
|
|
|
|
|
{
|
|
|
|
|
if (ref == 0)
|
|
|
|
|
return vpip_get_global(property);
|
|
|
|
|
|
2002-06-21 06:58:55 +02:00
|
|
|
if (property == vpiType) {
|
|
|
|
|
struct __vpiSignal*rfp = (struct __vpiSignal*)ref;
|
|
|
|
|
if (ref->vpi_type->type_code == vpiReg && rfp->isint_)
|
|
|
|
|
return vpiIntegerVar;
|
|
|
|
|
else
|
|
|
|
|
return ref->vpi_type->type_code;
|
|
|
|
|
}
|
2001-07-11 04:27:21 +02:00
|
|
|
|
2001-03-16 02:44:34 +01:00
|
|
|
if (ref->vpi_type->vpi_get_ == 0)
|
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
|
|
return (ref->vpi_type->vpi_get_)(property, ref);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
char* vpi_get_str(int property, vpiHandle ref)
|
|
|
|
|
{
|
2002-12-12 00:55:22 +01:00
|
|
|
if (ref == 0) {
|
|
|
|
|
fprintf(stderr, "vpi error: vpi_get_str(%d, ...) called "
|
|
|
|
|
"with null vpiHandle.\n", property);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-02 21:05:50 +02:00
|
|
|
assert(ref);
|
2001-03-16 02:44:34 +01:00
|
|
|
if (ref->vpi_type->vpi_get_str_ == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2001-10-31 05:27:46 +01:00
|
|
|
return (char*)(ref->vpi_type->vpi_get_str_)(property, ref);
|
2001-03-16 02:44:34 +01:00
|
|
|
}
|
|
|
|
|
|
2001-04-03 05:46:14 +02:00
|
|
|
void vpi_get_time(vpiHandle obj, s_vpi_time*vp)
|
2001-03-16 02:44:34 +01:00
|
|
|
{
|
2002-06-02 21:05:50 +02:00
|
|
|
assert(vp);
|
2001-04-03 05:46:14 +02:00
|
|
|
|
2002-06-02 21:05:50 +02:00
|
|
|
// XXXX Cheat. Ignore timescale for the scope.
|
2001-04-03 05:46:14 +02:00
|
|
|
vp->type = vpiSimTime;
|
|
|
|
|
vp->high = 0;
|
|
|
|
|
vp->low = schedule_simtime();
|
2001-03-16 02:44:34 +01:00
|
|
|
}
|
|
|
|
|
|
2002-01-09 04:15:23 +01:00
|
|
|
int vpi_get_vlog_info(p_vpi_vlog_info vlog_info_p)
|
|
|
|
|
{
|
2002-04-07 02:46:21 +02:00
|
|
|
if (vlog_info_p != 0) {
|
|
|
|
|
*vlog_info_p = vpi_vlog_info;
|
|
|
|
|
return 1;
|
|
|
|
|
} else {
|
|
|
|
|
return 0;
|
2002-01-09 04:15:23 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void vpi_set_vlog_info(int argc, char** argv)
|
|
|
|
|
{
|
|
|
|
|
vpi_vlog_info.product = "Icarus Verilog";
|
|
|
|
|
vpi_vlog_info.version = "$Name: $";
|
|
|
|
|
vpi_vlog_info.argc = argc;
|
|
|
|
|
vpi_vlog_info.argv = argv;
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-16 02:44:34 +01:00
|
|
|
void vpi_get_value(vpiHandle expr, s_vpi_value*vp)
|
|
|
|
|
{
|
2002-06-02 21:05:50 +02:00
|
|
|
assert(expr);
|
|
|
|
|
assert(vp);
|
2001-03-16 02:44:34 +01:00
|
|
|
if (expr->vpi_type->vpi_get_value_) {
|
|
|
|
|
(expr->vpi_type->vpi_get_value_)(expr, vp);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
vp->format = vpiSuppressVal;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
vpiHandle vpi_put_value(vpiHandle obj, s_vpi_value*vp,
|
|
|
|
|
s_vpi_time*tp, int flags)
|
|
|
|
|
{
|
2002-06-02 21:05:50 +02:00
|
|
|
assert(obj);
|
2001-03-16 02:44:34 +01:00
|
|
|
if (obj->vpi_type->vpi_put_value_)
|
|
|
|
|
return (obj->vpi_type->vpi_put_value_)(obj, vp, tp, flags);
|
|
|
|
|
else
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
vpiHandle vpi_handle(int type, vpiHandle ref)
|
|
|
|
|
{
|
|
|
|
|
if (type == vpiSysTfCall) {
|
|
|
|
|
assert(ref == 0);
|
|
|
|
|
return &vpip_cur_task->base;
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-02 21:05:50 +02:00
|
|
|
assert(ref);
|
2002-07-19 03:12:50 +02:00
|
|
|
|
|
|
|
|
if (ref->vpi_type->handle_ == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2001-03-16 02:44:34 +01:00
|
|
|
assert(ref->vpi_type->handle_);
|
|
|
|
|
return (ref->vpi_type->handle_)(type, ref);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* This function asks the object to return an iterator for
|
|
|
|
|
* the specified reference. It is up to the iterate_ method to
|
|
|
|
|
* allocate a properly formed iterator.
|
|
|
|
|
*/
|
2002-01-06 01:48:39 +01:00
|
|
|
static vpiHandle vpi_iterate_global(int type)
|
|
|
|
|
{
|
|
|
|
|
switch (type) {
|
|
|
|
|
case vpiModule:
|
|
|
|
|
return vpip_make_root_iterator();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-16 02:44:34 +01:00
|
|
|
vpiHandle vpi_iterate(int type, vpiHandle ref)
|
|
|
|
|
{
|
2002-05-18 04:34:11 +02:00
|
|
|
assert(vpi_mode_flag != VPI_MODE_NONE);
|
|
|
|
|
if (vpi_mode_flag == VPI_MODE_REGISTER) {
|
|
|
|
|
fprintf(stderr, "vpi error: vpi_iterate called during "
|
|
|
|
|
"vpi_register_systf. You can't do that!\n");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2002-07-17 07:13:43 +02:00
|
|
|
|
2002-01-06 01:48:39 +01:00
|
|
|
if (ref == 0)
|
|
|
|
|
return vpi_iterate_global(type);
|
|
|
|
|
|
2002-07-12 04:04:44 +02:00
|
|
|
if (ref->vpi_type->iterate_)
|
2002-07-17 07:13:43 +02:00
|
|
|
return (ref->vpi_type->iterate_)(type, ref);
|
2002-07-12 04:04:44 +02:00
|
|
|
else
|
2002-07-17 07:13:43 +02:00
|
|
|
return 0;
|
2001-03-16 02:44:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
vpiHandle vpi_handle_by_index(vpiHandle ref, int idx)
|
|
|
|
|
{
|
2002-06-02 21:05:50 +02:00
|
|
|
assert(ref);
|
2002-07-19 03:12:50 +02:00
|
|
|
|
|
|
|
|
if (ref->vpi_type->index_ == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2001-03-16 02:44:34 +01:00
|
|
|
assert(ref->vpi_type->index_);
|
|
|
|
|
return (ref->vpi_type->index_)(ref, idx);
|
|
|
|
|
}
|
|
|
|
|
|
2002-07-17 07:13:43 +02:00
|
|
|
static vpiHandle find_name(char *name, vpiHandle handle)
|
|
|
|
|
{
|
|
|
|
|
vpiHandle rtn = 0;
|
|
|
|
|
struct __vpiScope*ref = (struct __vpiScope*)handle;
|
|
|
|
|
|
|
|
|
|
/* check module names */
|
|
|
|
|
if (!strcmp(name, vpi_get_str(vpiName, handle)))
|
|
|
|
|
rtn = handle;
|
|
|
|
|
|
|
|
|
|
/* brute force search for the name in all objects in this scope */
|
|
|
|
|
for (unsigned i = 0 ; i < ref->nintern ; i += 1) {
|
|
|
|
|
char *nm = vpi_get_str(vpiName, ref->intern[i]);
|
|
|
|
|
if (!strcmp(name, nm)) {
|
|
|
|
|
rtn = ref->intern[i];
|
|
|
|
|
break;
|
|
|
|
|
} else if (vpi_get(vpiType, ref->intern[i]) == vpiMemory) {
|
|
|
|
|
/* We need to iterate on the words */
|
|
|
|
|
vpiHandle word_i, word_h;
|
|
|
|
|
word_i = vpi_iterate(vpiMemoryWord, ref->intern[i]);
|
|
|
|
|
while (word_i && (word_h = vpi_scan(word_i))) {
|
|
|
|
|
nm = vpi_get_str(vpiName, word_h);
|
|
|
|
|
if (!strcmp(name, nm)) {
|
|
|
|
|
rtn = word_h;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* found it yet? */
|
|
|
|
|
if (rtn) break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return rtn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static vpiHandle find_scope(char *name, vpiHandle handle, int depth)
|
|
|
|
|
{
|
|
|
|
|
vpiHandle iter, hand, rtn = 0;
|
|
|
|
|
|
|
|
|
|
iter = !handle ? vpi_iterate(vpiModule, NULL) :
|
|
|
|
|
vpi_iterate(vpiInternalScope, handle);
|
|
|
|
|
|
|
|
|
|
while (iter && (hand = vpi_scan(iter))) {
|
|
|
|
|
char *nm = vpi_get_str(vpiName, hand);
|
|
|
|
|
int len = strlen(nm);
|
|
|
|
|
char *cp = name + len; /* hier seperator */
|
|
|
|
|
|
|
|
|
|
if (!handle && !strcmp(name, nm)) {
|
|
|
|
|
/* root module */
|
|
|
|
|
rtn = hand;
|
|
|
|
|
} else if (!strncmp(name, nm, len) && *(cp) == '.')
|
|
|
|
|
/* recurse deeper */
|
|
|
|
|
rtn = find_scope(cp+1, hand, depth + 1);
|
|
|
|
|
|
|
|
|
|
/* found it yet ? */
|
|
|
|
|
if (rtn) break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* matched up to here */
|
|
|
|
|
if (!rtn) rtn = handle;
|
|
|
|
|
|
|
|
|
|
return rtn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
vpiHandle vpi_handle_by_name(char *name, vpiHandle scope)
|
|
|
|
|
{
|
|
|
|
|
vpiHandle hand;
|
|
|
|
|
char *nm, *cp;
|
|
|
|
|
int len;
|
|
|
|
|
|
|
|
|
|
/* If scope provided, look in cooresponding module; otherwise
|
|
|
|
|
* traverse the hierarcy specified in name to find the leaf module
|
|
|
|
|
* and try finding it there.
|
|
|
|
|
*/
|
|
|
|
|
if (scope)
|
|
|
|
|
hand = vpi_handle(vpiModule, scope);
|
|
|
|
|
else
|
|
|
|
|
hand = find_scope(name, NULL, 0);
|
|
|
|
|
|
|
|
|
|
if (hand) {
|
|
|
|
|
/* remove hierarchical portion of name */
|
|
|
|
|
nm = vpi_get_str(vpiFullName, hand);
|
|
|
|
|
len = strlen(nm);
|
|
|
|
|
cp = name + len;
|
|
|
|
|
if (!strncmp(name, nm, len) && *cp == '.') name = cp + 1;
|
|
|
|
|
|
|
|
|
|
/* Ok, time to burn some cycles */
|
|
|
|
|
return find_name(name, hand);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-12 05:53:10 +02:00
|
|
|
extern "C" void vpi_vprintf(const char*fmt, va_list ap)
|
2001-03-16 02:44:34 +01:00
|
|
|
{
|
|
|
|
|
vprintf(fmt, ap);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-12 05:53:10 +02:00
|
|
|
extern "C" void vpi_sim_vcontrol(int operation, va_list ap)
|
2001-03-16 02:44:34 +01:00
|
|
|
{
|
2001-03-19 02:55:38 +01:00
|
|
|
switch (operation) {
|
|
|
|
|
case vpiFinish:
|
|
|
|
|
schedule_finish(0);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
assert(0);
|
|
|
|
|
}
|
2001-03-16 02:44:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* $Log: vpi_priv.cc,v $
|
2002-12-12 00:55:22 +01:00
|
|
|
* Revision 1.25 2002/12/11 23:55:22 steve
|
|
|
|
|
* Add vpi_handle_by_name to the VPI interface,
|
|
|
|
|
* and bump the vpithunk magic number.
|
|
|
|
|
*
|
2002-08-24 07:02:58 +02:00
|
|
|
* Revision 1.24 2002/08/24 05:02:58 steve
|
|
|
|
|
* Fix = vs == error.
|
|
|
|
|
*
|
2002-08-12 03:34:58 +02:00
|
|
|
* Revision 1.23 2002/08/12 01:35:09 steve
|
|
|
|
|
* conditional ident string using autoconfig.
|
|
|
|
|
*
|
2002-07-19 03:57:26 +02:00
|
|
|
* Revision 1.22 2002/07/19 01:57:26 steve
|
|
|
|
|
* Add vpi_chk_error and vpi_control functions.
|
|
|
|
|
*
|
2002-07-19 03:12:50 +02:00
|
|
|
* Revision 1.21 2002/07/19 01:12:50 steve
|
|
|
|
|
* vpi_iterate returns 0 on error.
|
|
|
|
|
*
|
2002-07-17 07:13:43 +02:00
|
|
|
* Revision 1.20 2002/07/17 05:13:43 steve
|
|
|
|
|
* Implementation of vpi_handle_by_name, and
|
|
|
|
|
* add the vpiVariables iterator.
|
|
|
|
|
*
|
2002-07-12 04:04:44 +02:00
|
|
|
* Revision 1.19 2002/07/12 02:04:44 steve
|
|
|
|
|
* vpi_iterate return null if there is nothing to iterate.
|
|
|
|
|
*
|
2002-07-05 19:14:15 +02:00
|
|
|
* Revision 1.18 2002/07/05 17:14:15 steve
|
|
|
|
|
* Names of vpi objects allocated as vpip_strings.
|
|
|
|
|
*
|
2002-06-21 06:58:55 +02:00
|
|
|
* Revision 1.17 2002/06/21 04:58:55 steve
|
|
|
|
|
* Add support for special integer vectors.
|
|
|
|
|
*
|
2002-06-02 21:05:50 +02:00
|
|
|
* Revision 1.16 2002/06/02 19:05:50 steve
|
|
|
|
|
* Check for null pointers from users.
|
|
|
|
|
*
|
2002-05-18 04:34:11 +02:00
|
|
|
* Revision 1.15 2002/05/18 02:34:11 steve
|
|
|
|
|
* Add vpi support for named events.
|
|
|
|
|
*
|
|
|
|
|
* Add vpi_mode_flag to track the mode of the
|
|
|
|
|
* vpi engine. This is for error checking.
|
|
|
|
|
*
|
2002-05-03 17:44:11 +02:00
|
|
|
* Revision 1.14 2002/05/03 15:44:11 steve
|
|
|
|
|
* Add vpiModule iterator to vpiScope objects.
|
|
|
|
|
*
|
2002-04-07 02:46:21 +02:00
|
|
|
* Revision 1.13 2002/04/07 00:46:21 steve
|
|
|
|
|
* minor cleanup of formatting.
|
|
|
|
|
*
|
2002-01-09 04:15:23 +01:00
|
|
|
* Revision 1.12 2002/01/09 03:15:23 steve
|
|
|
|
|
* Add vpi_get_vlog_info support.
|
|
|
|
|
*
|
2002-01-06 01:48:39 +01:00
|
|
|
* Revision 1.11 2002/01/06 00:48:39 steve
|
|
|
|
|
* VPI access to root module scopes.
|
|
|
|
|
*
|
2001-10-31 05:27:46 +01:00
|
|
|
* Revision 1.10 2001/10/31 04:27:47 steve
|
|
|
|
|
* Rewrite the functor type to have fewer functor modes,
|
|
|
|
|
* and use objects to manage the different types.
|
|
|
|
|
* (Stephan Boettcher)
|
|
|
|
|
*
|
2001-09-15 20:27:04 +02:00
|
|
|
* Revision 1.9 2001/09/15 18:27:05 steve
|
|
|
|
|
* Make configure detect malloc.h
|
|
|
|
|
*
|
2001-07-11 04:27:21 +02:00
|
|
|
* Revision 1.8 2001/07/11 02:27:21 steve
|
|
|
|
|
* Add support for REadOnlySync and monitors.
|
|
|
|
|
*
|
2001-07-01 01:03:16 +02:00
|
|
|
* Revision 1.7 2001/06/30 23:03:17 steve
|
|
|
|
|
* support fast programming by only writing the bits
|
|
|
|
|
* that are listed in the input file.
|
|
|
|
|
*
|
2001-06-22 00:54:12 +02:00
|
|
|
* Revision 1.6 2001/06/21 22:54:12 steve
|
|
|
|
|
* Support cbValueChange callbacks.
|
2001-03-16 02:44:34 +01:00
|
|
|
*/
|