blob: 079fc212698d536a2e69063d2f8915a244b1b7f9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
%macro EXPORT 1
%ifdef DARWIN
global _%1
_%1:
%else
global %1
%1:
%endif
%endmacro
%ifdef _x86_64_
%include "context_x86_64.asm"
%else
%include "context_i686.asm"
%endif
|