#include "kerngen/pilot.h"Go to the source code of this file.
Defines | |
| #define | IADR iadr |
| #define | jumpt0 type_of_call jumpt0_ |
| #define | jumpt1 type_of_call jumpt1_ |
| #define | jumpt2 type_of_call jumpt2_ |
| #define | jumpt3 type_of_call jumpt3_ |
| #define | jumpt4 type_of_call jumpt4_ |
| #define | jumpt5 type_of_call jumpt5_ |
| #define | jumpt6 type_of_call jumpt6_ |
| #define | jumpt7 type_of_call jumpt7_ |
| #define | jumpt8 type_of_call jumpt8_ |
| #define | jumpt9 type_of_call jumpt9_ |
Functions | |
| void | jumpt0 (iadr) |
| void | jumpt1 (iadr, char *ixa) |
| void | jumpt2 (iadr, char *ixa, char *ixb) |
| void | jumpt3 (iadr, char *ixa, char *ixb, char *ixc) |
| void | jumpt4 (iadr, char *ixa, char *ixb, char *ixc, char *ixd) |
| void | jumpt5 (iadr, char *ixa, char *ixb, char *ixc, char *ixd, char *ixe) |
| void | jumpt6 (iadr, char *ixa, char *ixb, char *ixc, char *ixd, char *ixe, char *ixf) |
| void | jumpt7 (iadr, char *ixa, char *ixb, char *ixc, char *ixd, char *ixe, char *ixf, char *ixg) |
| void | jumpt8 (iadr, char *ixa, char *ixb, char *ixc, char *ixd, char *ixe, char *ixf, char *ixg, char *ixh) |
| void | jumpt9 (iadr, char *ixa, char *ixb, char *ixc, char *ixd, char *ixe, char *ixf, char *ixg, char *ixh, char *ixi) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Definition at line 70 of file jumptn.c. 00072 {
00073 (**IADR)();
00074 return;
00075 }
|
|
||||||||||||
|
Definition at line 77 of file jumptn.c. 00080 {
00081 (**IADR)(ixa);
00082 return;
00083 }
|
|
||||||||||||||||
|
Definition at line 85 of file jumptn.c. 00088 {
00089 (**IADR)(ixa, ixb);
00090 return;
00091 }
|
|
||||||||||||||||||||
|
Definition at line 92 of file jumptn.c. 00095 {
00096 (**IADR)(ixa, ixb, ixc);
00097 return;
00098 }
|
|
||||||||||||||||||||||||
|
Definition at line 99 of file jumptn.c. 00102 {
00103 (**IADR)(ixa, ixb, ixc, ixd);
00104 return;
00105 }
|
|
||||||||||||||||||||||||||||
|
Definition at line 106 of file jumptn.c. 00109 {
00110 (**IADR)(ixa, ixb, ixc, ixd, ixe);
00111 return;
00112 }
|
|
||||||||||||||||||||||||||||||||
|
Definition at line 113 of file jumptn.c. 00116 {
00117 (**IADR)(ixa, ixb, ixc, ixd, ixe, ixf);
00118 return;
00119 }
|
|
||||||||||||||||||||||||||||||||||||
|
Definition at line 120 of file jumptn.c. 00123 {
00124 (**IADR)(ixa, ixb, ixc, ixd, ixe, ixf, ixg);
00125 return;
00126 }
|
|
||||||||||||||||||||||||||||||||||||||||
|
Definition at line 127 of file jumptn.c. 00130 {
00131 (**IADR)(ixa, ixb, ixc, ixd, ixe, ixf, ixg, ixh);
00132 return;
00133 }
|
|
||||||||||||||||||||||||||||||||||||||||||||
|
Definition at line 134 of file jumptn.c. 00137 {
00138 (**IADR)(ixa, ixb, ixc, ixd, ixe, ixf, ixg, ixh, ixi);
00139 return;
00140 }
|
1.3.9.1