aboutsummaryrefslogtreecommitdiffstats
path: root/util/system/context_x86.asm
blob: e825d5d087e774c063b3c2f3ca42ef51544fa843 (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