What's new

Trasfer Pak Pokemon Stadium 2 to Pokemon Crystal

Dyer

Unattainable Darkness
Hey people a little help here please

I've been looking for this everywhere and no one seems to be running into this same problem I have

I have N Rage 2.00 and everything runs great from VBA to Project 64 but what about the other way around?

What about when I get coins at the mini games or items from the mystery gift and all that?

Is there a way to update/rewrite the gameboy file with the new info?

Thanks in advance
 

squall_leonhart

The Great Gunblade Wielder
afaik, the code is there to write the carts as well as read them....

edit, yup it is

Code:
bool ReadCartNorm(LPGBCART Cart, WORD dwAddress, BYTE *Data); // For all non-MBC carts; fixed 0x8000 ROM; fixed, optional 0x2000 RAM
bool WriteCartNorm(LPGBCART Cart, WORD dwAddress, BYTE *Data);
bool ReadCartMBC1(LPGBCART Cart, WORD dwAddress, BYTE *Data);
bool WriteCartMBC1(LPGBCART Cart, WORD dwAddress, BYTE *Data);
bool ReadCartMBC2(LPGBCART Cart, WORD dwAddress, BYTE *Data);
bool WriteCartMBC2(LPGBCART Cart, WORD dwAddress, BYTE *Data);
bool ReadCartMBC3(LPGBCART Cart, WORD dwAddress, BYTE *Data);
bool WriteCartMBC3(LPGBCART Cart, WORD dwAddress, BYTE *Data);
bool ReadCartMBC5(LPGBCART Cart, WORD dwAddress, BYTE *Data);
bool WriteCartMBC5(LPGBCART Cart, WORD dwAddress, BYTE *Data);
 
OP
D

Dyer

Unattainable Darkness
Hold on are saying that my project 64 was supposed to rewrite the gameboy save file?
'cause it really doesn't...
EDIT: Alright I got it all I have to do is import the battery in the VBA. Thanks anyway
 
Last edited:

Top