blob: 5c3e663a4ba871d88eeef73bf7b1bc707bea5f27 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include "zdisplay.h"
# ZMAPIM -- Set display map.
procedure zmapim (chan, maptype)
int chan[ARB]
char maptype[ARB]
int device
begin
device = chan[1] / DEVCODE
switch (device) {
case IIS_CHAN:
call iisofm (maptype)
}
end
|