mirror of
https://github.com/samsonjs/compiler.git
synced 2026-06-24 04:49:09 +00:00
9 lines
137 B
NASM
9 lines
137 B
NASM
BITS 32
|
|
GLOBAL _start
|
|
SECTION .data
|
|
SECTION .bss
|
|
SECTION .text
|
|
_start:
|
|
mov ebx, 42
|
|
mov eax, 1 ; _exit syscall
|
|
int 0x80 ; call Linux
|