blob: d85e283d0b7d2b8e1e83054c07f46187200c6a86 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 axorks (a, b, c, npix)
short a[ARB]
short b
short c[ARB]
int npix, i
short xors()
begin
do i = 1, npix {
c[i] = xors (a[i], b)
}
end
|