{"id":24772995,"url":"https://github.com/definev/dart_vcd","last_synced_at":"2025-08-30T10:44:17.278Z","repository":{"id":197469136,"uuid":"698524518","full_name":"definev/dart_vcd","owner":"definev","description":"Read and write VCD (Value Change Dump) files","archived":false,"fork":false,"pushed_at":"2024-05-06T19:25:42.000Z","size":28,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-23T21:14:35.916Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://pub.dev/packages/dart_vcd","language":"Dart","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/definev.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-09-30T07:02:34.000Z","updated_at":"2024-11-16T07:46:48.000Z","dependencies_parsed_at":"2024-05-06T20:31:39.482Z","dependency_job_id":null,"html_url":"https://github.com/definev/dart_vcd","commit_stats":null,"previous_names":["definev/dart_vcd"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/definev/dart_vcd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/definev%2Fdart_vcd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/definev%2Fdart_vcd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/definev%2Fdart_vcd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/definev%2Fdart_vcd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/definev","download_url":"https://codeload.github.com/definev/dart_vcd/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/definev%2Fdart_vcd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272839674,"owners_count":25001862,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-29T04:34:58.695Z","updated_at":"2025-08-30T10:44:17.209Z","avatar_url":"https://github.com/definev.png","language":"Dart","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dart_vcd\n\nReads and writes VCD (Value Change Dump) files, a common format used with logic analyzers, HDL simulators, and other EDA tools. It provides streaming wrappers to read and write VCD commands and data.\n\n---\nPort of [rust-vcd](https://github.com/kevinmehall/rust-vcd) to Dart.\n\n## Usage\n\nA simple usage example:\n\n```dart\nimport 'package:dart_vcd/dart_vcd.dart';\n\nvoid main() {\n    VCDWriter writer = StringBufferVCDWriter();\n    \n    // Write header\n    writer.timescale(1, TimescaleUnit.us);\n    writer.addModule('top');\n    final clock = writer.addWire(1, 'clock');\n    final data = writer.addWire(1, 'data');\n    writer.upscope();\n    writer.enddefinitions();\n\n    // Write values\n    writer.begin(SimulationCommand.dumpvars);\n    writer.changeScalar(clock, Value.v0);\n    writer.changeScalar(data, Value.v0);\n    writer.end();\n\n    var t = 0;\n    for (var i = 0; i \u003c 32; i++) {\n      t += 4;\n      writer.timestamp(t);\n      writer.changeScalar(clock, Value.v1);\n      writer.changeScalar(data, Value.v1);\n    }\n\n    print(writer.result);\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdefinev%2Fdart_vcd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdefinev%2Fdart_vcd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdefinev%2Fdart_vcd/lists"}