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-HP2100_hp2100__cpu4.c | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 emulators/simh/files/patch-HP2100_hp2100__cpu4.c (limited to 'emulators/simh/files/patch-HP2100_hp2100__cpu4.c') diff --git a/emulators/simh/files/patch-HP2100_hp2100__cpu4.c b/emulators/simh/files/patch-HP2100_hp2100__cpu4.c new file mode 100644 index 000000000000..8e7fba07337b --- /dev/null +++ b/emulators/simh/files/patch-HP2100_hp2100__cpu4.c @@ -0,0 +1,20 @@ +--- HP2100/hp2100_cpu4.c.orig 2016-12-01 22:43:42 UTC ++++ HP2100/hp2100_cpu4.c +@@ -261,7 +261,7 @@ else + entry = opcode & 0177; /* map to <6:0> */ + + if (op_fpp[entry] != OP_N) +- if (reason = cpu_ops (op_fpp[entry], op, intrq)) /* get instruction operands */ ++ if ((reason = cpu_ops (op_fpp[entry], op, intrq))) /* get instruction operands */ + return reason; + + switch (entry) { /* decode IR<6:0> */ +@@ -600,7 +600,7 @@ static const OP t_one = { { 0040000, 00 + entry = IR & 017; /* mask to entry point */ + + if (op_sis[entry] != OP_N) +- if (reason = cpu_ops (op_sis[entry], op, intrq)) /* get instruction operands */ ++ if ((reason = cpu_ops (op_sis[entry], op, intrq))) /* get instruction operands */ + return reason; + + switch (entry) { /* decode IR<3:0> */ -- cgit v1.2.3