#include "verilog.h"
Defines | |
#define | common_printf() vpi_printf("Ruby-VPI: "); vpi_printf(__VA_ARGS__); vpi_printf("\n"); |
A wrapper for vpi_printf() which marks the given message as being emitted from Ruby-VPI and ends the message with a new line. | |
#define | common_debug() |
A wrapper for common_printf() which marks the given message as being debugging output. | |
#define | common_boolToStr(aBoolExpr) ( (aBoolExpr) ? "true" : "false" ) |
Returns the string "true" if the given boolean expression is true. | |
Enumerations | |
enum | bool { false = 0, true = 1 } |
A boolean variable with two possible values: true and false. More... |
|
Returns the string "true" if the given boolean expression is true. Otherwise returns the string "false". |
|
A wrapper for common_printf() which marks the given message as being debugging output.
|
|
A wrapper for vpi_printf() which marks the given message as being emitted from Ruby-VPI and ends the message with a new line.
|
|
A boolean variable with two possible values: true and false. Pass aroung this value instead of zero and non-zero integers. |