[Bug 328080] Re: Cryptic error message when passing events to functions.

2009-09-03 Thread Jorge O. Castro
** 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

[Bug 328080] Re: Cryptic error message when passing events to functions.

2009-09-02 Thread Ahmed El-Mahmoudy
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

[Bug 328080] Re: Cryptic error message when passing events to functions.

2009-09-01 Thread Ahmed El-Mahmoudy
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-

[Bug 328080] Re: Cryptic error message when passing events to functions.

2009-09-01 Thread Ahmed El-Mahmoudy
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

[Bug 328080] Re: Cryptic error message when passing events to functions.

2009-02-11 Thread Ben James
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