Module Name: src
Committed By: macallan
Date: Wed Dec 8 16:40:14 UTC 2021
Modified Files:
src/sys/arch/sparc/dev: sxreg.h
Log Message:
add SX_ROPB instruction
To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/sys/arch/sparc/dev/sxreg.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/arch/sparc/dev/sxreg.h
diff -u src/sys/arch/sparc/dev/sxreg.h:1.18 src/sys/arch/sparc/dev/sxreg.h:1.19
--- src/sys/arch/sparc/dev/sxreg.h:1.18 Fri Dec 3 22:41:18 2021
+++ src/sys/arch/sparc/dev/sxreg.h Wed Dec 8 16:40:14 2021
@@ -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))