aboutsummaryrefslogtreecommitdiff
path: root/sys/vops/lz/axorkl.x
diff options
context:
space:
mode:
Diffstat (limited to 'sys/vops/lz/axorkl.x')
-rw-r--r--sys/vops/lz/axorkl.x17
1 files changed, 17 insertions, 0 deletions
diff --git a/sys/vops/lz/axorkl.x b/sys/vops/lz/axorkl.x
new file mode 100644
index 00000000..df4f074f
--- /dev/null
+++ b/sys/vops/lz/axorkl.x
@@ -0,0 +1,17 @@
+# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
+
+# AXORK -- Compute the boolean or of a vector and a constant (generic).
+
+procedure axorkl (a, b, c, npix)
+
+long a[ARB]
+long b
+long c[ARB]
+int npix, i
+long xorl()
+
+begin
+ do i = 1, npix {
+ c[i] = xorl (a[i], b)
+ }
+end