mirror of
https://github.com/fail0verflow/mini.git
synced 2024-11-24 12:19:21 +01:00
Fix ECC alignment in boot2.c
This commit is contained in:
parent
5cbe630a0a
commit
2cc31db239
2
boot2.c
2
boot2.c
@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
static u8 boot2[256 << 11] MEM2_BSS ALIGNED(64);
|
static u8 boot2[256 << 11] MEM2_BSS ALIGNED(64);
|
||||||
static u8 key[32] ALIGNED(64);
|
static u8 key[32] ALIGNED(64);
|
||||||
static u8 ecc[128] ALIGNED(64);
|
static u8 ecc[128] ALIGNED(128);
|
||||||
static u8 boot2_initialized = 0;
|
static u8 boot2_initialized = 0;
|
||||||
extern void *vector;
|
extern void *vector;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user