__asm void my_strcpy(const char *src, char *dst){
}
__asm void my_capitalize(char *str){
//Write your code here
}
int main(void){
const char a[] = "Hello world!";
char b[20];
my_strcpy(a, b);
my_capitalize(b);
while (1);
}
So I am using this "skeleton code" to complete this project where I put this code on a Nucleo board and it will print out Hello World and then I use assembly to make it capitalize the text etc. and as I am trying to work on the rest of it I keep getting the error "expected '(' after 'asm'" and "expected ';' after top-level asm block" with anything that I do with it and am not sure what I am doing wrong here.