Abhisheyk Gaur
A San Diego, California-based software engineer, Abhisheyk Gaur works at Amazon. He designs and develops large-scale and multi-tiered software applications and services for the company's retail website.
# RISC-V 64-Bit Assembly: Basic Arithmetic
add x5, x6, x7 # x5 = x6 + x7
sub x8, x5, x9 # x8 = x5 - x9
mul x10, x5, x8 # x10 = x5 * x8
# RISC-V 64-Bit Assembly: Control Flow
beq x5, x0, label # if x5 == 0, jump to label
label:
add x9, x9, x10 # x9 = x9 + x10
By Abhisheyk Gaur
A San Diego, California-based software engineer, Abhisheyk Gaur works at Amazon. He designs and develops large-scale and multi-tiered software applications and services for the company's retail website.