Skip to content

Commit

Permalink
Changes for new release; Version 0.1.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
sergio-gdr committed Nov 4, 2013
1 parent 0a4e120 commit 6335fbe
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 18 deletions.
15 changes: 1 addition & 14 deletions AUTHORS
@@ -1,14 +1 @@
VisualBoy and VisualBoyAdvance original development:

- Forgotten (see the Contact section in the README)

Current maintainer:

- S�bastien Guignot aka kxu <kxu@users.sourceforge.net>

Contributions:

- Costis <costis@gbaemu.com>: object mosaic, GP32
- KVA: ARM/THUMB disassembler
- kxu: GTK+ interface
- Yann Parmentier aka kohai: new icons
Sergio Andrés Gómez del Real <Sergio.G.DelReal@gmail.com>
10 changes: 10 additions & 0 deletions ChangeLog
@@ -1,3 +1,13 @@
2013-11-3 Sergio Andrés Gómez del Real <Sergio.G.DelReal@gmail.com>
Version 0.1.1
* gboy_x86_64: Crucial fix to conform with ABI (some registers must be preserved across function calls).
* gboy_x86_64, gboy_cpu.c: Crucial fix for handling CPU speed changes, in both Assembly and C versions. Game Boy Color-specific fix.
* gboy_cpu.c: Crucial fix for handling HDMA transfers; C core must now be equivalent to Assembly core. Game Boy Color-specific fix.
* gboy_ioctrl.c: Crucial fix when handling WRAM remap. Game Boy Color-specific fix.
* gboy_mbc5.c: Crucial fix for handling MBC5 ROM remap. Game Boy Color-specific fix.
* gboy_sound.c: Some audio-related code improvement.
* configure.ac: Added note to suggest user to install SDL from OS-specific packet manager when missing.

Sergio Andrés Gómez del Real <Sergio.G.DelReal@gmail.com>
Version 0.1
* Initial Release!
4 changes: 4 additions & 0 deletions NEWS
@@ -1,2 +1,6 @@
Version 0.1.1:
Important Bug Fix Release.
View ChangeLog file for details.

Version 0.1:
First official release.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
RealBoy 0.1
RealBoy 0.1.1
4 changes: 2 additions & 2 deletions configure.ac
Expand Up @@ -19,10 +19,10 @@
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.

AC_PREREQ([2.68])
AC_INIT([RealBoy], [0.1])
AC_INIT([RealBoy], [0.1.1])
AC_CONFIG_AUX_DIR(config)
AC_CANONICAL_SYSTEM
AM_PROG_AS(RealBoy, 0.1)
AM_PROG_AS(RealBoy, 0.1.1)
AC_CONFIG_SRCDIR([src/gboy_mbc1.c])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE
Expand Down
2 changes: 1 addition & 1 deletion src/gboy_cpu.c
Expand Up @@ -5528,7 +5528,6 @@ timer_divider_update()
Sint8 ticks;
Uint8 div_tmp;

//cur_tcks <<= cpu_cur_mode;
ticks = (Sint8)cur_tcks;
div_tmp = div_ctrl;
if (tac_on&1)
Expand Down Expand Up @@ -5564,6 +5563,7 @@ void
lcd_refrsh()
{
static Uint8 hdma_tmp;
cur_tcks >>= cpu_cur_mode;

switch (addr_sp[LCDS_REG]&0x3) {
case 0:
Expand Down

0 comments on commit 6335fbe

Please sign in to comment.