do not move ms_std message, added shc.c and shc.h to .distr
This commit is contained in:
parent
313376cd36
commit
27b1d561b5
2 changed files with 9 additions and 0 deletions
|
@ -18,11 +18,14 @@ param.h
|
||||||
pattern.h
|
pattern.h
|
||||||
patterns
|
patterns
|
||||||
peephole.c
|
peephole.c
|
||||||
|
pop_push.awk
|
||||||
process.c
|
process.c
|
||||||
proinf.h
|
proinf.h
|
||||||
putline.c
|
putline.c
|
||||||
reg.c
|
reg.c
|
||||||
scan.l
|
scan.l
|
||||||
|
shc.c
|
||||||
|
shc.h
|
||||||
special.c
|
special.c
|
||||||
testopt
|
testopt
|
||||||
types.h
|
types.h
|
||||||
|
|
|
@ -13,6 +13,7 @@ static char rcsid[] = "$Header$";
|
||||||
#include <em_spec.h>
|
#include <em_spec.h>
|
||||||
#include <em_pseu.h>
|
#include <em_pseu.h>
|
||||||
#include <em_mnem.h>
|
#include <em_mnem.h>
|
||||||
|
#include <em_mes.h>
|
||||||
#include "ext.h"
|
#include "ext.h"
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -160,6 +161,11 @@ backward() {
|
||||||
goodrom = (rc >= 2);
|
goodrom = (rc >= 2);
|
||||||
break;
|
break;
|
||||||
case ps_mes:
|
case ps_mes:
|
||||||
|
if ((int) aoff(lnp->l_a.la_arg, 0) == ms_std) {
|
||||||
|
lnp->l_next = i;
|
||||||
|
i = lnp;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case ps_inp:
|
case ps_inp:
|
||||||
case ps_ina:
|
case ps_ina:
|
||||||
|
|
Loading…
Reference in a new issue