-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathissues.json
More file actions
45 lines (45 loc) · 2.76 KB
/
Copy pathissues.json
File metadata and controls
45 lines (45 loc) · 2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[
{
"title": "[DESIGN][ALU] Implement ALU arithmetic operations",
"body": "ADD, SUB implementation\n\nAcceptance:\n- Synthesizable RTL\n- Unit test passes",
"labels": ["design-alu", "feature", "P0-critical"],
"assignee": "shiktr1785",
"milestone": "Design Phase"
},
{
"title": "[VERIF][ALU] ALU verification environment",
"body": "Create basic verification setup for ALU\n\nAcceptance:\n- Directed tests\n- Coverage points added",
"labels": ["verification-alu", "feature", "P1-high"],
"assignee": "shiktr1785",
"milestone": "Verification Phase"
},
{
"title": "[DESIGN][REGFILE] Implement Sequential Address Iteration Logic",
"body": "### Description\nImplement sequential address iteration logic in the register file / memory block as per specification.\n\n### Requirements\n- Address pointer increments sequentially on each valid operation\n- Proper wrap-around handling at maximum address\n- Support for read and write enable signals\n- Reset initializes address pointer to base address\n\n### Reference\n- Verification test plan: Sequential address iteration\n\n### Acceptance Criteria\n- RTL compiles cleanly\n- Directed simulation passes\n- Address sequencing strictly follows spec",
"labels": [
"design-regfile",
"feature",
"P1-high"
],
"assignee": "shiktr1785",
"milestone": "Design Phase"
},
{
"title": "[VERIF][REGFILE] Verify Sequential Address Iteration Operation",
"body": "### Description\nVerify sequential address iteration behavior of the register file / memory block based on the approved test plan.\n\n### Test Scenarios\n- Sequential address increment from base to max\n- Wrap-around behavior validation\n- Read-after-write consistency across iterations\n- Reset asserted during active iteration\n\n### Coverage Goals\n- Full address range coverage\n- Reset × iteration cross coverage\n- Read/Write enable combinations covered\n\n### Deliverables\n- Directed SystemVerilog testcases (non-UVM)\n- Functional coverage report\n- Simulation result summary\n\n### Reference\n- Approved test plan JSON",
"labels": [
"verification-integration",
"feature",
"P1-high"
],
"assignee": "shiktr1785",
"milestone": "Verification Phase"
},
{
"title": "[DOCS] Create RV32I architecture block diagram",
"body": "Create a detailed block diagram illustrating the RV32I architecture, including key components such as the ALU, register file, control unit, and memory interfaces.\n\nAcceptance Criteria:\n- Diagram is clear and accurately represents the RV32I architecture\n- Includes labels for all major components\n- Suitable for inclusion in project documentation",
"labels": ["docs", "feature", "P1-high"],
"assignee": "shiktr1785",
"milestone": "Document Phase"
}
]