From accf2262147cd8f734bcc2e8dea34139be3df2a3 Mon Sep 17 00:00:00 2001 From: CTCaer Date: Sun, 14 Jun 2020 02:19:55 +0300 Subject: [PATCH] hos: Fix bct clear --- bootloader/hos/hos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootloader/hos/hos.c b/bootloader/hos/hos.c index 1cebb33..40e5a49 100644 --- a/bootloader/hos/hos.c +++ b/bootloader/hos/hos.c @@ -915,7 +915,7 @@ int hos_launch(ini_sec_t *cfg) } else { - memset((void *)0x4003F000, 0, 0x1000); + memset((void *)0x4003F800, 0, 0x800); if ((fuse_read_odm(4) & 3) == 3) memcpy((void *)0x4003F800, bootConfigBuf, 0x800); }