-
Notifications
You must be signed in to change notification settings - Fork 1
/
libasm.inc
28 lines (22 loc) · 1.1 KB
/
libasm.inc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
;******************************************************************************;
; ;
; ::: :::::::: ;
; libasm.inc :+: :+: :+: ;
; +:+ +:+ +:+ ;
; By: juligonz <[email protected]> +#+ +:+ +#+ ;
; +#+#+#+#+#+ +#+ ;
; Created: 2020/08/07 14:07:37 by juligonz #+# #+# ;
; Updated: 2020/08/07 14:07:43 by juligonz ### ########.fr ;
; ;
;******************************************************************************;
%pragma macho gprefix _
DEFAULT REL
%ifdef MACHO64
%define SYS_READ 0x2000003
%define SYS_WRITE 0x2000004
%define SYM_ERRNO __error
%else
%define SYS_READ 0
%define SYS_WRITE 1
%define SYM_ERRNO __errno_location
%endif