From b0b79f474956f7537d2eb576c4b4cfd6795bc1bc Mon Sep 17 00:00:00 2001 From: Irene Knapp Date: Wed, 23 Sep 2026 03:48:08 -0700 Subject: remove the magic words now all the command-line invocations are pleasingly short :) Change-Id: Ibe2b9f3b85ab3a51a9d95e3511b273664e6a8807 Force-Push: yes --- inscribe-hex.e | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 inscribe-hex.e (limited to 'inscribe-hex.e') diff --git a/inscribe-hex.e b/inscribe-hex.e new file mode 100644 index 0000000..7d9aafa --- /dev/null +++ b/inscribe-hex.e @@ -0,0 +1,26 @@ +: prepare + here @ dup + s" core.e" pack-file-contents + s" linux.e" pack-file-contents + s" output.e" pack-file-contents + s" amd64.e" pack-file-contents + s" execution-support.e" pack-file-contents + s" log-load.e" pack-file-contents + s" dynamic.e" pack-file-contents + s" input.e" pack-file-contents + s" interpret.e" pack-file-contents + s" flow-control.e" pack-file-contents + s" linux-dynamic.e" pack-file-contents + s" labels.e" pack-file-contents + s" elf.e" pack-file-contents + s" hex.e" pack-file-contents + 8 packalign here ! + s" hex-source" variable + + 1024 1024 * allocate s" hex-binary" variable + 1024 1024 * allocate s" hex-metadata" variable ; + +prepare +hex-metadata hex-binary dup hex-source hex-transform +bye + -- cgit 1.4.1