]> git.donarmstrong.com Git - qmk_firmware.git/blob - tmk_core/tool/mbed/mbed-sdk/libraries/tests/benchmarks/float_math/main.cpp
b7f556639813edbb077c478a329d78af4b8a1be0
[qmk_firmware.git] / tmk_core / tool / mbed / mbed-sdk / libraries / tests / benchmarks / float_math / main.cpp
1 #include "mbed.h"
2
3 volatile float w, x, y, z;
4 int main() {
5     while (1) {
6         z = x * y / w;
7     }
8 }