From: Tormod Volden Date: Sun, 1 Feb 2015 19:59:54 +0000 (+0100) Subject: 6809: Add EMAGIC_2 (0x20 = BRA) X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=addf03abbca270afc697c23fc7fb1323bad95ea0;p=FUZIX.git 6809: Add EMAGIC_2 (0x20 = BRA) Signed-off-by: Tormod Volden --- 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)