1
0
mirror of https://github.com/open-simh/simh.git synced 2026-05-05 23:54:03 +00:00

I1401, I7094, ID16, ID32, NOVA, SDS, SIGMA: CONST compatibility with 3.10

This commit is contained in:
Mark Pizzolato
2018-03-09 15:55:22 -08:00
parent 645ea28d35
commit b7b1f427d0
12 changed files with 16 additions and 16 deletions

View File

@@ -49,7 +49,7 @@ extern uint32 *M;
extern UNIT cpu_unit;
t_stat fprint_sym_m (FILE *of, uint32 inst);
t_stat parse_sym_m (const char *cptr, t_value *val);
t_stat parse_sym_m (CONST char *cptr, t_value *val);
void fprint_ebcdic (FILE *of, uint32 c);
extern t_stat lp_read_cct (FILE *cfile);
@@ -539,7 +539,7 @@ if (r != SCPE_OK)
return 0;
}
t_stat parse_sym_m (const char *cptr, t_value *val)
t_stat parse_sym_m (CONST char *cptr, t_value *val)
{
uint32 i, sgn;
t_stat r;