1. c2f03a7 scp.c - Finished merge from master branch - addition of SET DEFAULT and SHOW DEFAULT command. by Mark Pizzolato · 12 years ago
  2. 02cb620 Change to support serial ports on multiplexer devices without any changes to existing multiplexer device emulation code. by Mark Pizzolato · 12 years ago
  3. 2469689 Merge branch 'DMC11' into SerialMux by Mark Pizzolato · 12 years ago
  4. 30ce7fd Revised the socket library sim_sock(.c & .h) to support both IPv4 and IPv6 leveraging the RFC3493 APIs. by Mark Pizzolato · 12 years ago
  5. 54ad020 Fixed potential memory leaks on error paths in scp.c/sim_rest (Peter Schorn) by Mark Pizzolato · 12 years ago
  6. ff4f1d3 Fix error message reporting when command not found. by Mark Pizzolato · 12 years ago
  7. e3bdb12 Simplified conditions when a do command file error message is printed by Mark Pizzolato · 12 years ago
  8. ee235a6 Fixed conditions when error messages are displayed while processing do commands by Mark Pizzolato · 12 years ago
  9. 7830a32 Added a -O switch to the programs arguments which will enable global ON inheritance. by Mark Pizzolato · 12 years ago
  10. 0f8e6cf Cleanup for warning messages produced by the clang C compiler. Mostly adding parentheses in conditional assignments and clarification parentheses in complex boolean expressions. by Mark Pizzolato · 12 years ago
  11. 19bf1cd Cleanup compiler warning about printf arguments by Mark Pizzolato · 12 years ago
  12. c77bdb2 Added scp SHOW SERIAL command by Mark Pizzolato · 12 years ago
  13. 7929c11 Merge branch 'master' into SerialMux by Mark Pizzolato · 12 years ago
  14. 8317211 Added SHOW ETHERNET command and extended eth_show to track and display open ethernet devices by Mark Pizzolato · 12 years ago
  15. 31df5e8 Added a mechanism for commands to optionally handle their message printing via a separate dispatch in the command table. This is currently used by run_cmd to handle unsuppressed status returns. by Mark Pizzolato · 12 years ago
  16. ad9cd1b Numerous Control Flow Fixes: by Mark Pizzolato · 12 years ago
  17. bc36e9d Adds serial port support to the multiplexer library. by Mark Pizzolato · 13 years ago
  18. c6c9e0c Fixed arguments to sprintf when constructing the expansion of %*. Found by Maurizio De Tommaso. by Mark Pizzolato · 13 years ago
  19. 79d0e25 Fixed printf of error messages which had parameters in the wrong order (found by Maurizio De Tommaso) by Mark Pizzolato · 13 years ago
  20. 3308398 Removed redundant {sim_name}.rc initialization file. by Mark Pizzolato · 13 years ago
  21. fc88568 Added a default initializing file simh.rc to the files automatically loaded when a simulator starts by Mark Pizzolato · 13 years ago
  22. 95a1cb7 Added a generic non simulator specific startup include file (simh.rc) to be processed. by Mark Pizzolato · 13 years ago
  23. 33567b4 Sanity check when detaching a undetached unit. fro Dave Bryan. by Mark Pizzolato · 13 years ago
  24. fd702e4 Made automatic startup file be named {sim_name}.rc (i.e. hp2100.rc or vax.rc, etc.) by Mark Pizzolato · 13 years ago
  25. a339dae Extensive Control Flow Enhancements: by Mark Pizzolato · 13 years ago
  26. ab3af30 - Changed asynch queue insertion and removal to use a lock free algorithm based only on InterlockedCompareExchangePointer. We can now use this lock free approach on IA64 host systems as well. by Mark Pizzolato · 13 years ago
  27. 7ea8831 Added do command default file extension for file being opened of '.sim' by Mark Pizzolato · 13 years ago
  28. 8cc2ef0 Fixed regression in handling (ignoring) error conditions while processing simple do file. by Mark Pizzolato · 13 years ago
  29. 027c921 More robust and correct readline support and fix to VMS build for HP2100 by Mark Pizzolato · 13 years ago
  30. 6e813b8 Merge with v3.9-0-rc2 first pass by Mark Pizzolato · 13 years ago
  31. 0270d0e Cleanup based on reports from Michael Bloom by Mark Pizzolato · 13 years ago
  32. cf280ad Completing merge of v3.9-0-rc1 compile cleanups by Mark Pizzolato · 13 years ago
  33. 2b43b35 Fix SHOW SHOW command to separate the SHOW options which are device specific and unit specific by Mark Pizzolato · 13 years ago
  34. fffad7c Merge changes from v3.9-0 rc1 by Mark Pizzolato · 13 years ago
  35. 9386369 Made dynamic libreadline loading more robust for some systems by Mark Pizzolato · 13 years ago
  36. 5efd8fe Fixed bug in save command. The issue is that attached units which are buffered in memory should also be flushed to storage as part of the save operation to make all the components of the save 'snapshot' consistent. by Mark Pizzolato · 13 years ago
  37. aa7c50e Compiler cleanup for issues noticed during x64 compiles by Mark Pizzolato · 13 years ago
  38. 5263a9e Added a sanity check to validate the modify time of the simulator image being restored by the 'restore' command with respect to the modify times of any files which are attached during the restore operation. by Mark Pizzolato · 13 years ago
  39. 6079add make output of 'show show' command consistent with other help output (lowercase primary commands). by Mark Pizzolato · 13 years ago
  40. de9facf Added echo/log output of the results of a goto command to make it easier to read what happened in a simulator log file. Also flushed log files when starting instruction execution. by Mark Pizzolato · 13 years ago
  41. 754934b Added SIM_NAME as an environment variable while a simulator is executing. This can then be used by "do" scripts and/or in the context of host shell commands invoked with "!". by Mark Pizzolato · 13 years ago
  42. 01369c1 Added sim_ttisatty to support reasonable behaviour (i.e. avoid in infinite loop) in the main command input loop when EOF is detected and input is coming from a file (or a null device: /dev/null or NUL:) This may happen when a simulator is running in a background process. by Mark Pizzolato · 13 years ago
  43. de59976 Added missing command argument substitution for command lines read directly from stdin. Also, added new "set environment name=val" command which is potentially useful for scripting. by Mark Pizzolato · 13 years ago
  44. 421fce7 Added missing implementation of "set nobreak". The help set showed this as valid, but it wasn't defined. by Mark Pizzolato · 13 years ago
  45. db7e04e Cleanup of readline and static libpcap support after multi-platform testing. by Mark Pizzolato · 13 years ago
  46. 8b01b90 Generalized readline support to dynamically load the readline library and avoid the symbol conflicts which happen on some platforms and some simulators with a global PC variable. by Mark Pizzolato · 13 years ago
  47. f84c610 Added useful diagnostic when restore operation fails due to inability to attach a device by Mark Pizzolato · 13 years ago
  48. c38eacd Fixed throttling in several ways: by Mark Pizzolato · 13 years ago
  49. 2753c4a Fixed DO command to properly return and display status from nested invocations. by Mark Pizzolato · 13 years ago
  50. 034e749 Added SET ASYNCH and SET NOASYNCH commands to dynamically enable or disable Asynchronous I/O support by Mark Pizzolato · 13 years ago
  51. 312bc9a Added signal catching of SIGHUP and SIGTERM to cause simulator STOP. This will facilitate running a simulator as a 'service' on *nix platforms, given a sufficiently flexible simulator .ini file. by Mark Pizzolato · 13 years ago
  52. e70278e VAX: Fixed idle conditions for various versions of Ultrix, Quasijarus-4.3BSD, NetBSD and OpenBSD. by Mark Pizzolato · 13 years ago
  53. 9e220f1 Cleaned up VMS builds using various versions of the Dec/Compaq/HP C compilers by Mark Pizzolato · 13 years ago
  54. 338ad51 Extend help text for SET CONSOLE to describe all of the settable console options by Mark Pizzolato · 13 years ago
  55. 31bf337 Fix sim_debug to display actual instruction count. by Mark Pizzolato · 13 years ago
  56. f7b53a5 Fixed sim_idle to account for a reasonable number of cycles which have passed when an asynchrnous event terminated the idle wait. by Mark Pizzolato · 13 years ago
  57. db99885 scp - Added expansion of %STATUS% and %TSTATUS% in do command by Mark Pizzolato · 14 years ago
  58. e3d3544 Changed sim_rest to defer attaching devices until after device register contents have been restored. by Mark Pizzolato · 14 years ago
  59. d81365b Compile cleanups. by Mark Pizzolato · 14 years ago
  60. fe8b1f0 Merge branch 'FastAsynchIO' into simhv38-2-rc2 by Mark Pizzolato · 14 years ago
  61. 87157dc Merge branch 'BufferedConsole' into simhv3.8-2.rc2 by Mark Pizzolato · 14 years ago
  62. 8eb9caf Merge branch 'ControlFlow' into simv3.8-2-rc2 by Mark Pizzolato · 14 years ago
  63. 87c3e34 Added Asynch I/O and Disk Support for various Disk formats by Mark Pizzolato · 14 years ago
  64. 454b706 Added Buffered Console Capabilities by Mark Pizzolato · 14 years ago
  65. 766e705 Added SET ON, SET NOON, ON, GOTO and RETURN command support by Mark Pizzolato · 14 years ago v4.0-devel
  66. a9fd3dd Notes For V3.8 by Bob Supnik · 14 years ago v3.8-2-rc2
  67. 9c4779c Notes For V3.8 by Bob Supnik · 16 years ago v3.8-1
  68. 59aa4a7 Notes For V3.8 by Bob Supnik · 16 years ago v3.8-0
  69. 3cb7c60 Notes For V3.7 by Bob Supnik · 17 years ago v3.7-3
  70. 6149cc7 Notes For V3.7 by Bob Supnik · 17 years ago v3.7-1
  71. 53d02f7 Notes For V3.7-0 by Bob Supnik · 18 years ago v3.7-0
  72. 15919a2 Notes For V3.6-0 by Bob Supnik · 18 years ago v3.6-1
  73. dc871fa Notes For V3.6-0 by Bob Supnik · 18 years ago v3.6-0
  74. a12e4a1 Notes For V3.5-1 by Bob Supnik · 19 years ago v3.5-2
  75. 1e704bf Notes For V3.5-1 by Bob Supnik · 19 years ago v3.5-1
  76. b7c1eae Notes For V3.5-0 by Bob Supnik · 19 years ago v3.5-0
  77. ec60bbf Notes For V3.4-0 by Bob Supnik · 19 years ago v3.4-0
  78. 098200a Notes For V3.3-2 by Bob Supnik · 20 years ago v3.3-2
  79. 9b5c8c9 Notes For V3.3-1 by Bob Supnik · 20 years ago v3.3-1
  80. b6393b3 Notes For V3.3 by Bob Supnik · 20 years ago v3.3-0
  81. 2e00e11 Notes For V3.2-3 by Bob Supnik · 20 years ago v3.2-3
  82. 2688f2d Notes For V3.2-2 by Bob Supnik · 20 years ago v3.2-2
  83. e2ba672 Notes For V3.2-1 by Bob Supnik · 20 years ago v3.2-1
  84. 26aa6de Notes For V3.2-0 by Bob Supnik · 21 years ago v3.2-0
  85. 1da2d94 Notes For V3.1-0 by Bob Supnik · 21 years ago v3.1-0
  86. b2101ec Notes For V3.0-2 by Bob Supnik · 21 years ago v3.0-2
  87. f9564b8 Notes For V3.0-1 by Bob Supnik · 21 years ago v3.0-1
  88. 4ffd3be Notes For V3.0-0 by Bob Supnik · 21 years ago v3.0-0
  89. 43385c9 Notes For V2.10-4 by Bob Supnik · 22 years ago v2.10-4
  90. f20f5c6 Notes For V2.10-3 by Bob Supnik · 22 years ago v2.10-3
  91. 2bcd1e7 Notes For V2.10-2 by Bob Supnik · 22 years ago v2.10-2
  92. 2c2dd5e Notes For V2.10-0 by Bob Supnik · 22 years ago v2.10-0
  93. df64751 Notes For V2.9-11 by Bob Supnik · 22 years ago v2.9-11
  94. 701f0fe Notes For V2.8 by Bob Supnik · 23 years ago v2.8
  95. 654937f simh v2.7 by Bob Supnik · 23 years ago v2.7
  96. 89bcd02 simh v2.6b by Bob Supnik · 23 years ago v2.6b
  97. a7b623a simh v2.6a by Bob Supnik · 23 years ago v2.6a
  98. 4d6dfa4 simh v2.6 by Bob Supnik · 23 years ago v2.6
  99. 062d217 simh v2.5a by Bob Supnik · 23 years ago v2.5a
  100. 9af6fd2 simh v2.5 by Bob Supnik · 23 years ago v2.5