commit 88938142be883ed227d6ad4638e1801894272311
parent f4819c5e91e88651205e510fd6e5b4f1ebfcbc66
Author: Chris Bracken <chris@bracken.jp>
Date: Wed, 8 Apr 2020 18:36:12 -0700
Eliminate blank rows in bullet list
Diffstat:
1 file changed, 0 insertions(+), 2 deletions(-)
diff --git a/content/post/2018-10-31-decoding-an-elf-binary.md b/content/post/2018-10-31-decoding-an-elf-binary.md
@@ -597,11 +597,9 @@ laid-out by the linker.
On launch, the kernel maps the binary image into memory as specified in the
program header table:
-
* PHT Entry 0: The ELF header, program header table, and Section 1 (`.text`)
are mapped from offset 0x00 of the binary image (with length 0xd6 bytes)
into Segment 1 (readable, executable) at address 0x400000.
-
* PHT Entry 1: Section 2 (`.data`) at offset 0xd8 of the binary image is
mapped into Segment 2 (readable, writeable) at address 0x600000 from offset
0xd8 with length 0x0e bytes.