1
0
mirror of https://github.com/open-simh/simh.git synced 2026-02-27 01:10:17 +00:00
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
2011-04-15 08:35:54 -07:00
2011-04-15 08:36:05 -07:00
2011-04-15 08:36:05 -07:00
2011-04-15 08:36:05 -07:00
2011-04-15 08:35:54 -07:00
2011-04-15 08:35:54 -07:00
2011-04-15 08:35:54 -07:00
2011-04-15 08:35:54 -07:00
2011-04-15 08:35:54 -07:00
2011-04-15 08:36:05 -07:00
2011-04-15 08:35:54 -07:00
2011-04-15 08:33:23 -07:00
2011-04-15 08:33:23 -07:00
2011-04-15 08:36:05 -07:00
2011-04-15 08:34:26 -07:00
2011-04-15 08:34:26 -07:00
2011-04-15 08:36:05 -07:00
2011-04-15 08:36:05 -07:00
2011-04-15 08:35:54 -07:00
2011-04-15 08:35:54 -07:00
2011-04-15 08:36:05 -07:00
2011-04-15 08:35:54 -07:00
2011-04-15 08:35:54 -07:00
2011-04-15 08:35:54 -07:00
2011-04-15 08:35:54 -07:00
2011-04-15 08:35:54 -07:00
Description
The Open SIMH simulators package
140 MiB
Languages
C 96.9%
Assembly 1%
CMake 0.5%
Batchfile 0.4%
Makefile 0.4%
Other 0.5%