2014-04-11 05:05:59 +04:00
|
|
|
/* gen164/5/ed.c
|
|
|
|
**
|
|
|
|
** This file is in the public domain.
|
|
|
|
*/
|
|
|
|
#include "all.h"
|
|
|
|
#include "../pit.h"
|
|
|
|
|
|
|
|
/* declarations
|
|
|
|
*/
|
2014-04-12 04:02:10 +04:00
|
|
|
extern u2_ho_jet j2_mdj(Pt5, coed, ed, sign)[];
|
|
|
|
extern u2_ho_jet j2_mdj(Pt5, coed, ed, puck)[];
|
2014-04-13 06:59:02 +04:00
|
|
|
extern u2_ho_jet j2_mdj(Pt5, coed, ed, veri)[];
|
2014-04-11 05:05:59 +04:00
|
|
|
|
|
|
|
u2_ho_driver
|
2014-04-12 04:02:10 +04:00
|
|
|
j2_mcd(Pt5, coed, ed)[] = {
|
|
|
|
{ j2_sd(Pt5, coed, ed, sign), j2_mdj(Pt5, coed, ed, sign), 0, 0, u2_none },
|
|
|
|
{ j2_sd(Pt5, coed, ed, puck), j2_mdj(Pt5, coed, ed, puck), 0, 0, u2_none },
|
2014-04-13 06:59:02 +04:00
|
|
|
{ j2_sd(Pt5, coed, ed, veri), j2_mdj(Pt5, coed, ed, veri), 0, 0, u2_none },
|
2014-04-11 05:05:59 +04:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
2014-04-12 04:02:10 +04:00
|
|
|
/* structures
|
|
|
|
*/
|
2014-04-11 05:05:59 +04:00
|
|
|
u2_ho_driver
|
2014-04-12 04:02:10 +04:00
|
|
|
j2_mbd(Pt5, coed)[] = {
|
2014-04-13 06:59:02 +04:00
|
|
|
{ j2_sc(Pt5, coed, ed), 0, j2_mcd(Pt5, coed, ed), 0, u2_none },
|
2014-04-12 04:02:10 +04:00
|
|
|
{}
|
|
|
|
};
|