Update version number to v16.
This commit is contained in:
parent
adfda61a2f
commit
d0c7ea56a7
5 changed files with 15 additions and 18 deletions
|
|
@ -1,4 +1,4 @@
|
||||||
PCem v15 BSD supplement
|
PCem v16 BSD supplement
|
||||||
|
|
||||||
|
|
||||||
You will need the following libraries :
|
You will need the following libraries :
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
PCem v15 Linux supplement
|
PCem v16 Linux supplement
|
||||||
|
|
||||||
|
|
||||||
You will need the following libraries :
|
You will need the following libraries :
|
||||||
|
|
|
||||||
25
readme.txt
25
readme.txt
|
|
@ -1,22 +1,19 @@
|
||||||
PCem v15
|
PCem v16
|
||||||
|
|
||||||
PCem is licensed under the GPL, see COPYING for more details.
|
PCem is licensed under the GPL, see COPYING for more details.
|
||||||
|
|
||||||
Changes since v14:
|
Changes since v15
|
||||||
- New machines added - Zenith Data SupersPort, Bull Micral 45, Tulip AT Compact,
|
- New machines added - Commodore SL386SX-25, ECS 386/32, Goldstar GDC-212M,
|
||||||
Amstrad PPC512/640, Packard Bell PB410A, ASUS P/I-P55TVP4, ASUS P/I-P55T2P4,
|
Hyundai Super-286TR, IBM PS/1 Model 2133 (EMEA 451), Itautec Infoway Multimidia,
|
||||||
Epox P55-VA, FIC VA-503+
|
Samsung SPC-4620P, Leading Edge Model M
|
||||||
- New graphics cards added - Image Manager 1024, Sigma Designs Color 400,
|
- New graphics cards added - ATI EGA Wonder 800+, AVGA2, Cirrus Logic GD5428,
|
||||||
Trigem Korean VGA
|
IBM 1MB SVGA Adapter/A
|
||||||
- Added emulation of AMD K6 family and IDT Winchip 2
|
- New sound card added - Aztech Sound Galaxy Pro 16 AB (Washington)
|
||||||
- New CPU recompiler. This provides several optimisations, and the new design allows
|
- New SCSI card added - IBM SCSI Adapter with Cache
|
||||||
for greater portability and more scope for optimisation in the future
|
- Support FPU emulation on pre-486 machines
|
||||||
- Experimental ARM and ARM64 host support
|
|
||||||
- Read-only cassette emulation for IBM PC and PCjr
|
|
||||||
- Numerous bug fixes
|
- Numerous bug fixes
|
||||||
|
|
||||||
Thanks to dns2kv2, Greatpsycho, Greg V, John Elliott, Koutakun, leilei, Martin_Riarte,
|
Thanks to EluanCM, Greatpsycho, John Elliott, and leilei for contributions towards this release.
|
||||||
rene, Tale and Tux for contributions towards this release.
|
|
||||||
|
|
||||||
|
|
||||||
PCem emulates the following machines:
|
PCem emulates the following machines:
|
||||||
|
|
|
||||||
2
src/pc.c
2
src/pc.c
|
|
@ -582,7 +582,7 @@ void runpc()
|
||||||
if (win_title_update)
|
if (win_title_update)
|
||||||
{
|
{
|
||||||
win_title_update=0;
|
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);
|
set_window_title(s);
|
||||||
}
|
}
|
||||||
done++;
|
done++;
|
||||||
|
|
|
||||||
|
|
@ -595,7 +595,7 @@ int window_create()
|
||||||
hwnd = CreateWindowEx (
|
hwnd = CreateWindowEx (
|
||||||
0, /* Extended possibilites for variation */
|
0, /* Extended possibilites for variation */
|
||||||
szClassName, /* Classname */
|
szClassName, /* Classname */
|
||||||
"PCem v15", /* Title Text */
|
"PCem v16", /* Title Text */
|
||||||
WS_OVERLAPPEDWINDOW&~WS_SIZEBOX, /* default window */
|
WS_OVERLAPPEDWINDOW&~WS_SIZEBOX, /* default window */
|
||||||
CW_USEDEFAULT, /* Windows decides the position */
|
CW_USEDEFAULT, /* Windows decides the position */
|
||||||
CW_USEDEFAULT, /* where the window ends up on the screen */
|
CW_USEDEFAULT, /* where the window ends up on the screen */
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue