From 7c084f620e6dcec68140cd4df90f64870cae813b Mon Sep 17 00:00:00 2001 From: Matthew Seaman Date: Tue, 3 Jan 2017 14:00:47 +0000 Subject: Fixes to allow building on 12-CURRENT - fix build failures in i386 and amd64 due to compiler changes - fix numerous compilation warnings and logical errors that may trap in the future - convert all distribution files from DOS format to ease future changes - convert legacy patch file to new naming convention PR: 214990 Submitted by: bob@eager.cx (maintainer) --- emulators/simh/files/patch-LGP_lgp__cpu.c | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 emulators/simh/files/patch-LGP_lgp__cpu.c (limited to 'emulators/simh/files/patch-LGP_lgp__cpu.c') diff --git a/emulators/simh/files/patch-LGP_lgp__cpu.c b/emulators/simh/files/patch-LGP_lgp__cpu.c new file mode 100644 index 000000000000..82e294459a29 --- /dev/null +++ b/emulators/simh/files/patch-LGP_lgp__cpu.c @@ -0,0 +1,29 @@ +--- LGP/lgp_cpu.c.orig 2016-12-01 22:43:42 UTC ++++ LGP/lgp_cpu.c +@@ -288,7 +288,7 @@ if (lgp21_sov) { + + do { + if (sim_interval <= 0) { /* check clock queue */ +- if (r = sim_process_event ()) ++ if ((r = sim_process_event ())) + break; + } + +@@ -308,7 +308,7 @@ do { + PC = (PC + 1) & AMASK; /* increment PC */ + sim_interval = sim_interval - 1; + +- if (r = cpu_one_inst (oPC, IR)) { /* one instr; error? */ ++ if ((r = cpu_one_inst (oPC, IR))) { /* one instr; error? */ + if (r == STOP_STALL) { /* stall? */ + PC = oPC; /* back up PC */ + delay = r = 0; /* no delay */ +@@ -744,7 +744,7 @@ if (cptr) { + else inst = IR; + while ((r = cpu_one_inst (PC, inst)) == STOP_STALL) { + sim_interval = 0; +- if (r = sim_process_event ()) ++ if ((r = sim_process_event ())) + return r; + } + return r; -- cgit v1.2.3