Commit 88ef3116 authored by Jeffrey Lee's avatar Jeffrey Lee Committed by ROOL
Browse files

Define RISCOS_KERNEL when building the kernel

To match BuildSys 7.76
parent 99ecce92
......@@ -35,8 +35,8 @@ TOKHELPSRC = ${TOKENSOURCE}
HELPSRC = HelpStrs
OBJS = GetAll
KERNEL_MODULE = bin${SEP}${COMPONENT}
ASFLAGS += -PD "FreezeDevRel SETL {${FREEZE_DEV_REL}}" -PD "USE_SYNCLIB SETL {${USE_SYNCLIB}}"
CFLAGS += -ff -APCS 3/32bit/nofp/noswst -DKERNEL
ASFLAGS += -PD "FreezeDevRel SETL {${FREEZE_DEV_REL}}" -PD "USE_SYNCLIB SETL {${USE_SYNCLIB}}" -PD "RISCOS_KERNEL SETL {TRUE}"
CFLAGS += -ff -APCS 3/32bit/nofp/noswst -DRISCOS_KERNEL
CUSTOMROM = custom
CUSTOMEXP = custom
CUSTOMSA = custom
......
......@@ -52,7 +52,7 @@
edfsr_type dfsr_type;
bool loadwritepc_interworking;
#ifndef KERNEL
#ifndef RISCOS_KERNEL
#include "swis.h"
uint32_t g_ProcessorFlags;
......@@ -88,7 +88,7 @@ static inline bool get_loadwritepc_interworking(void)
void aborttrap_init(void)
{
dfsr_type = get_dfsr_type();
#ifndef KERNEL
#ifndef RISCOS_KERNEL
_swix(OS_PlatformFeatures,_IN(0)|_OUT(0),OSPlatformFeatures_ReadCodeFeatures,&g_ProcessorFlags);
#endif
loadwritepc_interworking = get_loadwritepc_interworking();
......
......@@ -32,7 +32,7 @@
#endif
#include "kernel.h"
#ifndef KERNEL
#ifndef RISCOS_KERNEL
#include "swis.h"
#endif
......@@ -151,7 +151,7 @@ static inline _kernel_oserror *mem_access_via_aborttrap(int flags,uint8_t *buf,u
static inline _kernel_oserror *mem_access_internal(uint8_t *buf,uint32_t addr,int len,int flags)
{
#ifndef KERNEL
#ifndef RISCOS_KERNEL
int mem24_flags=0;
if ((flags & AbortTrap_Reason_Mask) == AbortTrap_Reason_MemMap)
{
......@@ -195,7 +195,7 @@ static inline _kernel_oserror *mem_access_internal(uint8_t *buf,uint32_t addr,in
#endif
while (len > 0)
{
#ifndef KERNEL
#ifndef RISCOS_KERNEL
if(addr < 512<<20)
{
/* Application space, skip to avoid fighting against lazy task swapping */
......@@ -211,7 +211,7 @@ static inline _kernel_oserror *mem_access_internal(uint8_t *buf,uint32_t addr,in
bool have_permission;
_kernel_oserror *e;
int flags2 = flags;
#ifndef KERNEL
#ifndef RISCOS_KERNEL
uint32_t access;
e = _swix(OS_Memory,_INR(0,2)|_OUT(1),OSMemReason_CheckMemoryAccess,addr,addr+chunk,&access);
if (e)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment