From 4b895093a0a303f34ae3a6897d6a1897e2f26b61 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Wed, 29 Jun 2016 18:16:25 +0100 Subject: [PATCH] code6809: small fixes --- Applications/SmallC/code6809.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); } /** -- 2.34.1