blob: c1b280e40ca39b3695049243cb050e02213587e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include "zdisplay.h"
# ZERSIM -- Erase binary file display device.
procedure zersim (chan)
int chan[ARB]
int device
begin
device = chan[1] / DEVCODE
switch (device) {
case IIS_CHAN:
call iisers (chan)
}
end
|