From: Alan Cox Date: Wed, 29 Jun 2016 17:16:25 +0000 (+0100) Subject: code6809: small fixes X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=4b895093a0a303f34ae3a6897d6a1897e2f26b61;p=FUZIX.git code6809: small fixes --- diff --git a/Applications/SmallC/code6809.c b/Applications/SmallC/code6809.c index 213e0f6b..f7ef604f 100644 --- a/Applications/SmallC/code6809.c +++ b/Applications/SmallC/code6809.c @@ -17,7 +17,7 @@ * print all assembler info before any code is generated */ void header (void) { - output_string ("; Small C Z80\n;\tCoder (ac0)\n;"); + output_string ("; Small C 6809\n;\tCoder (ac0)\n;"); frontend_version(); newline (); } @@ -294,7 +294,7 @@ void gen_ret(void) { * perform subroutine call to value on top of stack */ void callstk(void) { - output_line ("jsr (x)"); + output_line ("jsr ,x"); } /**