diff options
Diffstat (limited to 'Cart_Reader/MD.ino')
-rw-r--r-- | Cart_Reader/MD.ino | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Cart_Reader/MD.ino b/Cart_Reader/MD.ino index 3ba4ba7..1996238 100644 --- a/Cart_Reader/MD.ino +++ b/Cart_Reader/MD.ino @@ -882,6 +882,12 @@ void getCartInfo_MD() { cartSize = 0x100000;
}
+ //Technoptimistic (Aftermarket)
+ if (!strncmp("MU REMUTE01", id, 11) && (chksum == 0x0000)) {
+ chksum = 0xB55C;
+ cartSize = 0x400000;
+ }
+
//Decoder (Aftermarket)
if (!strncmp("GM REMUTE02", id, 11) && (chksum == 0x0000)) {
chksum = 0x5426;
|