Files
tinyriscv/tests/1.c
2023-10-21 18:00:14 +03:00

8 lines
99 B
C

#include <stdint.h>
int main(){
uint32_t* ptr = 0x800000F0;
*ptr = 1;
while(*ptr) (*ptr)++;
}