no message

This commit is contained in:
dborca
2003-06-19 08:41:42 +00:00
parent 19227af345
commit 3e9a936cf2

View File

@@ -1,30 +0,0 @@
/*
* Select the syntax appropriate to the 386 assembler being used.
*
* Copyright (c) 2002 - Borca Daniel
* Email : dborca@yahoo.com
* Web : http://www.geocities.com/dborca
*/
#ifndef ASSYNTAX_H_included
#define ASSYNTAX_H_included
#ifdef __DJGPP__
#define type version
#define size version
#define CONCAT(a,b) a##b
#define GLOBL(name) .globl CONCAT(_,name) ; CONCAT(_,name) :
#define ALIGN(n) .balign n
#define EXTRN(name) CONCAT(_,name)
#else
#define GLOBL(name) .globl name; .type name, @function; name:
#define ALIGN(n) .align n
#define EXTRN(name) name
#endif
#endif