Merge include/link/types.h and include/asm/types.h into include/types.h

This commit is contained in:
stag019
2015-03-07 16:04:07 -05:00
parent e195076793
commit ebc9a4b786
19 changed files with 19 additions and 34 deletions

View File

@@ -13,7 +13,7 @@
#include <stdio.h>
#include <stdlib.h>
#include "asm/types.h"
#include "types.h"
#include "asm/symbol.h"
#include "asm/localasm.h"

View File

@@ -12,7 +12,7 @@
#include <stdio.h>
#include "asm/asm.h"
#include "asm/types.h"
#include "types.h"
#include "asm/lexer.h"
struct sContext {

View File

@@ -3,7 +3,7 @@
#include <stdio.h>
#include "asm/types.h"
#include "types.h"
#define LEXHASHSIZE (1 << 11)
#define MAXSTRLEN 255

View File

@@ -1,7 +1,7 @@
#ifndef RGBDS_ASM_MATH_H
#define RGBDS_ASM_MATH_H
#include "asm/types.h"
#include "types.h"
void math_DefinePI(void);
void math_Print(SLONG i);

View File

@@ -2,7 +2,7 @@
#define RGBDS_ASM_OUTPUT_H
#include "asm/rpn.h"
#include "asm/types.h"
#include "types.h"
struct Section {
char *pzName;

View File

@@ -1,7 +1,7 @@
#ifndef RGBDS_SYMBOL_H
#define RGBDS_SYMBOL_H
#include "asm/types.h"
#include "types.h"
#define HASHSIZE (1 << 16)
#define MAXSYMLEN 256

View File

@@ -1,15 +0,0 @@
#ifndef RGBDS_ASM_TYPES_H
#define RGBDS_ASM_TYPES_H
#ifndef _MAX_PATH
#define _MAX_PATH 512
#endif
typedef unsigned char UBYTE;
typedef signed char SBYTE;
typedef unsigned short UWORD;
typedef signed short SWORD;
typedef unsigned long ULONG;
typedef signed long SLONG;
#endif