Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Jeffrey Lee
Kernel
Commits
88ef3116
Commit
88ef3116
authored
2 years ago
by
Jeffrey Lee
Committed by
ROOL
2 years ago
Browse files
Options
Download
Email Patches
Plain Diff
Define RISCOS_KERNEL when building the kernel
To match BuildSys 7.76
parent
99ecce92
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
Makefile
Makefile
+2
-2
aborttrap/c/aborttrap
aborttrap/c/aborttrap
+2
-2
aborttrap/c/atmem
aborttrap/c/atmem
+4
-4
No files found.
Makefile
View file @
88ef3116
...
...
@@ -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
-D
RISCOS_
KERNEL
CUSTOMROM
=
custom
CUSTOMEXP
=
custom
CUSTOMSA
=
custom
...
...
This diff is collapsed.
Click to expand it.
aborttrap/c/aborttrap
View file @
88ef3116
...
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
aborttrap/c/atmem
View file @
88ef3116
...
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment