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

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