/*Write an assembly function that performs the sum of five constants
10, 20, 30, 40 and 50, and returns the result.*/
void setup() {
Serial1.begin(115200);
}
extern "C" {
int my_asm_add_five_constants(int a, int b, int c, int d, int e);
}
int main() {
printf("%i\n", my_asm_add_five_constants(10, 20, 30, 40, 50));
}