From fff8ceecddc94ebb440cd46426fdea5ff043f51e Mon Sep 17 00:00:00 2001 From: Ryan Jones-Ward Date: Sat, 6 Jul 2024 09:47:03 +0100 Subject: [PATCH] More notes on the upcoming executable format. --- redox-core/src/compiling/executable.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redox-core/src/compiling/executable.rs b/redox-core/src/compiling/executable.rs index c5ea2d9..060945a 100644 --- a/redox-core/src/compiling/executable.rs +++ b/redox-core/src/compiling/executable.rs @@ -1,7 +1,7 @@ // The structure of the executable file is as follows: -// [READ-ONLY DATA] -// [DATA] // [CODE] +// [DATA] +// [READ-ONLY DATA] pub struct Executable {}