Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/amiga/stand/bootblock/boot Fix register order. %d0...
details: https://anonhg.NetBSD.org/src/rev/bf2c35c70a4c
branches: trunk
changeset: 975111:bf2c35c70a4c
user: isaki <isaki%NetBSD.org@localhost>
date: Sat Aug 22 05:09:02 2020 +0000
description:
Fix register order. %d0 is higher and %d1 is lower.
This would have rarely affected.
diffstat:
sys/arch/amiga/stand/bootblock/boot/ashldi3.s | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diffs (20 lines):
diff -r 7a2af207e176 -r bf2c35c70a4c sys/arch/amiga/stand/bootblock/boot/ashldi3.s
--- a/sys/arch/amiga/stand/bootblock/boot/ashldi3.s Sat Aug 22 03:41:33 2020 +0000
+++ b/sys/arch/amiga/stand/bootblock/boot/ashldi3.s Sat Aug 22 05:09:02 2020 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ashldi3.s,v 1.2 2008/04/28 20:23:13 martin Exp $ */
+/* $NetBSD: ashldi3.s,v 1.3 2020/08/22 05:09:02 isaki Exp $ */
/*-
* Copyright (c) 1996 The NetBSD Foundation, Inc.
@@ -36,8 +36,8 @@
movml %sp@(8),%d0-%d2
jra L2
L1:
- asll #1,%d0
- roxll #1,%d1
+ asll #1,%d1
+ roxll #1,%d0
L2:
dbra %d2,L1
Home |
Main Index |
Thread Index |
Old Index