mirror of
https://github.com/AppleWin/AppleWin.git
synced 2025-01-04 02:30:53 +00:00
1.27.10: Bump version & update History.txt
This commit is contained in:
parent
f4ccc6929b
commit
155547f847
@ -8,6 +8,20 @@ https://github.com/AppleWin/AppleWin/issues/new
|
|||||||
|
|
||||||
Tom Charlesworth
|
Tom Charlesworth
|
||||||
|
|
||||||
|
|
||||||
|
1.27.10.0 - 4 Nov 2018
|
||||||
|
----------------------
|
||||||
|
. [Change #590] Apple II original: default to 48K (so no LC installed in slot-0).
|
||||||
|
- Added new command line switch: -s0 <languagecard|lc>
|
||||||
|
('lc' is an alias for 'languagecard')
|
||||||
|
- When LC is in slot-0, it now use the Apple II+'s F8 (auto-start) ROM
|
||||||
|
. [Change #408] Support Saturn 64K and 128K cards in slot-0.
|
||||||
|
- Added new command line switch: -s0 <saturn|saturn64|saturn128>
|
||||||
|
('saturn' is an alias for 'saturn128')
|
||||||
|
. [Bug #591] Save-state wasn't preserving the 'key-waiting' flag.
|
||||||
|
. [Bug #587] Debugger: disassembly for branch targets < $1000 were missing the leading '0'.
|
||||||
|
|
||||||
|
|
||||||
1.27.9.0 - 2 Oct 2018
|
1.27.9.0 - 2 Oct 2018
|
||||||
---------------------
|
---------------------
|
||||||
. [Bug #582] Support for partial disk II latch reads when accesses are very close.
|
. [Bug #582] Support for partial disk II latch reads when accesses are very close.
|
||||||
|
@ -252,8 +252,8 @@ DISK_ICON ICON "DISK.ICO"
|
|||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 1,27,9,0
|
FILEVERSION 1,27,10,0
|
||||||
PRODUCTVERSION 1,27,9,0
|
PRODUCTVERSION 1,27,10,0
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
@ -271,12 +271,12 @@ BEGIN
|
|||||||
VALUE "Comments", "https://github.com/AppleWin"
|
VALUE "Comments", "https://github.com/AppleWin"
|
||||||
VALUE "CompanyName", "AppleWin"
|
VALUE "CompanyName", "AppleWin"
|
||||||
VALUE "FileDescription", "Apple //e Emulator for Windows"
|
VALUE "FileDescription", "Apple //e Emulator for Windows"
|
||||||
VALUE "FileVersion", "1, 27, 9, 0"
|
VALUE "FileVersion", "1, 27, 10, 0"
|
||||||
VALUE "InternalName", "APPLEWIN"
|
VALUE "InternalName", "APPLEWIN"
|
||||||
VALUE "LegalCopyright", " 1994-2018 Michael O'Brien, Oliver Schmidt, Tom Charlesworth, Michael Pohoreski, Nick Westgate, Linards Ticmanis"
|
VALUE "LegalCopyright", " 1994-2018 Michael O'Brien, Oliver Schmidt, Tom Charlesworth, Michael Pohoreski, Nick Westgate, Linards Ticmanis"
|
||||||
VALUE "OriginalFilename", "APPLEWIN.EXE"
|
VALUE "OriginalFilename", "APPLEWIN.EXE"
|
||||||
VALUE "ProductName", "Apple //e Emulator"
|
VALUE "ProductName", "Apple //e Emulator"
|
||||||
VALUE "ProductVersion", "1, 27, 9, 0"
|
VALUE "ProductVersion", "1, 27, 10, 0"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
@ -2021,6 +2021,11 @@ LPVOID MemGetSlotParameters(UINT uSlot)
|
|||||||
|
|
||||||
void MemSetSnapshot_v1(const DWORD MemMode, const BOOL LastWriteRam, const BYTE* const pMemMain, const BYTE* const pMemAux)
|
void MemSetSnapshot_v1(const DWORD MemMode, const BOOL LastWriteRam, const BYTE* const pMemMain, const BYTE* const pMemAux)
|
||||||
{
|
{
|
||||||
|
// Create default LC type for AppleII machine (do prior to loading saved LC state)
|
||||||
|
ResetDefaultMachineMemTypes();
|
||||||
|
g_MemTypeAppleII = CT_LanguageCard; // SSv1 doesn't save machine type - so if current machine is Apple II then give it 64K + LC
|
||||||
|
SetExpansionMemTypeDefault();
|
||||||
|
|
||||||
SetMemMode(MemMode ^ MF_INTCXROM); // Convert from SLOTCXROM to INTCXROM
|
SetMemMode(MemMode ^ MF_INTCXROM); // Convert from SLOTCXROM to INTCXROM
|
||||||
SetLastRamWrite(LastWriteRam);
|
SetLastRamWrite(LastWriteRam);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user