- Some fonts were modified to look better on the GBA's smaller-resolution screen.
- A few key code locations have been changed by replacing opcodes:
- sequence 88 D0 FD CA D0 FA to FA EA EA EA EA EA in a single spot,
- opcode 8D to FB in a single spot,
- opcode E8 to FC in a single spot,
- opcode A5 to FF in a single spot.
Capcom Classics Mini Mix
Moderator: Moderators
-
- Posts: 1287
- Joined: Thu May 19, 2005 11:30 am
Re: Capcom Classics Mini Mix
Re: Capcom Classics Mini Mix
The first of these code changes replaces a delay loop with a specific 1-byte NOP, presumably a command to tell the emulated memory controller to pause the CPU until something happens.
Code: Select all
@loop:
dey
bne @loop
dex
bne @loop
-
- Posts: 1287
- Joined: Thu May 19, 2005 11:30 am
Re: Capcom Classics Mini Mix
That delay loop is what makes the Bionic Commando title screen reveal itself line-by-line.