Make list of linker symbols common

That way the definitions of the assembler and the linker are always the
same.

Signed-off-by: Antonio Niño Díaz <antonio_nd@outlook.com>
This commit is contained in:
Antonio Niño Díaz
2018-01-04 22:32:40 +00:00
parent 8d89ba39d4
commit d24cf11ad4
5 changed files with 16 additions and 70 deletions

View File

@@ -12,12 +12,13 @@
#include "asm/fstack.h"
#include "asm/lexer.h"
#include "asm/main.h"
#include "asm/mylink.h"
#include "asm/mymath.h"
#include "asm/output.h"
#include "asm/rpn.h"
#include "asm/symbol.h"
#include "linkdefs.h"
char *tzNewMacro;
uint32_t ulNewMacroSize;

View File

@@ -12,15 +12,15 @@
#include "asm/charmap.h"
#include "asm/fstack.h"
#include "asm/main.h"
#include "asm/mylink.h"
#include "asm/output.h"
#include "asm/rpn.h"
#include "asm/symbol.h"
#include "common.h"
#include "extern/err.h"
#include "common.h"
#include "linkdefs.h"
void out_SetCurrentSection(struct Section *pSect);
struct Patch {

View File

@@ -8,10 +8,11 @@
#include "asm/asm.h"
#include "asm/main.h"
#include "asm/mylink.h"
#include "asm/rpn.h"
#include "asm/symbol.h"
#include "linkdefs.h"
void mergetwoexpressions(struct Expression *expr, const struct Expression *src1,
const struct Expression *src2)
{