mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-23 03:22:08 +00:00
Move src/asmotor.h to top-level include/
Signed-off-by: Vegard Nossum <vegard.nossum@gmail.com>
This commit is contained in:
@@ -20,7 +20,7 @@ rgbasm: $(obj)
|
||||
gcc -Wall -o $@ $^ -lm
|
||||
|
||||
.c.o:
|
||||
gcc -Wall -DGAMEBOY -I. -I.. -I../../include -Igameboy -g -c -o $@ $<
|
||||
gcc -Wall -DGAMEBOY -I../../include -Igameboy -g -c -o $@ $<
|
||||
|
||||
.y.c:
|
||||
bison -d -o $@ $^
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
#include "asm/symbol.h"
|
||||
#include "asm/lexer.h"
|
||||
#include "asm/rpn.h"
|
||||
#include "asm/asmy.h"
|
||||
|
||||
#include "../asmy.h"
|
||||
|
||||
struct sLexInitString localstrings[] = {
|
||||
{ "adc", T_Z80_ADC },
|
||||
|
||||
@@ -1,11 +1,12 @@
|
||||
#include "asm/asm.h"
|
||||
#include "asm/symbol.h"
|
||||
#include "asm/rpn.h"
|
||||
#include "asm/asmy.h"
|
||||
#include "asm/symbol.h"
|
||||
#include "asm/main.h"
|
||||
#include "asm/lexer.h"
|
||||
|
||||
#include "asmy.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <math.h>
|
||||
|
||||
@@ -3,9 +3,10 @@
|
||||
#include "asm/types.h"
|
||||
#include "asm/main.h"
|
||||
#include "asm/rpn.h"
|
||||
#include "asm/asmy.h"
|
||||
#include "asm/fstack.h"
|
||||
|
||||
#include "asmy.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
Reference in New Issue
Block a user