Category: Software
Description:
Write a small RISC-V program that changes an output value periodically (e.g., counting up, blinking, simple FSM).
This is the source the CPU will run to show on VBuddy.
Examples:
loop:
addi x10, x10, 1
sw x10, 0(x0)
beq x0, x0, loop
Category: Software
Description:
Write a small RISC-V program that changes an output value periodically (e.g., counting up, blinking, simple FSM).
This is the source the CPU will run to show on VBuddy.
Examples:
loop:
addi x10, x10, 1
sw x10, 0(x0)
beq x0, x0, loop