simh-testsetgenerator/S3
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
..
haltguide.txt Notes For V2.8 2011-04-15 08:33:38 -07:00
readme_s3.txt Notes For V2.8 2011-04-15 08:33:38 -07:00
s3_cd.c Notes For V3.5-0 2011-04-15 08:34:58 -07:00
s3_cpu.c Cleaned up parameter declarations in all simulators to achieve clean compiles on all platforms 2011-04-15 09:04:39 -07:00
s3_defs.h Cleaned up parameter declarations in all simulators to achieve clean compiles on all platforms 2011-04-15 09:04:39 -07:00
s3_disk.c Notes For V3.5-0 2011-04-15 08:34:58 -07:00
s3_lp.c Notes For V3.5-0 2011-04-15 08:34:58 -07:00
s3_pkb.c Notes For V3.5-0 2011-04-15 08:34:58 -07:00
s3_sys.c Notes For V3.5-0 2011-04-15 08:34:58 -07:00
system3.txt Notes For V2.8 2011-04-15 08:33:38 -07:00