Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 145 Bytes

common.inc

File metadata and controls

9 lines (8 loc) · 145 Bytes
 
Jun 21, 2006
Jun 21, 2006
1
2
3
4
5
6
7
8
9
; Some common macros for hermes nasm code
%macro SDL_FUNC 1
%ifdef HIDDEN_VISIBILITY
GLOBAL %1:function hidden
%else
GLOBAL %1
%endif
%endmacro