Procházet zdrojové kódy

NASM fix for *_CONTENT() macros (Josh Vanderhoof)

tags/mesa_4_1
Brian Paul před 23 roky
rodič
revize
241afd837c
1 změnil soubory, kde provedl 10 přidání a 1 odebrání
  1. 10
    1
      src/mesa/x86/assyntax.h

+ 10
- 1
src/mesa/x86/assyntax.h Zobrazit soubor

@@ -1,4 +1,4 @@
/* $Id: assyntax.h,v 1.19 2002/04/02 16:18:20 brianp Exp $ */
/* $Id: assyntax.h,v 1.20 2002/06/06 15:33:37 brianp Exp $ */

#ifndef __ASSYNTAX_H__
#define __ASSYNTAX_H__
@@ -991,12 +991,21 @@ SECTION _DATA public align=16 class=DATA use32 flat
#define B_CONST(a) a

/* Indirect Mode */
#ifdef NASM_ASSEMBLER
#define P_CONTENT(a) [a]
#define X_CONTENT(a) TBYTE_PTR [a]
#define D_CONTENT(a) QWORD_PTR [a]
#define L_CONTENT(a) DWORD_PTR [a]
#define W_CONTENT(a) WORD_PTR [a]
#define B_CONTENT(a) BYTE_PTR [a]
#else
#define P_CONTENT(a) a
#define X_CONTENT(a) TBYTE_PTR a
#define D_CONTENT(a) QWORD_PTR a
#define L_CONTENT(a) DWORD_PTR a
#define W_CONTENT(a) WORD_PTR a
#define B_CONTENT(a) BYTE_PTR a
#endif

/* Register a indirect */
#define P_REGIND(a) [a]

Načítá se…
Zrušit
Uložit