simh-testsetgenerator/PDP18B
Mark Pizzolato a6964f849d Cleaned up parameter declarations in all simulators to achieve clean compiles on all platforms
Very minor in all cases, but the strange case of swtp_cpu.c
This module used expressions of the form:
   PC = ++PC & ADDRMASK;
Officially, the C language says that expressions which modify the same variable in more than one place have undefined behavior.
These were changed to the legal form which performs the desired action:
   PC = (PC + 1) & ADDRMASK;
2011-04-15 09:04:39 -07:00
..
pdp18b_cpu.c Cleaned up parameter declarations in all simulators to achieve clean compiles on all platforms 2011-04-15 09:04:39 -07:00
pdp18b_defs.h Notes For V3.8 2011-04-15 08:35:54 -07:00
pdp18b_diag.txt Notes For V3.6-0 2011-04-15 08:35:20 -07:00
pdp18b_drm.c Notes For V3.8 2011-04-15 08:35:54 -07:00
pdp18b_dt.c Notes For V3.8 2011-04-15 08:35:54 -07:00
pdp18b_fpp.c Cleaned up parameter declarations in all simulators to achieve clean compiles on all platforms 2011-04-15 09:04:39 -07:00
pdp18b_lp.c Notes For V3.8 2011-04-15 08:35:54 -07:00
pdp18b_mt.c Notes For V3.8 2011-04-15 08:35:54 -07:00
pdp18b_rb.c Notes For V3.8 2011-04-15 08:35:54 -07:00
pdp18b_rf.c Notes For V3.8 2011-04-15 08:35:54 -07:00
pdp18b_rp.c Notes For V3.8 2011-04-15 08:35:54 -07:00
pdp18b_stddev.c Notes For V3.8 2011-04-15 08:35:54 -07:00
pdp18b_sys.c Notes For V3.8 2011-04-15 08:35:54 -07:00
pdp18b_tt1.c Notes For V3.8 2011-04-15 08:35:54 -07:00