Files
tinyriscv/tests/mult.c
2023-10-22 14:56:03 +03:00

9 lines
81 B
C

#include <stdint.h>
int main(){
unsigned int x, y;
x = 20;
x = 5;
x *= y;
}