mirror of
https://github.com/samsonjs/compiler.git
synced 2026-03-25 08:45:52 +00:00
There is no binary assembler support for Darwin yet! I'm not sure when I will dive into the details of generating a Mach-O binary from Ruby or C. [MERGED] Binary assembler support. It *should* work on ELF but it needs testing on Linux.
11 lines
147 B
NASM
11 lines
147 B
NASM
BITS 32
|
|
GLOBAL _main
|
|
SECTION .data
|
|
{data}
|
|
SECTION .bss
|
|
{bss}
|
|
SECTION .text
|
|
_main:
|
|
{code}
|
|
;; The result in eax is the exit code, just return.
|
|
ret
|