Removed DUK

This commit is contained in:
ceriel 1986-12-04 16:35:04 +00:00
parent 53d6dfcb6b
commit 947461e31f
3 changed files with 0 additions and 15 deletions

View file

@ -1,4 +1,3 @@
#define DUK
/* @(#)mach0.c 1.5 */
/*
* Motorola 68000/68010 options
@ -24,5 +23,3 @@
#undef VALWIDTH
#define VALWIDTH 8
#define NOLD /* Added by Duk Bekema. */

View file

@ -21,11 +21,7 @@ operation
fit(fitw($4.val));
emit2($1 | $2);
#ifdef RELOCATION
#ifdef DUK
newrelo($4.typ, RELPC|RELO2|RELBR|RELWR);
#else DUK
newrelo($4.typ, RELPC|RELO2);
#endif DUK
#endif
emit2(loww($4.val));
}

View file

@ -37,11 +37,7 @@ ea_1(sz, bits)
#ifdef RELOCATION
RELOMOVE(relonami, rel_1);
if (flag & ~0xFF)
#ifdef DUK
newrelo(exp_1.typ, (flag>>8) | RELBR | RELWR);
#else DUK
newrelo(exp_1.typ, flag>>8);
#endif DUK
#endif
if (flag & PUTL)
emit4(exp_1.val);
@ -361,11 +357,7 @@ expr_t exp;
fit(fitw(exp.val));
emit2(opc);
#ifdef RELOCATION
#ifdef DUK
newrelo(exp.typ, RELPC|RELO2|RELBR|RELWR);
#else DUK
newrelo(exp.typ, RELPC|RELO2);
#endif DUK
#endif
emit2(loww(exp.val));
}