mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
Replace all ASMOTOR references with RGBDS.
This commit is contained in:
@@ -6,8 +6,8 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef ASMOTOR_ASM_ASM_H
|
#ifndef RGBDS_ASM_ASM_H
|
||||||
#define ASMOTOR_ASM_ASM_H
|
#define RGBDS_ASM_ASM_H
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_ASM_CHARMAP_H
|
#ifndef RGBDS_ASM_CHARMAP_H
|
||||||
#define ASMOTOR_ASM_CHARMAP_H
|
#define RGBDS_ASM_CHARMAP_H
|
||||||
|
|
||||||
#define MAXCHARMAPS 512
|
#define MAXCHARMAPS 512
|
||||||
#define CHARMAPLENGTH 8
|
#define CHARMAPLENGTH 8
|
||||||
|
|||||||
@@ -6,8 +6,8 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef ASMOTOR_ASM_FSTACK_H
|
#ifndef RGBDS_ASM_FSTACK_H
|
||||||
#define ASMOTOR_ASM_FSTACK_H
|
#define RGBDS_ASM_FSTACK_H
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_ASM_LEXER_H
|
#ifndef RGBDS_ASM_LEXER_H
|
||||||
#define ASMOTOR_ASM_LEXER_H
|
#define RGBDS_ASM_LEXER_H
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_MAIN_H
|
#ifndef RGBDS_MAIN_H
|
||||||
#define ASMOTOR_MAIN_H
|
#define RGBDS_MAIN_H
|
||||||
|
|
||||||
#include <stdbool.h>
|
#include <stdbool.h>
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_ASM_LINK_H
|
#ifndef RGBDS_ASM_LINK_H
|
||||||
#define ASMOTOR_ASM_LINK_H
|
#define RGBDS_ASM_LINK_H
|
||||||
|
|
||||||
/* RGB0 .obj format:
|
/* RGB0 .obj format:
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_ASM_MATH_H
|
#ifndef RGBDS_ASM_MATH_H
|
||||||
#define ASMOTOR_ASM_MATH_H
|
#define RGBDS_ASM_MATH_H
|
||||||
|
|
||||||
#include "asm/types.h"
|
#include "asm/types.h"
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_ASM_OUTPUT_H
|
#ifndef RGBDS_ASM_OUTPUT_H
|
||||||
#define ASMOTOR_ASM_OUTPUT_H
|
#define RGBDS_ASM_OUTPUT_H
|
||||||
|
|
||||||
#include "asm/rpn.h"
|
#include "asm/rpn.h"
|
||||||
#include "asm/types.h"
|
#include "asm/types.h"
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_ASM_RPN_H
|
#ifndef RGBDS_ASM_RPN_H
|
||||||
#define ASMOTOR_ASM_RPN_H
|
#define RGBDS_ASM_RPN_H
|
||||||
|
|
||||||
struct Expression {
|
struct Expression {
|
||||||
SLONG nVal;
|
SLONG nVal;
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_SYMBOL_H
|
#ifndef RGBDS_SYMBOL_H
|
||||||
#define ASMOTOR_SYMBOL_H
|
#define RGBDS_SYMBOL_H
|
||||||
|
|
||||||
#include "asm/types.h"
|
#include "asm/types.h"
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_ASM_TYPES_H
|
#ifndef RGBDS_ASM_TYPES_H
|
||||||
#define ASMOTOR_ASM_TYPES_H
|
#define RGBDS_ASM_TYPES_H
|
||||||
|
|
||||||
#ifndef _MAX_PATH
|
#ifndef _MAX_PATH
|
||||||
#define _MAX_PATH 512
|
#define _MAX_PATH 512
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_LINK_ASSIGN_H
|
#ifndef RGBDS_LINK_ASSIGN_H
|
||||||
#define ASMOTOR_LINK_ASSIGN_H
|
#define RGBDS_LINK_ASSIGN_H
|
||||||
|
|
||||||
#include "link/types.h"
|
#include "link/types.h"
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_LINK_LIBRARY_H
|
#ifndef RGBDS_LINK_LIBRARY_H
|
||||||
#define ASMOTOR_LINK_LIBRARY_H
|
#define RGBDS_LINK_LIBRARY_H
|
||||||
|
|
||||||
extern void AddNeededModules(void);
|
extern void AddNeededModules(void);
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_LINK_MAIN_H
|
#ifndef RGBDS_LINK_MAIN_H
|
||||||
#define ASMOTOR_LINK_MAIN_H
|
#define RGBDS_LINK_MAIN_H
|
||||||
|
|
||||||
#include "link/types.h"
|
#include "link/types.h"
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_LINK_MAPFILE_H
|
#ifndef RGBDS_LINK_MAPFILE_H
|
||||||
#define ASMOTOR_LINK_MAPFILE_H
|
#define RGBDS_LINK_MAPFILE_H
|
||||||
|
|
||||||
extern void SetMapfileName(char *name);
|
extern void SetMapfileName(char *name);
|
||||||
extern void SetSymfileName(char *name);
|
extern void SetSymfileName(char *name);
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_LINK_LINK_H
|
#ifndef RGBDS_LINK_LINK_H
|
||||||
#define ASMOTOR_LINK_LINK_H
|
#define RGBDS_LINK_LINK_H
|
||||||
|
|
||||||
#ifndef _MAX_PATH
|
#ifndef _MAX_PATH
|
||||||
#define _MAX_PATH 512
|
#define _MAX_PATH 512
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_LINK_OBJECT_H
|
#ifndef RGBDS_LINK_OBJECT_H
|
||||||
#define ASMOTOR_LINK_OBJECT_H
|
#define RGBDS_LINK_OBJECT_H
|
||||||
|
|
||||||
extern void obj_Readfile(char *tzObjectfile);
|
extern void obj_Readfile(char *tzObjectfile);
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_LINK_OUTPUT_H
|
#ifndef RGBDS_LINK_OUTPUT_H
|
||||||
#define ASMOTOR_LINK_OUTPUT_H
|
#define RGBDS_LINK_OUTPUT_H
|
||||||
|
|
||||||
void out_Setname(char *tzOutputfile);
|
void out_Setname(char *tzOutputfile);
|
||||||
void Output(void);
|
void Output(void);
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_LINK_PATCH_H
|
#ifndef RGBDS_LINK_PATCH_H
|
||||||
#define ASMOTOR_LINK_PATCH_H
|
#define RGBDS_LINK_PATCH_H
|
||||||
|
|
||||||
#include "link/types.h"
|
#include "link/types.h"
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_LINK_SYMBOL_H
|
#ifndef RGBDS_LINK_SYMBOL_H
|
||||||
#define ASMOTOR_LINK_SYMBOL_H
|
#define RGBDS_LINK_SYMBOL_H
|
||||||
|
|
||||||
#include "link/types.h"
|
#include "link/types.h"
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#ifndef ASMOTOR_LINK_TYPES_H
|
#ifndef RGBDS_LINK_TYPES_H
|
||||||
#define ASMOTOR_LINK_TYPES_H
|
#define RGBDS_LINK_TYPES_H
|
||||||
|
|
||||||
#ifndef _MAX_PATH
|
#ifndef _MAX_PATH
|
||||||
#define _MAX_PATH 512
|
#define _MAX_PATH 512
|
||||||
|
|||||||
Reference in New Issue
Block a user