1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
tv44led_example/tmk_core/tool/mbed/mbed-sdk/libraries/tests/benchmarks/float_math/main.cpp
di0ib 87e7029039 Upload
Initial upload
2016-07-08 09:13:28 -10:00

9 lines
106 B
C++

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