stack/header.asm

14 lines
154 B
NASM
Raw Normal View History

2021-09-08 18:33:33 +00:00
bits 64
%define SYS_WRITE 1
%define SYS_EXIT 60
%define STDIN 0
%define STDOUT 1
%define STDERR 2
global _start
section .text
_start:
; end of header