diff --git a/k5_v2.01.19_mod.md b/k5_v2.01.19_mod.md index 2a0d1b2..8d518e4 100644 --- a/k5_v2.01.19_mod.md +++ b/k5_v2.01.19_mod.md @@ -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 `0b0‭0000111`. 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