summaryrefslogtreecommitdiff
path: root/test.lisp
blob: 4353ef3fcf7325c3abf55d74b129083deb340a9b (plain)
1
2
3
4
5
6
7
(let ((elf (elf/new!)))
  (print! elf)
  (elf/write-header! elf
    :type elf/TYPE_EXEC
    :machine elf/MACHINE_AMD64)
  (elf/spit! "test.elf" elf)
  )