get-signal
Extract instances of a specific signal from a VCD file, enabling targeted analysis by defining signal name, file, and optional time range for efficient waveform parsing.
Instructions
Get all instances of a specified signal in a VCD file
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_time | No | End timestamp (optional) | |
file_name | Yes | Name of the VCD file to analyze | |
signal_name | Yes | Name of the signal to search for | |
start_time | No | Start timestamp (optional) |
Input Schema (JSON Schema)
{
"properties": {
"end_time": {
"description": "End timestamp (optional)",
"type": "integer"
},
"file_name": {
"description": "Name of the VCD file to analyze",
"type": "string"
},
"signal_name": {
"description": "Name of the signal to search for",
"type": "string"
},
"start_time": {
"description": "Start timestamp (optional)",
"type": "integer"
}
},
"required": [
"file_name",
"signal_name"
],
"type": "object"
}