view src/hermes/common.inc @ 4382:6599c89de50c SDL-1.2

Forgot a check for Coldfire CPU
author Patrice Mandin <patmandin@gmail.com>
date Mon, 09 Nov 2009 18:02:32 +0000
parents d76c3909b244
children
line wrap: on
line source

; Some common macros for hermes nasm code

%macro SDL_FUNC 1
%ifdef HIDDEN_VISIBILITY
GLOBAL %1:function hidden
%else
GLOBAL %1
%endif
%endmacro