1
0
Fork 0

Try to skip loading screen

master
Felipe Manga 2024-01-15 11:33:55 +00:00
parent ca9ae0f7fe
commit d4f2ecd8fe
1 changed files with 4 additions and 1 deletions

View File

@ -453,8 +453,11 @@ function test(addr, y) {
}
function probe() {
if (!start)
if (!start) {
start = 0x20000000;
if (test(0x2002d3fe, 0)) // try to skip loading if possible
start = 0x2002d3fe; // FW=2v20
}
const end = Math.min(start + 0x800, 0x20038000);
if (start >= end) {