Compare commits

..

1 Commits

Author SHA1 Message Date
Zander671 6549711bfe Initial commit 2022-10-03 10:23:35 -07:00
+5 -1
View File
@@ -1,13 +1,17 @@
;; -*- mode: nasm -*-
%define SYS_open 0x2
%define SYS_close 0x3
%define SYS_write 0x1
%define SYS_read 0x0
%define SYS_lseek 0x8
%define SYS_exit 0x3c
%define SYS_fcntl 0x48
%define O_RDONLY 0x0
%define O_NONBLOCK 0x800
%define F_GETFL 3
%define F_SETFL 4
%define SEEK_SET 0x0
%define FD_stderr 2
%define FD_stdout 1
%define FD_stdin 0