summaryrefslogtreecommitdiff
path: root/test.lisp
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2025-12-25 23:42:59 -0500
committerLLLL Colonq <llll@colonq>2025-12-25 23:42:59 -0500
commitc149c76ad8b251c45a0e6532850cf5dfd388f55c (patch)
tree166d187e9488bba0af111381337d7d96de715a2d /test.lisp
Initial commit
Diffstat (limited to 'test.lisp')
-rw-r--r--test.lisp7
1 files changed, 7 insertions, 0 deletions
diff --git a/test.lisp b/test.lisp
new file mode 100644
index 0000000..4353ef3
--- /dev/null
+++ b/test.lisp
@@ -0,0 +1,7 @@
+(let ((elf (elf/new!)))
+ (print! elf)
+ (elf/write-header! elf
+ :type elf/TYPE_EXEC
+ :machine elf/MACHINE_AMD64)
+ (elf/spit! "test.elf" elf)
+ )