mirror of
https://github.com/rvtr/GodMode9i.git
synced 2025-11-02 00:11:07 -04:00
Fix looping on eMMC CID get
This commit is contained in:
parent
cce31e15f2
commit
a00fa3f3f5
@ -58,8 +58,10 @@ bool nandio_startup() {
|
|||||||
fclose(cidFile);
|
fclose(cidFile);
|
||||||
} else {
|
} else {
|
||||||
// Get eMMC CID
|
// Get eMMC CID
|
||||||
*(u32*)(0x2FFFD0C) = 0x454D4D43;
|
*(u32*)(0xCFFFD0C) = 0x454D4D43;
|
||||||
while (*(u32*)(0x2FFFD0C) != 0);
|
while (*(u32*)(0xCFFFD0C) != 0) {
|
||||||
|
swiDelay(100);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user