So the first time I installed Catalina 10.15.1, I set my slide=0 and it worked fine.
But now, I get stuck in there.
I create a small Python snippet to automate check all these values. Unfortunately, none of them worked. So I am at a loss on how to solve this issue
```
available 8000 56
available 100000 16661
available 167A1000 16036
available 2E751000 41C2
available 38193000 159
available 39025000 174
available 100000000 7BE800
start_values = [ 0x8000, 0x100000, 0x167A1000, 0x2E751000, 0x38193000, 0x39025000, 0x100000000, ]
for start in start_values: result = (start - 0x200000) / 0x100000 print(int(result))
```
[link] [comments]
Post a Comment