Rename asmy to more explicit parser

This should make the purpose of that file clearer to newcomers
This commit is contained in:
ISSOtm
2020-10-11 21:03:41 +02:00
parent 6a8ae643d5
commit 01637768cf
7 changed files with 11 additions and 11 deletions

View File

@@ -53,13 +53,13 @@ RM := rm -rf
all: rgbasm rgblink rgbfix rgbgfx
rgbasm_obj := \
src/asm/asmy.o \
src/asm/charmap.o \
src/asm/fstack.o \
src/asm/lexer.o \
src/asm/macro.o \
src/asm/main.o \
src/asm/math.o \
src/asm/parser.o \
src/asm/output.o \
src/asm/rpn.o \
src/asm/section.o \
@@ -72,7 +72,7 @@ rgbasm_obj := \
src/hashmap.o \
src/linkdefs.o
src/asm/lexer.o src/asm/main.o: src/asm/asmy.h
src/asm/lexer.o src/asm/main.o: src/asm/parser.h
rgblink_obj := \
src/link/assign.o \