summaryrefslogtreecommitdiff
path: root/emulators/simh/files/patch-LGP_lgp__cpu.c
diff options
context:
space:
mode:
authorMatthew Seaman <matthew@FreeBSD.org>2017-01-03 14:00:47 +0000
committerMatthew Seaman <matthew@FreeBSD.org>2017-01-03 14:00:47 +0000
commit7c084f620e6dcec68140cd4df90f64870cae813b (patch)
tree0752b4ea3e6f7dda7f1a2ab4235d6bffb9455613 /emulators/simh/files/patch-LGP_lgp__cpu.c
parentUpdate to 7.1.0. Changes include: (diff)
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)
Diffstat (limited to 'emulators/simh/files/patch-LGP_lgp__cpu.c')
-rw-r--r--emulators/simh/files/patch-LGP_lgp__cpu.c29
1 files changed, 29 insertions, 0 deletions
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;