1
0
tmk_keyboard/tmk_core/tool/mbed/mbed-sdk/libraries/tests/benchmarks/float_math/main.cpp

9 lines
106 B
C++

#include "mbed.h"
volatile float w, x, y, z;
int main() {
while (1) {
z = x * y / w;
}
}