diff options
Diffstat (limited to 'sys/vops/amovk.gx')
-rw-r--r-- | sys/vops/amovk.gx | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sys/vops/amovk.gx b/sys/vops/amovk.gx new file mode 100644 index 00000000..94dfb176 --- /dev/null +++ b/sys/vops/amovk.gx @@ -0,0 +1,14 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +# AMOVK -- Copy a constant into a vector (generic). + +procedure amovk$t (a, b, npix) + +PIXEL a +PIXEL b[ARB] +int npix, i + +begin + do i = 1, npix + b[i] = a +end |