1/4
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Single-Line Comment
# this is a comment
a = b - c;
C Code
sub a, b, c
RISC-V Assembly COde
a = b + c - d;
add t, b, c
sub a, t, d
a = b + 6;
addi s0, s1, 6
?Explain!
Read a word of data at memory address 1 into s3
lw s3, 1(zero)