From 696209f100fa3e0b60ac00e96c404605d44115c6 Mon Sep 17 00:00:00 2001 From: Gordon Williams Date: Mon, 16 Sep 2019 14:49:45 +0100 Subject: [PATCH] dump size for easy debug --- scripts/check_elf_size.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check_elf_size.py b/scripts/check_elf_size.py index 51d2fe62e..c6ddd1f26 100644 --- a/scripts/check_elf_size.py +++ b/scripts/check_elf_size.py @@ -37,7 +37,7 @@ codeSize = int(text[2], 16) codeStart = int(text[3], 16) codeEnd = codeSize + codeStart -print("CODE: "+str(codeStart)+" -> "+str(codeEnd)); +print("CODE: "+str(codeStart)+" -> "+str(codeEnd)+" ("+str(codeSize)+" bytes)"); if codeEnd