Emulation:
* Falcon DSP emulation good enough to improve some few games/demos, e.g.
Virtual City. (most still work better with emulation disabled, though)
* New sound engine that fixes all problems with the old one
* 16-bit stereo sound (instead of 8-bit mono)
* Improved blitter emulation (blitter cycles emulation, blitter interrupt)
* Improved STE support for some video registers (hscroll, linewidth, ...)
* Improved printer emulation
* Improved STE microwire emulation
* Improved support for games & demos which are accessing IKBD directly
(including a fake 6301 emulation for the known IKBD programs)
* ACSI emulation fix to get HDDriver working
* Some other minor bugfixes to ST/STe emulation (FDC, MFP, PSG, RS-232)
* Improved MFP emulation
* Improved 68k emulation (move.b Ax,(Ay) and extb.l)
* Fixed bugs in the GEMDOS HD emulation (Pexec() etc.)
Emulator:
* Statusbar and overlay led features
* Screenshots work also in VDI/TT/Falcon mode and are saved as PNGs
* Support for automatic frameskip and pausing emulation
absd and I did some updates on it.
SDL mame is the SDL port of the MAME arcade game emulator.
MAME is a virtual machine emulator; it includes emulators for numerous
CPUs, sound and video chips used in arcade games, as well as special
purpose decoding PALs and detailed information about the memory layout of
each game.
To play games in MAME you must have a copy of the original game ROMs.
* Freedesktop.org-compliant startup notifications.
* Many fixes for 64-bit application support.
* Improved graphics support in Internet Explorer.
* Various Richedit improvements.
* Better certificate manager dialog.
* Various bug fixes.
* Version 0.10.0.1 released
* Ensure all audio2tape header files are distributed (Fredrick
Meunier).
* Fix compilation when libaudiofile isn't present (Fredrick
Meunier).
2008-12-03 Philip Kendall <philip-fuse@shadowmagic.org.uk>
* Version 0.10.0 released
* Make loader acceleration work on all compilers.
* Make the "Don't Save" option in the widget UI do the right thing.
* Allow both +3 disk drives to be used at once.
* Allow both +D disk drives to be used at once.
* Make .dsk code handle missing newline on "Track-Info" header.
* Remove unnecessary 'use' directive when building widget options
header file; fixes some build issues.
-- 0.4.1 -- 2009-01-10
libgambatte:
- Fix HqXx filter pitch.
- Fix mbc2 not getting a rambank.
- Make sure to reset passed pointers when deleted. Fixes potential crash
when loading ROM during OAM busy.
common:
- Substantially improved rate estimation averaging.
- RateEst: Add a convenient way of filtering measures that extend beyond
a buffer time, and are as such probably invalid.
- RateEst: Allow using a custom timestamp in feed().
- RateEst: Keep a queue of the last ~100 msec worth of samples and
duration, and filter out collective samples that give a pre-estimate
that seems way off.
- Replace "Game Boy / Game Boy Color emulator" with "Game Boy Color
emulator" for now to avoid misleading anyone on the current status.
gambatte_qt:
- Disable BlitterWidget updates (paintEvents) while not paused.
- QGLBlitter: Do a cheap front blit rather than a vsynced flip if audio
buffers are low.
- Allow BlitterWidgets to opt in to get paintEvents while unpaused. Do so
for QGLBlitter since it may need to clear buffers afterwards.
- QGLBlitter: Try to blit right after sync in the case of single buffering.
- Up default audio buffer latency to 100 ms (some common system audio
servers require a lot of buffering to work well).
- Adaptively skip BlitterWidget syncs if audio buffer is low, in a manner
that should minimize wasted skips in sync to vblank situation, and tries
to be non-disturbing. This replaces frame time halving, and blitter
specific rescueing.
- Clear display buffers in DirectDrawBlitter and Direct3DBlitter in
exclusive mode, since blits don't necessarily cover the entire buffers.
- DirectDrawBlitter: Make sure that a minimum amount of time has passed
between calls to WaitForVerticalBlank, since it can return in the same
vblank period twice on a fast system.
- DirectDrawBlitter: Support vsync for refresh rate ~= 2x frame rate.
- DirectDrawBlitter: Refactor somewhat and get rid of a couple minor
potential bugs.
- DirectDrawBlitter: Some tweaks to get updates closer to sync time in
certain situations.
- DirectDrawBlitter: Some tweaks to better support DONOTWAIT.
- DirectDrawBlitter: Make only updating during vblank while page flipping
optional.
- Direct3DBlitter: Some tweaks to get updates closer to sync time in
certain situations.
- Filter out very short frame times in frame time estimation.
- Don't adjust frame time during turbo, but rather skip BlitterWidget
syncs to speed up, which avoids vsync limits without disabling vsync.
- DirectDrawBlitter: Add triple buffering option.
- Direct3DBlitter: Use D3DSWAPEFFECT_DISCARD in non-exclusive mode.
- Direct3DBlitter: Allow triple buffering and vblank-only updates in
non-excusive mode.
- Rename "Page flipping" in Direct3D and DirectDraw blitters to
"Exclusive full screen".
- Pause audio on win32 titlebar clicks/drags to avoid looping audio due to
underruns from blocked timerEvents.
- Use wildcards for platform detection to avoid being unnecessarily
compiler/architecture specific. Fixes bug 2377772.
- Rewrite most of DirectSoundEngine, supporting primary buffer option,
making it more robust, correct and hopefully cleaner. Only use part of
the primary buffer if the desired buffer size is lower than the
primary buffer size.
- Direct3DBlitter and DirectDrawBlitter: Force blocking updates when sync
to vblank is enabled. Some updates only block if there's a prior
unfinished update in progress. This screws up frame time estimation in
turn screwing up vsync. To fix this we do a double update (and extra blit)
if close to a frame time period has passed since the last update when
sync to vblank is enabled. I really should have noticed this earlier as
it pretty much breaks vsync adaption completely.
- Direct3DBlitter: Use the D3DCREATE_FPU_PRESERVE flag when creating
device. Omitting this flag can screw up floating point calculations in
other parts of the code. For instance WASAPI cursor timestamps get
utterly screwed up here.
- Direct3DBlitter: It appears that managed textures are updated before
they are unlocked, which screws up redraws, making things appear choppy
in some situations. Use a default memory texture and a system memory
texture and the UpdateTexure method instead.
- DirectSoundEngine: Make use of the sample period limit feature of
RateEst, rather than duplicating the feature.
- Add polling WASAPI engine with exclusive mode support. Latency and rate
estimation is generally better than DirectSound, and in exclusive mode
there is less blocking as well as exclusive mode being better than
shared mode in the other areas too.
- WasapiEngine: Add device selection.
- WasapiEngine: Add static isUsable() method. Only listed if isUsable().
Default engine if isUsable().
- WasapiEngine: Use default device if there's only one device available,
since we don't show the combobox anyway.
- DirectSoundEngine: Provide the integrated read and status get write
method optimization.
- XvBlitter: Set NosystemBackground attribute rather than OpaquePaintEvent.
Reimplement paintEngine to return NULL as suggested by Qt docs.
- X11Blitter: Reimplement paintEngine to return NULL.
- AlsaEngine: Make use of sample period limit feature of RateEst. Don't
increase estimated sample rate on underrun.
- OssEngine: Make use of sample period limit feature of RateEst. Don't
increase estimated sample rate on underrun.
- Esc exits fullscreen on macx.
- Drop OpenAL from default macx binary.
- Add some useful but commented build flags for macx to .pro files.
0.8.A:
NES: Cleaned up the iNES loading code a bit, and added
support for WRAM on a few mappers that nominally shouldn't
have WRAM, enabled if the battery-backed bit is set in the
iNES header. Fixes "Family BASIC", and probably
a few bootleg games as well.
NES: Added partially-broken support for mapper 163.
NES: Added support for mapper 241.
Fixed string constant-to-(char *) problems in drivers/cheat.cpp
Added setting "osd.state_display_time", to control the
length of time, in milliseconds, the save state/movie
screen is displayed after selecting a save state or movie.
The most recently-saved save state slot will now be colored
differently when selecting a save state slot.
Increased the brightness of non-empty save state slots.
Empty save state slots are now black instead of being
partially transparent.
PC-FX: Fixed bugs in "Play Audio Track Index" and "Read
Subchannel" MMC commands, fixing the totally broken
cinematic sequences in "Boundary Gate". There may still
be bugs in these commands that don't cause any known
problems with games, so I will need to run tests on a real
system.
GBA: An error loading the custom colormap file is now
treated as fatal.
Win32: The German and Russian translation files are now
included in the Win32 precompiled binary distribution
ZIP file. Note that Mednafen always assumes the locale to
be UTF-8, so the stdio.txt file will need to be
opened with a viewer that can handle UTF-8(though filenames
with non-7-bit-ASCII components will appear fubar).
(I am aware that assuming the locale's character encoding
to always be UTF-8 is a design flaw with
various insidious consequences when the encoding is not
UTF-8).
Updated the Russian translation with the translation done
by rubicon.
Added configure script option "--enable-altivec/--disable-altivec
(default: enabled)" for compiling on
PowerPC architectures where AltiVec is not supported, or
causes problems. This configure script option is
untested, however.
Input for the virtual device on virtual port N will be
disabled when the buttons on the virtual device on virtual
port N are being configured. The last button pressed when
in button configuration may still be taken as
virtual device input, however(a fix for this would be too
invasive, and so will be done in the 0.9.x unstable
tree).
PCE: Added several missing input-related state variables
to save states, fixing several netplay/movie
desynchronization issues under certain situations.
Fixed a bug when creating an SDL source surface, whose
negative effects(clipping rightmost columns) could be
triggered when the "sdl" vdriver setting was used with
certain xscale and yscale settings that would
cause a 1:1 pixel copy operation.
PC-FX: Improved PSG LFO emulation again(Tyoushin Heiki
Zeroigar uses it for some sound effects, other
games likely use it as well in similar roles).
PCE: Improved PSG LFO emulation again(Hanii in the Sky,
Juuouki, and Flash Hiders use LFO).
PCE: Altered the Street Fighter 2 autodetection code to be
data-agnostic. The SF2 mapper will now be enabled for
any ROM images 2MiB and over in size.
Fixed a call to putenv(), to pass a static character array
initialized to a string constant instead of a string
constant directly.
Fixed a few argument descriptions(invoked with the -help
command-line switch) that weren't properly gettextized.
Debugger: Fixed a bug in the trace log code. It would
cause the emulator to lock up if the user pressed
Enter/Return in the prompt popup without any text in the input field.
SMS: Removed the old unused Z80 emulator code from when
SMS Plus was assimilated.
* Some simple 64-bit apps should now run.
* Support for subpixel font rendering.
* 64-bit code generation in the IDL compiler.
* New version of the Gecko engine.
* Various bug fixes.
snes9x is a portable, freeware Super Nintendo Entertainment System
(SNES) emulator. It basically allows you to play most games designed
for the SNES and Super Famicom Nintendo game systems on your PC or
Workstation; which includes some real gems that were only ever
released in Japan.
This package contains a GTK port of snes9x.
Gambatte is an accuracy-focused, open-source, cross-platform Game
Boy / Game Boy Color emulator written in C++. It is based on hundreds
of corner case hardware tests, as well as previous documentation
and reverse engineering efforts.
NEStopia is a portable Nintendo Entertainment System emulator
written in C++ by Martin Freij and ported to Linux by R. Belmont.
NEStopia strives for the most accurate emulation possible at the
pixel-by-pixel and sample-by-sample level, and it has excellent
mapper and UNIF board support as well. A few features:
- Supports .nes and .unf/.unif format ROMs
- Supports .fds discs
- Supports .nsf music rips
- All supported files can be extracted from zip or 7zip containers (an
archive browser is not yet included - this assumes the common
GoodSet case of one zip or 7zip per game)
- Supports save states
- Supports movie recordings
- Supports the "rewinder" - if you make a bad jump and screw up your game,
press Backspace and the game will run in reverse. Press \ to take over
again and try to fix your mistake.
- Friendly GUI configuration
- Autodetection of PAL and NTSC format games
- Supports drag and drop of compatible games and music rips from modern
Linux file managers, including KDE's Konqueror and GNOME's Nautilus.
What's new in this release:
* Numerous fixes for IE7 support.
* Support for 64-bit cross-compile using Mingw64.
* User interface support for crypto certificates.
* Better support for MSI installation patches.
* Various Direct3D optimizations.
* Various bug fixes.
Handy/SDL is a freeware software emulator which emulates Atari's
Lynx hand-held game device on your OS. Handy/SDL is based upon Keith
"Dysfunction" Wilkin's free Handy emulator.
* Writing files would not truncate the file at the correct point,
leading to corrupt files when overwriting an existing file
* Distribute ui/fb/fbmouse.h
passed to configure for CC, CXX, AS, and LD as these options are passed
through to winegcc, which the buildlink wrapper doesn't handle. Also pass
LDD to configure so it can be overridden.
- Support for virtual memory write watches.
- Workarounds for the WINAPI compiler bug on Mac OS.
- Several fixes for the 64-bit build.
- Some more GdiPlus functions.
- Various bug fixes.
Based on PR 39980 by John Maier.
Xhomer is a machine emulator for the Digital Equipment Corporation (DEC)
Pro 350 computer, a PDP-11-based machine that was sold in the early
to mid-'80's. Xhomer is based on the PDP-11 CPU core from the SIMH simulator,
and is written entirely in C.
+ More optimizations in CPU code - Bochs 2.3.7 is more than 2x faster
than Bochs 2.3.5 build !
- Implemented LBA48 support in BIOS
- Added memory access tracing for Bochs internal debugger
- Implemented Intel(R) XSAVE/XRSTOR and AES instruction set extensions
- Many fixes in CPU emulation and internal debugger
- MenuetOS64 floppy images booting perfect again !
- updated LGPL'd VGABIOS to version 0.6b
XXX: Darwin PLIST probably wrong, someone please fix and integrate
better.
* audio2tape can now recognise standard ROM loaders.
* tzxlist now outputs block and tape lengths.
* snap2tzx: add 0.1s pause between blocks to ensure a gap between edges.
* tapeconv: add options for embedding metadata into the created file.
* tape2wav: ensure pulses do not get rounded down inappropriately.
* Allow building without libaudiofile.
* New upd765 FDC emulation; all known +3 DSK images now work.
* Loading acceleration.
* Automatic saves while using RZX recording.
* Many improvements to Win32 UI.
* Improved widget UI, with look and feel borrowed from that in FuseX.
* Emulation core improvements.
* Debugger improvements.
* Miscellaneous improvements.
* Memory management change: memory allocation functions now abort on failure.
Leads to simpler code both internally and for users of the library.
* Support for tape acceleration.
* IDE improvements to allow DivIDE to support FATware.
* New API to deal with flagging automatic snapshots in RZX files.
* New function to get length (time) of a tape block.
* 128K SNA files are now treated as being for the Pentagon 128 rather than
the Spectrum 128.
* SNA files now written out correctly.
* Handle MDR write protection flag correctly.
* Allow MDR images with bad checksums to load (the error will be handled by
the If1 ROM).
* Support saving custom ROMs in SZX snapshots.
* Support for DivIDE, Kempston mouse and the simple IDE interface
in SZX snapshots.
* Allow building without libgcrypt.
* Amiga and MorphOS compilation fixes.
* Don't produce empty libraries to fix build process on OpenSolaris.
* Remove deprecated functions.
* Tweak timings for TS2068.
- A large number of regression test fixes.
- Performance improvements in memory management.
- Improved POP3 support in inetcomm.
- Initial implementation of the XInput DLL.
- Various bug fixes.
(including DOS, Windows 3.x and Win32 executables) on Unix. It consists
of a program loader which loads and executes an Microsoft Windows binary,
and a library that implements Windows API calls using their Unix or X11
equivalents. The library may also be used for porting Win32 code into
native Unix executables.
c99 style-inline functions are in effect (e.g. on Darwin and when
__GNUC_STDC_INLINE__ is defined).
(this was reported back when 3.8 came out on the simh mailing list,
so hopefully Bob Supnik and crew will include a fix in the next release,
when ever that is.)
Changes:
- Applying a patch from Kiyotaka Inaba which causes an ARM UND
exception to be generated by the instruction word 0xe6000011, which
is needed by gdb when running inside the emulator. Also enabling
ARM UND exceptions for ARM floating point instructions (needed by
both Linux and NetBSD/arm).
- Fix for a free() bug in bootblock_iso9660.c. Updating the
OpenBSD/landisk installation instructions from 4.2 to 4.4, after
verifying that it works.
Based on PR 39750 and some clean up.
ChangeLog
V3.8.0 15-Jun-2008
SCP and libraries:
* Fixed bug in local/global register search (found by Mark Pizzolato)
* Fixed bug in restore of RO units (from Mark Pizzolato)
* Added SET/SHO/NO BR with default argument (from Dave Bryan)
* Worked around Telnet negotiation problem with QCTerm (from Dave Bryan)
GRI-909:
* Added GRI-99 support
HP2100 (all changes from Dave Bryan):
* Implemented 12966A Buffered Asynchronous Communications Interface simulator
* Added SET CPU DEBUG and OS/VMA flags, enabled OS/VMA
* Corrected MP W5 (JSB) jumper action, SET/SHOW reversal, mp_mevff clear on interrupt with I/O instruction in trap cell
* Removed DBI support from 1000-M (was temporary for RTE-6/VM)
* Enabled EMA and VIS, added EMA, VIS, and SIGNAL debug flags
* Enabled SIGNAL instructions, SIG debug flag
* Fixed single stepping through interrupts
* Implemented VMA, OS, VIS, SIGNAL, and EMA firmware extensions
* Fixed unsigned divide bug in .DDI
* Fixed unsigned multiply bug in .DMP
* Fixed B register return bug in /CMRT
* DS disk: corrected and verified ioCRS action
* MUX: sync mux poll with console poll for idle compatibility
* PTR: fixed trailing null counter for tape re-read
* CLK: synchronized CLK with TTY if set for 10 msec.
* TTY: changed TTY output wait from 100 to 200 for MSU BASIC
Nova (all changes from Bruce Ray):
* Added CPU support for third-party 64KW memory
* Added CPU history support
* Renamed CLK to RTC, to match DG literature
* Renamed DK to DKP, to match DG literature
* Changed DKP bootstrap to DG official sequence
* Rename DP to DSK, to match DG literature
* Changed DSK bootstrap to DG official sequence
* Renamed MT to MTA, to match DG literature
* Changed MTA bootstrap to DG official sequence
PDP11:
* Fixed DMA memory address limit test (found by John Dundas)
* Fixed MMR0 treatment in RESET (found by Walter Mueller)
* Fixed write behavior of 11/70 MBRK, LOSIZE, HISIZE (found by Walter Mueller)
* Added support to set default state of KDJ11B,E clock control register
* Added support for DC11
* Added support for KE11A
* Added support for KG11A (from John Dundas)
* Added support for RC11 (from John Dundas)
* Added modem control to DL11
* Rename TTIX/TTOX to DLI/DLO, to match DC11 nomenclature
V3.7.3 02-Sep-2007
SCP:
* -Fixed bug in SET THROTTLE command
PDP-10:
* Fixed non-portable usage in SHOW HISTORY routine
PDP-11:
* TA: forward op at BOT skips initial file gap
PDP-8:
* CT: forward op at BOT skips initial file gap
* -CT: fixed handling of BEOT
VAX, VAX780::
* CPU: fixed bug in read access g-format indexed specifiers
V3.7.2 12-Jul-2007
Ethernet library (from Dave Hittner):
* fixed non-ethernet device removal loop (from Naoki Hamada)
* added dynamic loading of wpcap.dll;
* corrected exceed max index bug in ethX lookup
* corrected failure to look up ethernet device names in the registry on Windows XP x64
Honeywell 316/516 (from Theo Engel)
* LPT: fixed loss of last print line (from Theo Engel)
* MT: fixed bug in write without stop (from Theo Engel)
* CLK: fixed bug in clock increment (from Theo Engel)
IBM 1401:
* added recognition of overlapped operation modifiers
* remove restriction on load-mode binary tape operations
* fixed read tape mark operation (found by Van Snyder)
PDP-1:
* -fixed typo in SBS clear (from Norm Lastovica)
PDP-11:
* RH, RP, TU: CS1 DVA is in the device, not the MBA
PDP-8:
* fixed typo (from Norm Lastovica)
VAX:
* revised idle detector
V3.7.1 12-May-2007
SCP and libraries:
* fixed bug in get_sim_opt (reported by Don North)
* fixed bug in RESTORE with changed memory size
* fixed breakpoint actions in DO command file processing (from Dave Bryan)
HP2100 (all fixes from Dave Bryan):
* IPLI EDT delays DMA completion interrupt for TSB
* MUX:
* corrected "mux_sta" size from 16 to 21 elements
* fixed "muxc_reset" to clear lines 16-20
* fixed control card OTx to set current channel number
* fixed to set "muxl_ibuf" in response to a transmit interrupt
* changed "mux_xbuf", "mux_rbuf" declarations from 8 to 16 bits
* fixed to set "mux_rchp" when a line break is received
* fixed incorrect "odd_par" table values
* reversed test in "RCV_PAR" to return "LIL_PAR" on odd parity
* fixed mux reset (ioCRS) to clear port parameters
* fixed to use PUT_DCH instead of PUT_CCH for data channel status
* added DIAG/TERM modifiers to implement diagnostic mode
PDP-11:
* CPU: changed memory size routine to work with RESTORE
* HK: NOP and DCLR (at least) do not check drive type
* HK: MR2 and MR3 only updated on NOP
* TU: TMK sets FCE only on read (found by Naoki Hamada)
* XU: added missing FC_RMAL command
* XU: cleared multicast on write
VAX-11/780:
* modified mbz checks to reflect 780 microcode patches (found by Naoki Hamada)
V3.7.0 03-Feb-2007
SCP and libraries:
* Implemented throttle commands
* Added idle support
* Added -e to control error processing in DO command files (from Dave Bryan)
* Fixed handling of non-printable characters in KSR mode
* Fixed bug in reverse operations for P7B-format tapes
* Fixed bug in reverse operations across erase gaps
GRI-909:
* Fixed handling of non-printable characters in KSR mode
Honeywell 316/516
* Fixed handling of non-printable characters in KSR mode
HP 2100:
* Reorganized CPU modules for easier addition of new instructions
* Added Double Integer instructions, 1000-F CPU, 2114 and 2115 CPUs, 12K and 24K memory sizes, 12607B and 12578A DMA controllers, and 21xx binary loader protection
* Fixed DMS self-test instruction execution on 1000-M
* Fixed indirect interrupt holdoff logic
* Fixed DS REQUEST STATUS to clear status-1 (from Dave Bryan)
* Added Floating Point Processor (from Dave Bryan)
* Fixed LPS diag-mode CLC response
IBM 7094:
* Fixed new bug in halt IO wait loop
* Added IFT, EFT expanded core test instructions
Interdata:
* Removed separate multiplexor clock
* Added idle support
* Synced multiplexor poll to real-time clock
* Fixed handling of non-printable characters in KSR mode
* Synced keyboard poll to real-time clock
* Changed line-time clock to be free-running
PDP-1:
* Added 16-channel sequence break system (API) support
* Added PDP-1D support (including timesharing clock)
* Added Type 630 data communications subsystem (multiplexer)
* Separated TTI, TTO for API support
* Fixed bugs in symbolic character input, block loader
PDP-10:
* Added idle support
* Synced keyboard poll to real-time clock
* Added card reader support
PDP-11:
* Added idle support
* Fixed bug in ASH -32 C value
* Fixed RF11 unit mask (found by John Dundas)
* Synced keyboard, Ethernet, and multiplexer polls to real-time clock
* Added clock coscheduling support
* Added TA11 (casette) support
* Changed DHQ11 to be off by default
* Fixed operand order in EIS instructions (found by W.F.J. Mueller)
PDP-18b:
* Fixed incorrect value of PC on instruction fetch mem mmgt error
* Fixed PDP-15 handling of mem mmgt traps (sets API 3)
* Fixed PDP-15 handling of CAL API 4 (sets only if 0-3 inactive)
* Fixed PDP-15 CAF to clear memory management mode register
* Fixed boundary test in KT15/XVM (reported by Andrew Warkentin)
* Added XVM RDCLK instruction
* Added idle support and infinite loop detection
* Fixed RF15, DSCD does not clear function register
* Added PDP-15 instructions for program selection of console duplex status
* Fxed PDP-15 handling of reader out-of-tape
* Fixed console and multiplexer handling of non-printable characters in KSR mode
* Changed real-time clock to be free running
* Synced keyboard poll to real-time clock
PDP-8:
* Fixed SC value after DVI overflow (found by Don North)
* Added idle support and infinite loop detection
* Added TA8E support
* Changed real-time clock to be free running
* Added ability to disambiguate overlapping IOT definitions in symbolic input and output
* Fxed console handling of non-printable characters in KSR mode
* Synced keyboard poll to real-time clock
VAX, VAX780:
* Added idle support
* Fixed operand order in EIS instructions (found by W.F.J. Mueller)
V3.6.1 22-Jul-2006
SCP:
* Implemented SET/SHOW PCHAR
all DECtapes:
* Fixed conflict in ATTACH switches
HP2100 (from Dave Bryan):
* Added CAPACITY as alternate for REEL
* Fixed EOT test for unlimited reel size
IBM 1620 (from Tim McBride):
* Fixed card reader fgets call
* Fixed card reader boot sequence
IBM 7094:
* Fixed bug in halt IO wait loop
* Fixed bug in reading full 80 column binary cards
* Added binary loader (courtesy of Dave Pitt)
Interdata 32b:
* Fixed transcription errors in disk boot loader (found by Davis Johnson)
PDP-1:
* Fixed bugs in MUS and DIV
PDP-11:
* CIS: added interrupt tests to character instructions
* CIS: added 11/44 stack probe test to MOVCx (only)
* KL11/DL11: first release
* RF11: first release
* TTI, TTO: added UC support to TTI, TTO
18b PDP's:
* CPU: fixed RESET to clear AC, L, and MQ
* DT: fixed checksum calculation bug for Type 550
* FPP: fixed bugs in left shift, multiply
* TTI, TTO: fixed Baudot letters/figures inversion for PDP-4
* TTI, TTO: fixed letters/figures tracking for PDP-4
* TTI, TTO: fixed PDP-4/PDP-7 terminal default to be local echo
* Added FioDEC, Baudot display
* Generalized LOAD to handle HRI, RIM, and BIN files
PDP-8:
* TTIX: fixed bug in DETACH routine
V3.6.0 20-Apr-2006
SCP and libraries
* Revised save/restore format to check simulator options for consistency
Most magnetic tapes
* Added support for limiting tape capacity to a particular size in MB
IBM 7094 - First release
VAX and VAX-11/780 (most bugs found by Tim Stark)
* Added KESU capability to virtual examine
* Fixed bugs in virtual examine
* Rewrote CPU history function for improved usability
* Fixed fault cleanup to clear PSL<tp>
* Fixed ADAWI r-mode to preserve dst<31:16>
* Fixed ACBD/G to test correct operand
* Fixed access checking on modify-class specifiers
* Ffixed branch address calculation in CPU history
* Fixed bug in reported VA on faulting cross-page write
* Fixed POLYD, POLYG to clear R4, R5
* Fixed POLYD, POLYG to set R3 correctly
* Fixed POLYD, POLYG to not exit prematurely if arg = 0
* Fixed POLYD, POLYG to do full 64b multiply
* Fixed POLYF, POLYD, POLYG to remove truncation on add
* Fixed POLYF, POLYD, POLYG to mask multiply result to 31b/63b/63b
* Fixed fp add routine to test for zero via fraction to support "denormal" argument from POLYF, POLYD, POLYG
* Fixed bug in 32b floating multiply routine
* Fixed bug in 64b extended modulus routine
VAX-11/780 only (most bugs found by Tim Stark)
* Added FLOAD command, loads system file from console floppy disk
* Fixed MOVTC, MOVTUC to preserve cc's through page faults
* Fixed MOVTUC to stop on translated == escape
* Fixed CVTPL to set registers before destination reg write
* Fixed CVTPL to set correct cc bit on overflow
* Fixed EDITPC to preserve cc's through page faults
* Fixed EDITPC EO$BLANK_ZERO count, cc test
* Fixed EDITPC EO$INSERT to insert fill instead of blank
* Fixed EDITPC EO$LOAD_PLUS/MINUS to skip character
* Fixed MNEGH to test negated sign, clear C
* Fixed carry propagation in qp_inc, qp_neg, qp_add
* Fixed pack routines to test for zero via fraction
* Fixed ACBH to set cc's on result
* Fixed POLYH to set R3 correctly
* Fixed POLYH to not exit prematurely if arg = 0
* Fixed POLYH to mask multiply result to 127b
* Fixed fp add routine to test for zero via fraction to support "denormal" argument from POLYH
* Fixed EMODH to concatenate 15b of 16b extension
* Fixed bug in reported VA on faulting cross-page write
* Added access check on system PTE reference in TLB miss flows
* Added MBZ checking in LDPCTX and MTPR
* Compatibility mode: fixed omission of SXT
* Compatibility mode: fixed order of operand fetching in XOR
* CR: added CR11/CD11 support
Honeywell 316
* CPU: fixed bugs in LLL, LRL (found by Theo Engel)
* LPT: fixed bug in blanks backscanning (found by Theo Engel)
* TTY: fixed bugs in punch state handling (found by Theo Engel)
IBM 1401 - Fixed bug in divide (reported by Van Snyder)
Interdata
* CPU: fixed bug in DH (found by Mark Hittinger)
* SELCH: fixed bug, GO preserves EXA and SSTA (found by Davis Johnson)
* IDC: fixed WD/WH handling (found by Davis Johnson)
* IDC: fixed bug, nop command should be ignored (found by Davis Johnson)
NOVA - Fixed bug in DIVS (found by Mark Hittinger)
PDP-11
* CPU: fixed order of operand XOR operand fetch for SDSD-type models
* CIS: fixed bug in decode table (found by John Dundas)
* CIS: fixed bug in ASHP
* CIS: fixed bug in write decimal string with mmgt enabled
* CIS: fixed bug in 0-length strings in multiply/divide
* CR: added CR11/CD11 support (from John Dundas)
* TC: fixed READ to set extended data bits in TCST (found by Alan Frisbie)
V3.5.2 20-Jan-2006
All 7-track tapes: added write support for P7B format
All console terminals: KSR/UC output suppresses non-printable characters
PDP10:
* RP.c: fixed DCLR not to clear disk address
PDP11 (also VAX, VAX780 where applicable):
* HK: fixed overlapped seek interaction with NOP, etc
* RH: added enable/disable routine
* RP, RQ, TQ, TS, TU: widened address display to 64b when USE_ADDR64
* RP: fixed DCLR not to clear disk address
* RP, TU: fixed device enable/disable logic to include Massbus adapter
* RP, TU: widened address display to 64b when USE_ADDR64
* TU: changed default adapter to TM03 (for VMS)
PDP8:
* DF, RF, DT: fixed unaligned access bug (found by Doug Carman)
* RL: fixed IOT 61 decoding bug (found by David Gesswein)
VAX:
* CPU: fixed breakpoint detection when USE_ADDR64 option is active
* CPU: fixed CVTfi to trap on integer overflow if PSW<iv> set
* Changed default compile options to USE_ADDR64
VAX780: first release
V3.5.1 15-Oct-2005
IBM 1401:
* Changed character encodings to be consistent with Paul Pierce 709X simulator
* Changed card column binary format to be consistent with Paul Pierce 709X simulator
* Added choice of business or Fortran encoding for card punch, line printer , and inquiry terminal output
* Added mode control for old/new character encodings
IBM 1620: Changed character encodings to be consistent with 7094 and 1401
PDP-11: Fixed bug in autoconfiguration algorithm (missing XU table entry)
VAX:
* Fixed bug in autoconfiguration algorithm (missing XU table entry)
* Fixed bug in floating point structure definitions with 32b compilation option
V3.5.0 09-Sep-2005
SCP and libraries:
* Fixed to trim trailing spaces on file names
* sim_ether: added Windows user-defined adapter names (from Timothe Litt)
* sim_sock: fixed SIGPIPE error on UNIX
* sim_tape: fixed misallocation of TPC map array in 64b configurations
* sim_tmxr: added support for SET <unit> DISCONNECT
IBM 1401:
* Fixed clearing of SSB-SSG on reset (reported by Ralph Reinke)
* Fixed problem with 2, 5 character R, P instructions (reported by Van Snyder)
* Removed error stops from MCE
PDP-11:
* Revised autoconfiguration algorithm and interface
* Added additional 11/60 registers
* pdp11_vh: fixed bug in vector display routine
* pdp11_xu: fixed runt packet processing (found by Tim Chapman)
PDP-15:
* Removed spurious AAS instruction
* Fixed bug in SHOW TTIX CONN/STATS
* Fixed bug in SET TTIXn LOG/NOLOG
PDP8
* Fixed bug in SHOW TTIX CONN/STATS
* Fixed bug in SET TTIXn LOG/NOLOG
HP2100
* Added SET MUXLn DISCONNECT
Interdata:
* fixed bug in SHOW PAS CONN/STATS
* Added SET PASLn DISCONNECT
SDS
* Fixed bug in SHOW MUX CONN/STATS
* Added SET MUXLn DISCONNECT
V3.4.0 03-May-05
SCP and libraries:
* Fixed ASSERT code
* Revised syntax for SET DEBUG (from Dave Bryan)
* Revised interpretation of fprint_sym, fparse_sym returns
* Moved DETACH sanity tests into detach_unit
* Added test for WSAEINPROGRESS (from Tim Riker)
PDP-10:
* Fixed TU bug, ERASE and WREOF should not clear done (reported by Rich Alderson)
* Fixed TU error reporting
PDP-11:
* Fixed TU error reporting
Interdata 16b:
* Fixed bug in show history routine (from Mark Hittinger)
* Revised examine/deposit to do words rather than bytes
Interdata 32b:
* Fixed bug in initial memory allocation
* Fixed bug in show history routine (from Mark Hittinger)
* Revised examine/deposit to do words rather than bytes
HP2100 (all changes and fixes from Dave Bryan)
* CPU: reorganized CPU options
* CPU1: reorganized EIG routines
* Added FFP support
V3.3.2 09-Mar-05
SCP: added ASSERT command (from Dave Bryan)
PDP-11:
* Fixed bugs in RESET for 11/70 (reported by Tim Chapman)
* Fixed bug in SHOW MODEL (from Sergey Okhapkin)
* Made SYSID variable for 11/70 (from Tim Chapman)
* Fixed MBRK write case for 11/70 (from Tim Chapman)
* RQ: added RA60, RA71, RA81 disks
* RY: fixed bug in boot code (reported by Graham Toal)
H316
* Fixed IORETURN macro
* PT: fixed bug in OCP '0001 (found by Philipp Hachtmann)
* MT: fixed error reporting from OCP (found by Philipp Hachtmann)
HP2100 (from Dave Bryan)
* Fixed missing MPCK on JRS target
* Removed EXECUTE instruction (is NOP in actual microcode)
* Fixed missing negative overflow renorm in StoreFP
I1401: fixed bug in LPT write line routine (reported by Van Snyder)
Interdata 32b: fixed branches to mask new PC (from Greg Johnson)
VAX:
* Fixed initial state of cpu_extmem
* RQ: added RA60, RA71, RA81 disks
V3.3.1 08-Jan-05
H316:
* Fxed bug in DIV
* TTY: fixed bug in SKS '104 (reported by Philipp Hachtmann)
* TTY: fixed bug in SKS '504
* Added reader/punch ASCII file support
* Added Teletype reader/punch support
* DP: fixed bug in skip on !seeking
* MT: fixed bug in DMA/DMC support
* LP: fixed bug in DMA/DMC support
HP2100:
* Fixed DMA reset to clear alternate CTL flop (from Dave Bryan)
* Fixed DMA reset to not clear control words (from Dave Bryan)
* Fixed SBS, CBS, TBS to do virtual reads
* Separated A/B from M[0/1], for DMA IO (from Dave Bryan)
* Added SET CPU 21MX-M, 21MX-E (from Dave Brian)
* Disabled TIMER/EXECUTE/DIAG instructions for 21MX-M (from Dave Bryan)
* Added post-processor to maintain T/M consistency (from Dave Bryan)
* DS: first release
* LPS, LPT: added restart when set online, etc (from Dave Bryan)
* LPS: col count for non-printing characters (from Dave Bryan)
IBM 1401: added address argument support (from Van Snyder)
Interdata: added magtape read-only file support
PDP-11:
* Fixed WAIT to work in all modes (from John Dundas)
* TM, TS: added read-only file support
SDS 940: added magtape read-only file support
Due to small issue with gxemul (PCI registers values of piix
controller are not saved having been written) FreeBSD in
gxemul panics after detecting IDE devices. Apply this patch to
fix it...
Bump PKGREVISION.