From: Alan Cox Date: Wed, 12 Nov 2014 00:30:01 +0000 (+0000) Subject: 6809: bank names should be strings X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=7cd40d1f17529232f9372b8097e3dc9ba629cbfc;p=FUZIX.git 6809: bank names should be strings --- diff --git a/Kernel/cpu-6809/cpu.h b/Kernel/cpu-6809/cpu.h index 96f2eb3b..13489f1e 100644 --- a/Kernel/cpu-6809/cpu.h +++ b/Kernel/cpu-6809/cpu.h @@ -29,11 +29,11 @@ extern size_t strlen(const char *); typedef unsigned long long time_t; #ifdef CONFIG_BANKED -#define CODE1 __attribute__((far(1))) -#define CODE2 __attribute__((far(2))) +#define CODE1 __attribute__((far("1"))) +#define CODE2 __attribute__((far("2"))) #define COMMON -#define DISCARD __attribute__((far(3))) -#define VIDEO __attribute__((far(4))) +#define DISCARD __attribute__((far("3"))) +#define VIDEO __attribute__((far("4"))) #else /* Bank attributes for 6809 in banked code mode */ #define CODE1