Init Push

This commit is contained in:
2026-04-19 16:14:05 +08:00
commit 5b6bd1ac23
54 changed files with 80296 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
{
"kind": "sequential",
"clock": {
"name": "clk",
"period_ns": 10,
"initial": 0
},
"reset": {
"name": "rst",
"active": 1,
"cycles": 2
},
"inputs": [],
"outputs": [],
"observes": [
{
"name": "cnt",
"expr": "dut.cnt",
"width": 4
}
],
"max_cycles": 7,
"auto_stimulus": {
"enabled": false
},
"assertions": [
{
"name": "count_cycle2",
"cycle": 2,
"expect": {
"cnt": 1
}
},
{
"name": "eventually_cnt_3",
"cycle": 2,
"mode": "eventually",
"within": 2,
"expect": {
"cnt": 3
}
}
]
}