1
0
This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
tmk_keyboard_custom/tmk_core/tool/mbed/mbed-sdk/libraries/tests/benchmarks/cenv/main.cpp

9 lines
96 B
C++

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