From 234c180659923e28a0c76a9d1613af548a1e3cd4 Mon Sep 17 00:00:00 2001 From: orboditilt Date: Thu, 25 Jul 2019 10:31:47 +0200 Subject: [PATCH] File size should be 0x3000 --- src/link.ld | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/link.ld b/src/link.ld index 764bcfa..33311f9 100644 --- a/src/link.ld +++ b/src/link.ld @@ -15,4 +15,4 @@ SECTIONS { } } -ASSERT((SIZEOF(.text) + SIZEOF(.data)) < 0x2000, "please recude the size."); +ASSERT((SIZEOF(.text) + SIZEOF(.data)) < 0x3000, "please recude the size.");