Update version number to v16.

This commit is contained in:
SarahW 2020-04-19 15:50:51 +01:00
commit d0c7ea56a7
5 changed files with 15 additions and 18 deletions

View file

@ -1,4 +1,4 @@
PCem v15 BSD supplement
PCem v16 BSD supplement
You will need the following libraries :

View file

@ -1,4 +1,4 @@
PCem v15 Linux supplement
PCem v16 Linux supplement
You will need the following libraries :

View file

@ -1,22 +1,19 @@
PCem v15
PCem v16
PCem is licensed under the GPL, see COPYING for more details.
Changes since v14:
- New machines added - Zenith Data SupersPort, Bull Micral 45, Tulip AT Compact,
Amstrad PPC512/640, Packard Bell PB410A, ASUS P/I-P55TVP4, ASUS P/I-P55T2P4,
Epox P55-VA, FIC VA-503+
- New graphics cards added - Image Manager 1024, Sigma Designs Color 400,
Trigem Korean VGA
- Added emulation of AMD K6 family and IDT Winchip 2
- New CPU recompiler. This provides several optimisations, and the new design allows
for greater portability and more scope for optimisation in the future
- Experimental ARM and ARM64 host support
- Read-only cassette emulation for IBM PC and PCjr
Changes since v15
- New machines added - Commodore SL386SX-25, ECS 386/32, Goldstar GDC-212M,
Hyundai Super-286TR, IBM PS/1 Model 2133 (EMEA 451), Itautec Infoway Multimidia,
Samsung SPC-4620P, Leading Edge Model M
- New graphics cards added - ATI EGA Wonder 800+, AVGA2, Cirrus Logic GD5428,
IBM 1MB SVGA Adapter/A
- New sound card added - Aztech Sound Galaxy Pro 16 AB (Washington)
- New SCSI card added - IBM SCSI Adapter with Cache
- Support FPU emulation on pre-486 machines
- Numerous bug fixes
Thanks to dns2kv2, Greatpsycho, Greg V, John Elliott, Koutakun, leilei, Martin_Riarte,
rene, Tale and Tux for contributions towards this release.
Thanks to EluanCM, Greatpsycho, John Elliott, and leilei for contributions towards this release.
PCem emulates the following machines:

View file

@ -582,7 +582,7 @@ void runpc()
if (win_title_update)
{
win_title_update=0;
sprintf(s, "PCem v15 - %i%% - %s - %s - %s", fps, model_getname(), models[model].cpu[cpu_manufacturer].cpus[cpu].name, (!mousecapture) ? "Click to capture mouse" : ((mouse_get_type(mouse_type) & MOUSE_TYPE_3BUTTON) ? "Press CTRL-END to release mouse" : "Press CTRL-END or middle button to release mouse"));
sprintf(s, "PCem v16 - %i%% - %s - %s - %s", fps, model_getname(), models[model].cpu[cpu_manufacturer].cpus[cpu].name, (!mousecapture) ? "Click to capture mouse" : ((mouse_get_type(mouse_type) & MOUSE_TYPE_3BUTTON) ? "Press CTRL-END to release mouse" : "Press CTRL-END or middle button to release mouse"));
set_window_title(s);
}
done++;

View file

@ -595,7 +595,7 @@ int window_create()
hwnd = CreateWindowEx (
0, /* Extended possibilites for variation */
szClassName, /* Classname */
"PCem v15", /* Title Text */
"PCem v16", /* Title Text */
WS_OVERLAPPEDWINDOW&~WS_SIZEBOX, /* default window */
CW_USEDEFAULT, /* Windows decides the position */
CW_USEDEFAULT, /* where the window ends up on the screen */