** Also affects: verilog via
http://sourceforge.net/support/tracker.php?aid=2848986
Importance: Unknown
Status: Unknown
--
Cryptic error message when passing events to functions.
https://bugs.launchpad.net/bugs/328080
You received this bug notification because you are a member of Ubu
https://sourceforge.net/tracker/?func=detail&aid=2848986&group_id=149850&atid=775997
** Bug watch added: SourceForge.net Tracker #2848986
http://sourceforge.net/support/tracker.php?aid=2848986
--
Cryptic error message when passing events to functions.
https://bugs.launchpad.net/bugs/328080
Yo
Oh, I misunderstood the bug report ! Sorry about that.
--
Cryptic error message when passing events to functions.
https://bugs.launchpad.net/bugs/328080
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
--
ubuntu-bugs mailing list
ubuntu-
Is this even valid ? I mean passing an event as an argument to a
function that expects a logic input ?
Btw, your code does not compile, not even with ModelSim.
I modified it as follows:
// Module.
module my_module;
event my_event;
reg x;
// Function.
function my_function;
inpu
To reproduce the error message, try the following:
// Module.
module my_module;
event my_event;
// Call function with event.
initial
my_function(my_event);
// Function.
function my_function;
input my_args;
endfunction
endmodule
--
Cryptic error message when passi