mirror of
https://git.code.sf.net/p/quake/nuq
synced 2025-02-19 18:42:03 +00:00
now builds with --disable-asmop. NOTE: d_copy.S is still used anyway (too lazy
to figure out how to do it in C)
This commit is contained in:
parent
81400a6374
commit
2322b564b9
3 changed files with 4 additions and 2 deletions
|
@ -33,7 +33,7 @@
|
||||||
#include "quakeasm.h"
|
#include "quakeasm.h"
|
||||||
#include "asm_draw.h"
|
#include "asm_draw.h"
|
||||||
|
|
||||||
#ifdef USE_INTEL_ASM
|
//#ifdef USE_INTEL_ASM
|
||||||
.data
|
.data
|
||||||
|
|
||||||
LCopyWidth: .long 0
|
LCopyWidth: .long 0
|
||||||
|
@ -173,4 +173,4 @@ LLRowLoop:
|
||||||
popl %ebp // restore the caller's stack frame
|
popl %ebp // restore the caller's stack frame
|
||||||
|
|
||||||
ret
|
ret
|
||||||
#endif /* USE_INTEL_ASM */
|
//#endif /* USE_INTEL_ASM */
|
||||||
|
|
|
@ -32,6 +32,7 @@
|
||||||
|
|
||||||
#ifndef USE_INTEL_ASM
|
#ifndef USE_INTEL_ASM
|
||||||
|
|
||||||
|
#include "qtypes.h"
|
||||||
|
|
||||||
// all global and static refresh variables are collected in a contiguous block
|
// all global and static refresh variables are collected in a contiguous block
|
||||||
// to avoid cache conflicts.
|
// to avoid cache conflicts.
|
||||||
|
|
|
@ -34,6 +34,7 @@
|
||||||
|
|
||||||
#include "mathlib.h"
|
#include "mathlib.h"
|
||||||
#include "sys.h"
|
#include "sys.h"
|
||||||
|
#include "model.h"
|
||||||
|
|
||||||
vec3_t vec3_origin = {0,0,0};
|
vec3_t vec3_origin = {0,0,0};
|
||||||
int nanmask = 255<<23;
|
int nanmask = 255<<23;
|
||||||
|
|
Loading…
Reference in a new issue