ports/emulators/simh/files/patch-HP2100_hp2100__fp1.c
Matthew Seaman 7c084f620e 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)
2017-01-03 14:00:47 +00:00

17 lines
722 B
C

--- HP2100/hp2100_fp1.c.orig 2016-12-01 22:43:42 UTC
+++ HP2100/hp2100_fp1.c
@@ -1145,12 +1145,12 @@ if (operand_l && operand_r) {
*operand_l = fp_a; /* first op is accum */
}
-if (result) /* want result precision? */
+if (result) { /* want result precision? */
if ((opcode & 0120) == 0100) /* fix? */
*result = int_size; /* result is integer */
else /* all others */
*result = fp_size; /* result is fp */
-
+}
return;
}