From addf03abbca270afc697c23fc7fb1323bad95ea0 Mon Sep 17 00:00:00 2001 From: Tormod Volden Date: Sun, 1 Feb 2015 20:59:54 +0100 Subject: [PATCH] 6809: Add EMAGIC_2 (0x20 = BRA) Signed-off-by: Tormod Volden --- Kernel/cpu-6809/cpu.h | 1 + 1 file changed, 1 insertion(+) diff --git a/Kernel/cpu-6809/cpu.h b/Kernel/cpu-6809/cpu.h index f8462479..7863959a 100644 --- a/Kernel/cpu-6809/cpu.h +++ b/Kernel/cpu-6809/cpu.h @@ -19,6 +19,7 @@ extern irqflags_t di(void); extern void irqrestore(irqflags_t f); #define EMAGIC 0x0E /* Header of executable (JMP) */ +#define EMAGIC_2 0x20 /* BRA */ /* Allow a minimum of 512 bytes gap between stack and top of allocations */ #define brk_limit() (udata.u_syscall_sp - 512) -- 2.34.1