mirror of
https://github.com/simh/simh.git
synced 2026-01-25 19:56:25 +00:00
Compiler cleanup after v3.9-0 merge
This commit is contained in:
@@ -304,7 +304,7 @@ t_addr cpu_memsize = INIMEMSIZE; /* last mem addr */
|
||||
extern int32 CPUERR, MAINT;
|
||||
extern int32 sim_interval;
|
||||
extern int32 sim_int_char;
|
||||
extern uint32 sim_switches;
|
||||
extern int32 sim_switches;
|
||||
extern uint32 sim_brk_types, sim_brk_dflt, sim_brk_summ; /* breakpoint info */
|
||||
extern t_bool sim_idle_enab;
|
||||
extern DEVICE *sim_devices[];
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
|
||||
#else /* PDP-11 version */
|
||||
#include "pdp11_defs.h"
|
||||
extern int32 cpu_opt;
|
||||
extern uint32 cpu_opt;
|
||||
#endif
|
||||
|
||||
extern uint16 *M;
|
||||
|
||||
@@ -52,7 +52,8 @@
|
||||
extern uint16 *M;
|
||||
extern int32 int_req[IPL_HLVL];
|
||||
extern int32 ub_map[UBM_LNT_LW];
|
||||
extern int32 cpu_opt, cpu_bme;
|
||||
extern uint32 cpu_opt;
|
||||
extern int32 cpu_bme;
|
||||
extern int32 trap_req, ipl;
|
||||
extern int32 cpu_log;
|
||||
extern int32 autcon_enb;
|
||||
|
||||
@@ -158,7 +158,8 @@ typedef struct {
|
||||
|
||||
MBACTX massbus[MBA_NUM];
|
||||
|
||||
extern int32 cpu_opt, cpu_bme;
|
||||
extern uint32 cpu_opt;
|
||||
extern int32 cpu_bme;
|
||||
extern uint16 *M;
|
||||
extern int32 int_req[IPL_HLVL];
|
||||
extern t_addr cpu_memsize;
|
||||
|
||||
@@ -530,7 +530,7 @@ max 17ms for 1 track seek w/head switch
|
||||
rlmp2 = rlmp1 = rlmp;
|
||||
if (DEBUG_PRS (rl_dev))
|
||||
fprintf (sim_deb, ">>RL GSTA: rlds=%06o drv=%ld\n",
|
||||
rlmp, uptr - rl_dev.units);
|
||||
rlmp, (long)(uptr - rl_dev.units));
|
||||
rl_set_done (0); /* done */
|
||||
break;
|
||||
default: /* data transfer */
|
||||
|
||||
@@ -99,7 +99,7 @@ extern int32 fault_PC;
|
||||
#define RQ_XTIME 500
|
||||
#define OLDPC MMR2
|
||||
extern int32 MMR2;
|
||||
extern int32 cpu_opt;
|
||||
extern uint32 cpu_opt;
|
||||
#endif
|
||||
|
||||
#if !defined (RQ_NUMCT)
|
||||
|
||||
@@ -83,7 +83,7 @@
|
||||
#include "pdp11_defs.h"
|
||||
#define INIT_TYPE TQ5_TYPE
|
||||
#define INIT_CAP TQ5_CAP
|
||||
extern int32 cpu_opt;
|
||||
extern uint32 cpu_opt;
|
||||
#endif
|
||||
|
||||
#include "pdp11_uqssp.h"
|
||||
|
||||
@@ -96,7 +96,7 @@
|
||||
#else /* PDP-11 version */
|
||||
#include "pdp11_defs.h"
|
||||
#define TS_DIS DEV_DIS /* off by default */
|
||||
extern int32 cpu_opt;
|
||||
extern uint32 cpu_opt;
|
||||
#endif
|
||||
|
||||
#include "sim_tape.h"
|
||||
|
||||
@@ -79,7 +79,7 @@ extern int32 int_req[IPL_HLVL];
|
||||
#if defined (VM_PDP11)
|
||||
#include "pdp11_defs.h"
|
||||
extern int32 int_req[IPL_HLVL];
|
||||
extern int32 cpu_opt;
|
||||
extern uint32 cpu_opt;
|
||||
#endif
|
||||
|
||||
#include "sim_sock.h"
|
||||
|
||||
Reference in New Issue
Block a user