1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-15 03:14:23 +00:00
freebsd-ports/emulators/simh/files/patch-HP2100_hp2100__lps.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
969 B
C

--- HP2100/hp2100_lps.c.orig 2016-12-01 22:43:42 UTC
+++ HP2100/hp2100_lps.c
@@ -372,11 +372,12 @@ while (working_set) {
if (lps_unit.flags & UNIT_DIAG) { /* diagnostic? */
lps_sta = lps_unit.buf; /* loop back data */
- if (!(signal_set & ioCLC)) /* CLC not asserted simultaneously? */
+ if (!(signal_set & ioCLC)) { /* CLC not asserted simultaneously? */
if (UNIT_CPU_TYPE == UNIT_TYPE_211X) /* 2114/15/16 CPU? */
sim_activate (&lps_unit, 3); /* schedule flag after two instructions */
else /* 2100 or 1000 */
sim_activate (&lps_unit, 2); /* schedule flag after next instruction */
+ }
}
else { /* real lpt, sched */