GBDK 2020 Docs
API Documentation for GBDK 2020
GBDK Toolchain

Overview

GBDK 2020 uses the SDCC compiler along with some custom tools to build Game Boy ROMs.

  • All tools are located under bin/
  • The typical order of tools called is as follows. (When using lcc these steps are usually performed automatically.)
    1. Compile and assemble source files (.c, .s, .asm) with sdcc and sdasgb
    2. Optional: perform auto banking with bankpack on the object files
    3. Link the object files into .ihx file with sdldgb
    4. Validate the .ihx file with ihxcheck
    5. Convert the .ihx file to a ROM file (.gb, .gbc) with makebin

To see individual arguments and options for a tool, run that tool from the command line with either no arguments or with -h.

Frequently Asked Questions

  • How do I set the ROM's title?
    • Use the makebin -yn flag. For example with lcc -Wm-yn"MYTITLE" or with makebin directly -yn "MYTITLE". The maximum length is up to 15 characters, but may be shorter.
    • See "0134-0143 - Title" in Pandocs for more details.


  • How do I set SGB, Color only and Color compatibility in the ROM header?
    • Use the following makebin flags. Prefix them with -Wm if using lcc.
      • -yc : GameBoy Color compatible
      • -yC : GameBoy Color only
      • -ys : Super GameBoy compatible


  • How do I set the ROM MBC type?
  • What do these kinds of warnings / errors mean? WARNING: possibly wrote twice at addr 4000 (93->3E) Warning: Write from one bank spans into the next. 7ff7 -> 8016 (bank 1 -> 2)

    You may have a overflow in one of your ROM banks. If there is more data allocated to a bank than it can hold it then will spill over into the next bank. The warnings are generated by ihxcheck during conversion of an .ihx file into a ROM file.

    See the section ROM/RAM Banking and MBCs for more details about how banks work and what their size is. You may want to use a tool such as romusage to calculate the amount of free and used space.

Changing Important Addresses

It is possible to change some of the important addresses used by the toolchain at link time using the -Wl-g XXX=YYY and =Wl-b XXX=YYY flags (where XXX is the name of the data, and YYY is the new address).

lcc will include the following linker defaults for sdldgb if they are not defined by the user.

  • _shadow_OAM
    • Location of sprite ram (requires 0xA0 bytes).
    • Default -Wl-g _shadow_OAM=0xC000
  • .STACK
    • Initial stack address
    • Default -Wl-g .STACK=0xE000
  • .refresh_OAM
    • Address to which the routine for refreshing OAM will be copied (must be in HIRAM). Default
    • Default -Wl-g .refresh_OAM=0xFF80
  • _DATA
    • Start of RAM section (starts after Shadow OAM)
    • Default -Wl-b _DATA=0xc0A0
  • _CODE
    • Start of ROM section
    • Default -Wl-b _CODE=0x0200

Compiling programs

The lcc program is the front end compiler driver for the actual compiler, assembler and linker. It works out what you want to do based on command line options and the extensions of the files you give it, computes the order in which the various programs must be called and then executes them in order. Some examples are:

  • Compile the C source 'source.c', assemble and link it producing the Gameboy image 'image.gb'
    lcc -o image.gb source.c
    
  • Assemble the file 'source.s' and link it producing the Gameboy image 'image.gb'
    lcc -o image.gb source.s
    
  • Compile the C program 'source1.c' and assemble it producing the object file 'object1.o' for later linking.
    lcc -c -o object1.o source1.c
    
  • Assemble the file 'source2.s' producing the object file 'object2.o' for later linking
    lcc -c -o object2.o source2.s
    
  • Link the two object files 'object1.o' and 'object2.o' and produce the Gameboy image 'image.gb'
    lcc -o image.gb object1.o object2.o
    
  • Do all sorts of clever stuff by compiling then assembling source1.c, assembling source2.s and then linking them together to produce image.gb.
    lcc -o image.gb source1.c source2.s
    

Arguments to the assembler etc can be passed via lcc using -Wp..., -Wf..., -Wa... and -Wl... to pass options to the pre-processor, compiler, assembler and linker respectivly. Some common options are:

  • To generate an assembler listing file.
    -Wa-l
    
  • To generate a linker map file.
    -Wl-m
    
  • To bind var to address 'addr' at link time.
    -Wl-gvar=addr
    

For example, to compile the example in the memory section and to generate a listing and map file you would use the following. Note the leading underscore that C adds to symbol names.

lcc -Wa-l -Wl-m -Wl-g_snd_stat=0xff26 -o image.gb hardware.c

Makefiles

Using Makefiles

Please see the sample projects included with GBDK-2020 for a couple different examples of how to use Makefiles.

You may also want to read a tutorial on Makefiles. For example:
https://makefiletutorial.com/ https://www.tutorialspoint.com/makefile/index.htm

Build Tools

lcc

lcc is the compiler driver (front end) for the GBDK/sdcc toolchain. It can be used to invoke all the tools needed for building a rom. If preferred, the individual tools can be called directly.

  • the -v flag can be used to show the exact steps lcc executes for a build
  • lcc can compile, link and generate a binary in a single pass: lcc -o somerom.gb somesource.c

sdcc

SDCC C Source compiler

  • Arguments can be passed to it through lcc using -Wf-<argument> and -Wp-<argument> (pre-processor)

sdasgb

SDCC Assembler for the gameboy

  • Arguments can be passed to it through lcc using -Wa-<argument>

bankpack

Automatic Bank packer

When enabled, automatically assigns banks for object files where bank has been set to 255, see rom_autobanking. Unless an alternative output is specified the given object files are updated with the new bank numbers.

  • Can be enabled by using the -autobank argument with lcc.
  • Must be called after compiling/assembling and before linking
  • Arguments can be passed to it through lcc using -Wb-<argument>

Limitations

  • __banked functions cannot be called from within the same source file they are declared in.
  • With data it is easier, because if you access data from the code in the same bank you don’t need to switch the bank (access to __bank_* symbol).

sdldgb

The SDCC linker for the gameboy.

Links object files (.o) into a .ihx file which can be processed by makebin

  • Arguments can be passed to it through lcc using -Wl-<argument>

ihxcheck

IHX file validator

Checks .ihx files produced by sdldgb for correctness.

  • It will warn if there are multiple writes to the same ROM address. This may indicate mistakes in the code or ROM bank overflows
  • Arguments can be passed to it through lcc using -Wi-<argument>

makebin

IHX to ROM converter

Converts .ihx files produced by sdldgb into ROM files (.gb, .gbc).

  • Arguments can be passed to it through lcc using -Wm-<argument>

GBDK Utilities

GBCompress

Compresssion utility

Compresses (and decompresses) binary file data with the gbcompress algorithm (also used in GBTD/GBMB). Decompression support is available in GBDK, see gb_decompress().

PNG to Metasprite

Tool for converting PNGs into GBDK format MetaSprites

Todo:
Document png2mtspr