1
2
3
4
5
6 dcl 1 lisp_static_vars_$lisp_static_vars_ external,
7 2 cclist_ptr ptr,
8
9 2 garbage_collect_soon bit(1) aligned,
10
11 lisp_static_vars_$err_recp ptr ext aligned,
12 err_recp ptr defined (lisp_static_vars_$err_recp),
13 eval_frame ptr defined (lisp_static_vars_$eval_frame),
14 lisp_static_vars_$eval_frame ptr ext static,
15 lisp_static_vars_$prog_frame ptr ext aligned,
16 lisp_static_vars_$err_frame ptr ext aligned,
17 lisp_static_vars_$catch_frame ptr ext aligned,
18 lisp_static_vars_$unwp_frame ptr ext aligned,
19 lisp_static_vars_$stack_ptr ptr ext aligned,
20 lisp_static_vars_$t_atom fixed bin(71) ext aligned,
21 lisp_static_vars_$top_level label ext,
22 lisp_static_vars_$unmkd_ptr ptr ext aligned,
23 lisp_static_vars_$binding_top ptr ext aligned,
24 lisp_static_vars_$obarray fixed bin(71) aligned ext,
25 obarray fixed bin(71) defined (lisp_static_vars_$obarray),
26 lisp_static_vars_$array_atom fixed bin(71) aligned ext,
27 array_atom fixed bin(71) defined (lisp_static_vars_$array_atom),
28 binding_top ptr defined (lisp_static_vars_$binding_top),
29 unmkd_ptr ptr defined (lisp_static_vars_$unmkd_ptr),
30 stack_ptr ptr defined (lisp_static_vars_$stack_ptr),
31 lisp_static_vars_$nil ext static fixed bin(71) aligned,
32 nil fixed bin(71) defined (lisp_static_vars_$nil),
33 lisp_static_vars_$tty_input_chan ext static ptr,
34 lisp_static_vars_$tty_output_chan ext static ptr,
35 tty_input_chan ptr def (lisp_static_vars_$tty_input_chan),
36 tty_output_chan ptr def (lisp_static_vars_$tty_output_chan),
37 lisp_static_vars_$iochan_list external pointer,
38 nil_ptr ptr based(addr(lisp_static_vars_$nil)) aligned,
39 prog_frame ptr def (lisp_static_vars_$prog_frame),
40 err_frame ptr def (lisp_static_vars_$err_frame),
41 catch_frame ptr def (lisp_static_vars_$catch_frame),
42 unwp_frame ptr def (lisp_static_vars_$unwp_frame),
43 t_atom_ptr ptr aligned based(addr(lisp_static_vars_$t_atom)),
44 t_atom fixed bin(71) defined (lisp_static_vars_$t_atom);
45 dcl lisp_static_vars_$user_intr_array(20) fixed bin(71) aligned ext static,
46 user_intr_array (20) fixed bin(71) aligned def (lisp_static_vars_$user_intr_array),
47 lisp_static_vars_$star_rset fixed bin(71) aligned ext static,
48 star_rset fixed bin(71) aligned def (lisp_static_vars_$star_rset);
49
50
51