diff --git a/demos/helloasm/hello.c b/demos/helloasm/hello.c index 873bdb61..073f22b3 100644 --- a/demos/helloasm/hello.c +++ b/demos/helloasm/hello.c @@ -14,5 +14,5 @@ void copy_msg(void) { printf("Called %s from ASM\n", __FUNCTION__); /* asm messages a $-terminated */ - strcpy(msg, "Hello from ASM$\n"); + strcpy(msg, "Hello from ASM\n$"); }