summaryrefslogtreecommitdiff
path: root/tmk_core/tool/mbed/mbed-sdk/libraries/tests/benchmarks/float_math/main.cpp
blob: b7f556639813edbb077c478a329d78af4b8a1be0 (plain)
1
2
3
4
5
6
7
8
#include "mbed.h"

volatile float w, x, y, z;
int main() {
    while (1) {
        z = x * y / w;
    }
}