gbdk-2020 | GameBoy Development Kit |
| download: https://git.y1.nz/archives/gbdk.tar.gz | |
| README | Files | Log | Refs | LICENSE |
commit 25adc2dd37ac8436ef6671f47622e6fd260f9bee parent 459b6753ab6f7a4bbb51e92d62a59515667e2ecd Author: Toxa <56631470+untoxa@users.noreply.github.com> Date: Sat, 27 Mar 2021 10:46:58 +0300 Merge pull request #163 from bbbbbr/example_autobanks Examples: Autobanks: switch to -yoA for makebin auto bank calculation Diffstat:
| M | gbdk-lib/examples/gb/banks_autobank/Makefile | 4 | ++-- |
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gbdk-lib/examples/gb/banks_autobank/Makefile b/gbdk-lib/examples/gb/banks_autobank/Makefile @@ -41,12 +41,12 @@ make.bat: Makefile # # Link the compiled object files into a autobanks.gb ROM file # (called with $(OBJS_AUTOBANKED), which is .rel files) -# -Wl-yo4 : Use 4 ROM banks +# -Wl-yoA : Have makebin automatically calculate required number of ROM banks (otherwise use -Wl-yo4 in this example) # -Wl-ya4 : Use 4 RAM banks # -Wl-yt19 : Use MBC5 cartridge type $(BINS): $(OBJS) $(BANKPACK) -ext=.rel -v -yt19 $(OBJS) - $(LCC) $(CFLAGS) -Wl-yt19 -Wl-yo4 -Wl-ya4 -o $(BINS) $(OBJS_AUTOBANKED) + $(LCC) $(CFLAGS) -Wl-yt19 -Wl-yoA -Wl-ya4 -o $(BINS) $(OBJS_AUTOBANKED) # ./romusage autobanks.map -g clean:
This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.