Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 321 Bytes

common.inc

File metadata and controls

15 lines (13 loc) · 321 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
Mar 24, 2018
Mar 24, 2018
10
11
12
13
14
15
%ifdef __OS2__
; declare segments with proper attributes for OS/2 386 builds:
SEGMENT .data CLASS=DATA ALIGN=16 USE32 FLAT
SEGMENT .text CLASS=CODE ALIGN=16 USE32 FLAT
%endif