Gameboy Development Forum

Discussion about software development for the old-school Gameboys, ranging from the "Gray brick" to Gameboy Color
(Launched in 2008)

You are not logged in.

Ads

#1 2017-04-19 06:43:30

ISSOtm
Member
From: Somewhere in Echo RAM
Registered: 2017-04-18
Posts: 160
Website

DMA Hijacking - A powerful tool for Game Boy ACE

Hello people, it's my first post here. I hope it will be worth your time reading. Without further ado, enjoy !

DMA Hijacking
What is this ?
It's a simple technique that allows you to run custom code in most GB/SGB/CGB games, provided you have an ACE exploit.
What's the point, then ? It's that code ran through DMA Hijacking will be run on every game frame (for most games, at least).

How is it done ?
If you are familiar enough with OAM, you know about that feature called "OAM DMA" that requires a small routine to be ran in HRAM ?
Well, most games copy the routine when starting up and run it on every frame. I encountered some games which don't transfer OAM unless a specific flag is set ; I believe that it is always possible to override this limitation. more on that later.
But if the routine is modified while the game is running - assuming you modify it fully in-between to VBlanks to prevent a crash, or you temporarily put a RET while modifying - then the game will happily run your custom routine.

Here is the standard routine, given by Nintendo in the GB programming manual :

Code:

ld a, OAMBuffer >> 8
ldh [$FF46], a
ld a, $28
DMALoop:
dec a
jr nz, DMALoop
ret

It's usually placed right at $FF80, but this isn't true for every game.
Now, overwriting the routine to place custom code would yield us 10 bytes to perform custom operations, at the cost of sprites.
But we can do better.

Code:

call DMAHook
ldh [$FF00+c], a
ld a, $28
DMALoop:
dec a
jr nz, DMALoop
ret

Allows us to make the perfect compromise !
Here is a pattern for DMAHook :

Code:

DMAHook:
[ custom code, do whatever you want, it's VBlank time ! ]
ld c, $46
ld a, OAMBuffer >> 8
ret

DMAHook can be anywhere (in WRAM, mostly). It will be executed in the context of the VBlank interrupt, so for most games interrupts will be disabled, etc.
An alert reader will notice the new DMA handler modifies C (whereas the original simply zeroes A). I don't know any game whose behavior is altered by this.

DMA hijacking is also useful when combined with cartswap (swapping carts without shutting the console down, concept found by furrtek, developed by Cryo and me on the GCL forums), because it allows porting ACE to other games.
General procedure :
[*] Acquire ACE in the donor game
[*] Perform cartswap, insert the recipient game
[*] Pseudo-initialize the recipient (clear enough memory to avoid crashing, while keeping our custom code in an unused region of memory we don't clear)
[*] Place the modified DMA handler in HRAM
[*] Transfer control back to the recipient's ROM
[*] ????
[*] Profit.
Video demonstration, performed by Torchickens/ChickasaurusGL in BGB

Possible applications are checking for a button combo to trigger specific code (for example, credits warp), checking one or multiple memory addresses to detect a certain game state, etc.
Possible "attack vectors", ie ways of affecting the recipient game, are setting certain memory addresses (like GameShark), or even better : manipulating the stack.
Manipulating the stack with this technique can not crash if the triggering game state is specific enough. I achieved text pointer manipulation in Pokémon Red this way.



Trivia :
DMA hijacking works similarly to the GameShark : it detected when the GB tried reading from the VBlank interrupt vector, and responded with instructions that applied the codes.
And yep, it is possible to use DMA hijacking to emulate GameShark codes. I have a PoC in Pokémon Red (a [s]VBA[/s] BGB save state), if anyone's interested.


The French Lord Of Laziness.
Legend of Zelda and Undertale fan, I also tend to break Pokémon R/B/Y a little too much.

Twitter | Me on GCL | Discord : ISSOtm#9015 | Skype : isso.tm (I don't login anymore)

Offline

 

#2 2017-05-02 23:25:21

bbsfoo
Member
Registered: 2016-02-08
Posts: 16

Re: DMA Hijacking - A powerful tool for Game Boy ACE

amazing

Offline

 

Board footer

Powered by PunBB
© Copyright 2002–2005 Rickard Andersson