home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Crawly Crypt Collection 1
/
crawlyvol1.bin
/
program
/
compiler
/
nasm20b
/
nasm_src
/
exprlink.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-01-19
|
737b
|
25 lines
/* ---------------------------------------------------------------------- */
/* Copyright (C) 1991 by Natürlich! */
/* This file is copyrighted! */
/* Refer to the documentation for details. */
/* ---------------------------------------------------------------------- */
#define LINKER 1
#include "defines.h"
#include "nasm.h"
#include "debug.h"
void refer( l, ex)
label huge *l;
expr huge *ex;
{
register ref huge *p = ref_alloc();
ENTER("refer");
p->ref = ex; /* Note expression that needs fixing */
p->next = l->refs; /* put it in the first slot... */
l->refs = p;
LEAVE();
}