mirror of
https://github.com/steveicarus/iverilog.git
synced 2026-09-06 17:09:50 +02:00
Add message the the $dumpports* task are not available
These are in the standard and we did not have error messages for them. This patch make calling these tasks a compiletf fatal error.
This commit is contained in:
@@ -183,6 +183,30 @@ void sys_special_register(void)
|
||||
|
||||
tf_data.tfname = "$q_exam";
|
||||
tf_data.user_data = "$q_exam";
|
||||
vpi_register_systf(&tf_data);
|
||||
|
||||
tf_data.tfname = "$dumpports";
|
||||
tf_data.user_data = "$dumpports";
|
||||
vpi_register_systf(&tf_data);
|
||||
|
||||
tf_data.tfname = "$dumpportsoff";
|
||||
tf_data.user_data = "$dumpportsoff";
|
||||
vpi_register_systf(&tf_data);
|
||||
|
||||
tf_data.tfname = "$dumpportson";
|
||||
tf_data.user_data = "$dumpportson";
|
||||
vpi_register_systf(&tf_data);
|
||||
|
||||
tf_data.tfname = "$dumpportsall";
|
||||
tf_data.user_data = "$dumpportsall";
|
||||
vpi_register_systf(&tf_data);
|
||||
|
||||
tf_data.tfname = "$dumpportslimit";
|
||||
tf_data.user_data = "$dumpportslimit";
|
||||
vpi_register_systf(&tf_data);
|
||||
|
||||
tf_data.tfname = "$dumpportsflush";
|
||||
tf_data.user_data = "$dumpportsflush";
|
||||
vpi_register_systf(&tf_data);
|
||||
|
||||
/* These functions are not currently implemented. */
|
||||
|
||||
Reference in New Issue
Block a user