~ruther/verilog-riscv-semestral-project

ref: 181e94c4c368df49b63ee435f623436482f2f6a2 verilog-riscv-semestral-project/programs/add.c -rwxr-xr-x 116 bytes
181e94c4 — Rutherther chore: add risc toolchain to flake 1 year, 7 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
int add(int a, int b)
{
    return a + b;
}

void main()
{
    int a = 20;
    int b = 30;
    int c = add(a, b);
}
Do not follow this link