lol its in c
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
1.1 KiB

  1. # Gameboy Software Development Kit
  2. This is the Gameboy software development kit. For mixed assembly and C programming. Note that this isn't a mature project yet.
  3. If you want to do C programming for the Gameboy, https://github.com/gbdk-2020/gbdk-2020 is much more mature.
  4. If you want to do assembly programming for the Gameboy, https://rgbds.gbdev.io/ is the goto toolchain.
  5. # But... but...? Why this then?
  6. This project has a few goals:
  7. * Thin/no abstractions. GBDK-2020 is an oddball of low level functions, badly named functions and high level functions with horrible performance and side effects.
  8. * Mixing of C code with ASM code, without subjecting yourself to the asxxxx syntax.
  9. * A different linker. By using the rgbds linker instead of the SDCC linker, a bunch of features that exernal tools provide on gbdk-2020 are standard.
  10. # Usage
  11. To use this, you need to have installed:
  12. * sdcc (version 4.1.0)
  13. * rgbds (version 0.5.1)
  14. * python (version 3.6 or newer)
  15. * A strong will, and a bit of crazy.
  16. See https://github.com/daid/gbsdk-template for a ready to use template of a project setup.