1
0
mirror of https://github.com/simh/simh.git synced 2026-02-08 09:12:10 +00:00

ISYS8010: Corrections to get clean build under VS2008

This commit is contained in:
Bill Beech
2015-05-04 23:08:52 -07:00
committed by Mark Pizzolato
parent a6c07052a7
commit ce84886bfa
8 changed files with 44 additions and 36 deletions

View File

@@ -386,7 +386,7 @@ void set_cpuint(int32 int_num)
int32 sim_instr (void)
{
extern int32 sim_interval;
uint32 IR, OP, DAR, reason, hi, lo, i, adr;
uint32 IR, OP, DAR, reason, adr;
PC = saved_PC & WORD_R; /* load local PC */
reason = 0;
@@ -1436,3 +1436,5 @@ t_stat parse_sym (char *cptr, t_addr addr, UNIT *uptr, t_value *val, int32 sw)
val[2] = (r >> 8) & 0xFF;
return (-2);
}
/* end of i8080.c */