gbdk-2020 | GameBoy Development Kit |
| download: https://git.y1.nz/archives/gbdk.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit 8742d5bc5f1c148345c64152d72f00514012a98e parent 677bfc9a44a6516933cc0e598c9e6d7ea382404c Author: Toxa <untoxa@mail.ru> Date: Fri, 3 Jun 2022 21:00:22 +0300 Merge branch 'develop' of https://github.com/gbdk-2020/gbdk-2020 into develop Diffstat:
21 files changed, 21 insertions(+), 21 deletions(-)
diff --git a/docs/pages/01_getting_started.md b/docs/pages/01_getting_started.md @@ -57,7 +57,7 @@ If you haven't written programs in C before, check the @ref docs_c_tutorials "C # 6. Hardware and Resources -If you have a specific project in mind, consider what hardware want to target. It isn't something that has to be decided up front, but it can influence design and implementation. +If you have a specific project in mind, consider what hardware you want to target. It isn't something that has to be decided up front, but it can influence design and implementation. What size will your game or program be? - 32K Cart (no-MBC required) diff --git a/gbdk-lib/examples/ap/linkerfile/Makefile b/gbdk-lib/examples/ap/linkerfile/Makefile @@ -44,7 +44,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(LCCFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(LCCFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/ap/template_subfolders/Makefile b/gbdk-lib/examples/ap/template_subfolders/Makefile @@ -43,7 +43,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(LCCFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(LCCFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/cross-platform/banks/Makefile b/gbdk-lib/examples/cross-platform/banks/Makefile @@ -56,7 +56,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(CFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(CFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/cross-platform/banks_autobank/Makefile b/gbdk-lib/examples/cross-platform/banks_autobank/Makefile @@ -55,7 +55,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(CFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(CFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/cross-platform/banks_farptr/Makefile b/gbdk-lib/examples/cross-platform/banks_farptr/Makefile @@ -52,7 +52,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(CFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(CFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/cross-platform/banks_nonintrinsic/Makefile b/gbdk-lib/examples/cross-platform/banks_nonintrinsic/Makefile @@ -52,7 +52,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(CFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(CFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/cross-platform/emu_debug/Makefile b/gbdk-lib/examples/cross-platform/emu_debug/Makefile @@ -52,7 +52,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(CFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(CFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/cross-platform/fonts/Makefile b/gbdk-lib/examples/cross-platform/fonts/Makefile @@ -52,7 +52,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(CFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(CFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/cross-platform/gbdecompress/Makefile b/gbdk-lib/examples/cross-platform/gbdecompress/Makefile @@ -76,7 +76,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(CFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(CFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/cross-platform/incbin/Makefile b/gbdk-lib/examples/cross-platform/incbin/Makefile @@ -52,7 +52,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(CFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(CFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/cross-platform/large_map/Makefile b/gbdk-lib/examples/cross-platform/large_map/Makefile @@ -59,7 +59,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(CFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(CFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/cross-platform/logo/Makefile b/gbdk-lib/examples/cross-platform/logo/Makefile @@ -68,7 +68,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(CFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(CFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/cross-platform/metasprites/Makefile b/gbdk-lib/examples/cross-platform/metasprites/Makefile @@ -76,7 +76,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(CFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(CFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/cross-platform/pong/Makefile b/gbdk-lib/examples/cross-platform/pong/Makefile @@ -52,7 +52,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(CFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(CFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/cross-platform/randtest/Makefile b/gbdk-lib/examples/cross-platform/randtest/Makefile @@ -52,7 +52,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(CFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(CFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/cross-platform/rle_map/Makefile b/gbdk-lib/examples/cross-platform/rle_map/Makefile @@ -66,7 +66,7 @@ $(OBJDIR)/%.o: $(SRCPLAT)/%.s $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(CFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(CFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/cross-platform/scroller/Makefile b/gbdk-lib/examples/cross-platform/scroller/Makefile @@ -52,7 +52,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(CFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(CFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/gb/incbin/Makefile b/gbdk-lib/examples/gb/incbin/Makefile @@ -42,7 +42,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(LCCFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(LCCFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/gb/linkerfile/Makefile b/gbdk-lib/examples/gb/linkerfile/Makefile @@ -43,7 +43,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(LCCFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(LCCFLAGS) -S -o $@ $< diff --git a/gbdk-lib/examples/gb/template_subfolders/Makefile b/gbdk-lib/examples/gb/template_subfolders/Makefile @@ -42,7 +42,7 @@ $(OBJDIR)/%.o: $(RESDIR)/%.c $(OBJDIR)/%.o: $(SRCDIR)/%.s $(LCC) $(LCCFLAGS) -c -o $@ $< -# If needed, compile .c files i n"src/" to .s assembly files +# If needed, compile .c files in "src/" to .s assembly files # (not required if .c is compiled directly to .o) $(OBJDIR)/%.s: $(SRCDIR)/%.c $(LCC) $(LCCFLAGS) -S -o $@ $<
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.