Update k5_v2.01.19_mod.md

pull/2/head
Adam Mnemonic 2023-05-31 22:22:27 +02:00 zatwierdzone przez GitHub
rodzic 22131142df
commit 3e491aa5e5
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -28,7 +28,7 @@ ROM:00001AF4 00 87 93 03 dword_1AF4 DCD 60000000 ;*** PATC
#### 2) At address `0xa224`: `ff` => `07`
When in _Common setting_ you set option _Power on display mode_ to _Full screen_ then you will be welcomed with LCD screen wiht all pixels active. This is done by function at address `@BE60`. Basically it is done with filling display memory with 0xFF. Setting it argument of this function to `7` displays bars like in binary representation `0b00000111`. It could be fun to patch this with `0x55` then it should effect in thinner stripes :)
When in _Common setting_ you set option _Power on display mode_ to _Full screen_ then you will be welcomed with LCD screen wiht all pixels active. This is done by function at address `@BE60`. Basically it is done with filling display memory with 0xFF. Setting it argument of this function to `7` displays bars like in binary representation `0b00000111`. It could be fun to patch this with `0x55` then it should effect in thinner stripes :)
```asm
ROM:0000A224 FF 20 MOVS R0, #0xFF ; *** PATC HERE -> parameter for function sub_BE60 changed from 0xFF to 0x07