view src/hermes/common.inc @ 2115:502ae1f2a577

Set supervisor as volatile as it is modified from an interrupt
author Patrice Mandin <patmandin@gmail.com>
date Fri, 08 Jun 2007 21:44:55 +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