mirror of https://github.com/stella-emu/stella.git
Changed release date to today; there's no point waiting for next week.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@2422 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
cefc0d3e6b
commit
b7d8099ed0
|
@ -12,7 +12,7 @@
|
|||
Release History
|
||||
===========================================================================
|
||||
|
||||
3.5.5 to 3.6: (March 23, 2012)
|
||||
3.5.5 to 3.6: (March 16, 2012)
|
||||
|
||||
* Added support for 2600-daptor II device, including native support
|
||||
for 7800 controllers, BoosterGrip and Keypad controllers. Special
|
||||
|
@ -35,6 +35,9 @@
|
|||
of the booster and trigger buttons was reversed. Related to this,
|
||||
renamed these actions in the Event Mapping dialog to be more clear.
|
||||
|
||||
* Reverted to SDL 1.2.14 for the Windows 98/2k release, since SDL
|
||||
1.2.15 isn't supported in that environment.
|
||||
|
||||
* Updated included PNG library to latest stable version.
|
||||
|
||||
-Have fun!
|
||||
|
|
|
@ -9,4 +9,4 @@ the Stella Website at:
|
|||
Enjoy,
|
||||
|
||||
The Stella Team
|
||||
March 23, 2012
|
||||
March 16, 2012
|
||||
|
|
|
@ -2,7 +2,7 @@ stella (3.6-1) stable; urgency=high
|
|||
|
||||
* Version 3.6 release
|
||||
|
||||
-- Stephen Anthony <stephena@users.sf.net> Fri, 23 Mar 2012 18:38:25 +0200
|
||||
-- Stephen Anthony <stephena@users.sf.net> Fri, 16 Mar 2012 18:38:25 +0200
|
||||
|
||||
|
||||
stella (3.5.5-1) stable; urgency=high
|
||||
|
|
|
@ -45,12 +45,12 @@ class System;
|
|||
1 -> reset key column to 0 (if D4 = 0)
|
||||
0 -> enable RAM writing (if D4 = 1)
|
||||
D4 = RAM enable: 1 = disable RAM, 0 = enable RAM
|
||||
D3 = keyboard row 1 input (0 = key pressed)
|
||||
D3 = keyboard row 3 input (0 = key pressed)
|
||||
D2 = keyboard row 1 input (0 = key pressed)
|
||||
D1 = bank select high bit
|
||||
D0 = bank select low bit
|
||||
|
||||
INPT0: D7 = CTRL key input (0 on startup / 1 = key pressed)
|
||||
INPT0: D7 = FUNC key input (0 on startup / 1 = key pressed)
|
||||
INPT1: D7 = always HIGH input (pulled high thru 20K resistor)
|
||||
INPT2: D7 = always HIGH input (pulled high thru 20K resistor)
|
||||
INPT3: D7 = SHIFT key input (0 on startup / 1 = key pressed)
|
||||
|
@ -98,10 +98,7 @@ class System;
|
|||
by two 20K resistors, then it goes through a hex inverting schmitt trigger to
|
||||
square it up. This then runs into bit 7 of portA.
|
||||
|
||||
This code was heavily borrowed from z26, and uses conventions defined
|
||||
there. Specifically, IOPortA is treated as a complete uInt8, whereas
|
||||
the Stella core actually stores this information in boolean arrays
|
||||
addressable by DigitalPin number.
|
||||
This code was heavily borrowed from z26.
|
||||
|
||||
@author Stephen Anthony & z26 team
|
||||
@version $Id$
|
||||
|
|
|
@ -108,7 +108,7 @@ rm -rf $RPM_BUILD_DIR/%{name}-%{version}
|
|||
%_datadir/icons/large/%{name}.png
|
||||
|
||||
%changelog
|
||||
* Fri Mar 23 2012 Stephen Anthony <stephena@users.sf.net> 3.6-1
|
||||
* Fri Mar 16 2012 Stephen Anthony <stephena@users.sf.net> 3.6-1
|
||||
- Version 3.6 release
|
||||
|
||||
* Sat Feb 4 2012 Stephen Anthony <stephena@users.sf.net> 3.5.5-1
|
||||
|
|
Loading…
Reference in New Issue