33 lines
1.2 KiB
C
33 lines
1.2 KiB
C
/****************************************************************
|
|
* *
|
|
* Copyright 2001, 2004 Sanchez Computer Associates, Inc. *
|
|
* *
|
|
* This source code contains the intellectual property *
|
|
* of its copyright holder(s), and is made available *
|
|
* under a license. If you do not know the terms of *
|
|
* the license, please stop and do not read further. *
|
|
* *
|
|
****************************************************************/
|
|
|
|
#ifndef OBJ_FILESP_INCLUDED
|
|
#define OBJ_FILESP_INCLUDED
|
|
|
|
#ifdef __sparc
|
|
void emit_addr(int4 refaddr_upper, int4 refaddr_lower, int4 offset, int4 *result_upper, int4 *result_lower);
|
|
void emit_reference(uint4 refaddr_upper, uint4 refaddr_lower, mstr *name, uint4 *result_upper, uint4 *result_lower);
|
|
#else
|
|
void emit_addr(int4 refaddr, int4 offset, int4 *result);
|
|
void emit_reference(uint4 refaddr, mstr *name, uint4 *result);
|
|
#endif
|
|
|
|
struct sym_table *define_symbol(unsigned char psect, mstr *name, int4 value);
|
|
void emit_pidr(int4 refoffset, int4 data_offset, int4 *result);
|
|
void buff_emit(void);
|
|
void set_psect(unsigned char psect,unsigned char offset);
|
|
void resolve_sym(void);
|
|
void output_relocation(void);
|
|
void output_symbol(void);
|
|
|
|
#endif
|
|
|