main.cpp 96 B

12345678
  1. #include "mbed.h"
  2. volatile int x, y, z;
  3. int main() {
  4. while(1) {
  5. z = x * y;
  6. }
  7. }