IAR Embedded Workbench for RISC-V 3.40IAR C/C++ DevelopmentAssembler language interfaceMixing C and assemblerAn example of how to use clobbered memoryAn example of how to use clobbered memoryIn this section: void Store(unsigned long * location, unsigned long value) { asm("sw %1, 0(%0)" : : "r"(location), "r"(value) : "memory"); }