Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/sparc/dev add SX_ROPB instruction



details:   https://anonhg.NetBSD.org/src/rev/9693ec67f22e
branches:  trunk
changeset: 1027166:9693ec67f22e
user:      macallan <macallan%NetBSD.org@localhost>
date:      Wed Dec 08 16:40:14 2021 +0000

description:
add SX_ROPB instruction

diffstat:

 sys/arch/sparc/dev/sxreg.h |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (18 lines):

diff -r fc92e443260a -r 9693ec67f22e sys/arch/sparc/dev/sxreg.h
--- a/sys/arch/sparc/dev/sxreg.h        Wed Dec 08 13:06:44 2021 +0000
+++ b/sys/arch/sparc/dev/sxreg.h        Wed Dec 08 16:40:14 2021 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: sxreg.h,v 1.18 2021/12/03 22:41:18 macallan Exp $      */
+/*     $NetBSD: sxreg.h,v 1.19 2021/12/08 16:40:14 macallan Exp $      */
 
 /*-
  * Copyright (c) 2013 The NetBSD Foundation, Inc.
@@ -262,6 +262,8 @@
 
 #define SX_ROP(sa, sb, d, cnt) (0x90000000 | ((cnt) << 24) | SX_ROPL | \
                ((sa) << 14) | (sb) | ((d) << 7))
+#define SX_ROPB(sa, sb, d, cnt) (0x90000000 | ((cnt) << 24) | SX_ROPB | \
+               ((sa) << 14) | (sb) | ((d) << 7))
 #define SX_SELECT_S(sa, sb, d, cnt) (0x90000000 | ((cnt) << 24) | SX_SELS | \
                ((sa) << 14) | (sb) | ((d) << 7))
 



Home | Main Index | Thread Index | Old Index