Keyboard firmwares for Atmel AVR and Cortex-M
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

main.cpp 96B

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