1
0
mirror of https://github.com/simh/simh.git synced 2026-02-04 07:34:02 +00:00

Notes For V3.2-2

RESTRICTION: The PDP-15 FPP is only partially debugged.  Do NOT
enable this feature for normal operations.
RESTRICTION: The HP DS disk is not debugged.  DO NOT enable this
feature under any circumstances.

1. New Features in 3.2-2

None

2. Bugs Fixed in 3.2-2

2.1 SCP

- Fixed problem ATTACHing to read-only files (found by John Dundas)
- Fixed problems in Windows terminal code (found by Dave Bryan)
- Fixed problem in big-endian reads (reported by Scott Bailey)

2.2 GRI-909

- Updated MSR to include SOV
- Updated EAO to include additional functions

2.2 HP2100 (from Dave Bryan)

- Generalized control character handling for console terminal

2.3 VAX

- Fixed bad block initialization routine
This commit is contained in:
Bob Supnik
2004-07-17 11:55:00 -07:00
committed by Mark Pizzolato
parent e2ba672610
commit 2688f2d26e
11 changed files with 193 additions and 97 deletions

View File

@@ -29,12 +29,27 @@
#define SIM_MAJOR 3
#define SIM_MINOR 2
#define SIM_PATCH 1
#define SIM_PATCH 2
/* V3.2 revision history
patch date module(s) and fix(es)
2 17-Jul-04 scp.c: fixed problem ATTACHing to read only files
(found by John Dundas)
sim_console.c: revised Windows console code (from Dave Bryan)
sim_fio.c: fixed problem in big-endian read
(reported by Scott Bailey)
gri_cpu.c: updated MSR, EAO functions
hp_stddev.c: generalized handling of control char echoing
(from Dave Bryan)
vax_sys.c: fixed bad block initialization routine
1 10-Jul-04 scp.c: added SET/SHOW CONSOLE subhierarchy
hp2100_cpu.c: fixed bugs and added features from Dave Bryan