From: Lawrence S. <ljs...@us...> - 2017-12-29 22:39:13
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via e92de2996feff8a68a7cd6d25be472efb84e3852 (commit) from 198f072630df60b4629d91352867460d9be026bd (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit e92de2996feff8a68a7cd6d25be472efb84e3852 Author: Lawrence Sebald <ljs...@us...> Date: Fri Dec 29 17:37:14 2017 -0500 Remove unneeded instruction from _arch_exec_template that probably screwed up the CCR setting a bit. Thanks to MetalliC at DCEmulation for pointing out the issue (see this thread: https://dcemulation.org/phpBB/viewtopic.php?f=29&t=104466 ). ----------------------------------------------------------------------- Summary of changes: kernel/arch/dreamcast/kernel/execasm.s | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/kernel/arch/dreamcast/kernel/execasm.s b/kernel/arch/dreamcast/kernel/execasm.s index 107c573..3ba261f 100644 --- a/kernel/arch/dreamcast/kernel/execasm.s +++ b/kernel/arch/dreamcast/kernel/execasm.s @@ -1,7 +1,7 @@ ! KallistiOS ##version## ! ! arch/dreamcast/kernel/execasm.s -! (c)2002 Dan Potter +! Copyright (C) 2002 Dan Potter ! ! This is the assembler code on which exec.c bases its trampoline. ! @@ -15,9 +15,8 @@ __arch_exec_template: mov.l .ccraddr,r0 ! Disable/invalidate cache mov.l .ccrdata,r1 - mov.l @r1,r1 mov.l r1,@r0 - + mov.l .srcval,r0 ! Get src/dst pointers mov.l .dstval,r1 mov.l .count,r2 ! Get uint32 count hooks/post-receive -- A pseudo Operating System for the Dreamcast. |