]> git.friedersdorff.com Git - max/tmk_keyboard.git/blob - tmk_core/tool/mbed/mbed-sdk/libraries/tests/benchmarks/float_math/main.cpp
Merge commit '20b787fc1284176834cbe7ca2134e4b36bec5828'
[max/tmk_keyboard.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 }