/*Write an assembly function that just returns 200 back to the C program.*/
void setup() {
Serial1.begin(115200);
}
extern "C" {
int my_asm_fn();
}
int main() {
printf("%i\n", my_asm_fn());
}
/*Write an assembly function that just returns 200 back to the C program.*/
void setup() {
Serial1.begin(115200);
}
extern "C" {
int my_asm_fn();
}
int main() {
printf("%i\n", my_asm_fn());
}