/* Test calling convention for (uint8_t, uint8_t) */
void __attribute__ ((noinline)) test(uint8_t a, uint8_t b) {
  delay(a*b);
}

void setup() {
  volatile uint8_t x = 0, y = 0;
  test(x, y);
}

void loop() {
}