Files
gbdk-2020/docs/api/index.js
2025-12-27 17:53:11 -08:00

382 lines
27 KiB
JavaScript

var index =
[
[ "Introduction", "index.html#autotoc_md305", null ],
[ "About the Documentation", "index.html#autotoc_md306", null ],
[ "About GBDK", "index.html#autotoc_md307", null ],
[ "Historical Info and Links", "index.html#autotoc_md308", null ],
[ "Getting Started", "docs_getting_started.html", [
[ "1. Download a Release and unzip it", "docs_getting_started.html#autotoc_md0", [
[ "Known Issue: Windows and folder names with spaces on non-C drives", "docs_getting_started.html#autotoc_md1", null ]
] ],
[ "2. Compile Example projects", "docs_getting_started.html#autotoc_md2", [
[ "Windows (without Make installed):", "docs_getting_started.html#autotoc_md3", null ],
[ "Linux / macOS / Windows with Make installed:", "docs_getting_started.html#autotoc_md4", [
[ "macOS security warnings", "docs_getting_started.html#autotoc_md5", null ]
] ]
] ],
[ "3. Use a Template", "docs_getting_started.html#autotoc_md6", null ],
[ "4. If you use GBTD / GBMB, get the fixed version", "docs_getting_started.html#autotoc_md7", null ],
[ "5. Review Coding Guidelines", "docs_getting_started.html#autotoc_md8", null ],
[ "6. Hardware and Resources", "docs_getting_started.html#autotoc_md9", null ],
[ "7. Set up C Source debugging", "docs_getting_started.html#autotoc_md10", null ],
[ "8. Try a GBDK Tutorial", "docs_getting_started.html#autotoc_md11", null ],
[ "9. Read up!", "docs_getting_started.html#autotoc_md12", null ],
[ "10. Need help?", "docs_getting_started.html#autotoc_md13", null ],
[ "Migrating From Pre-GBDK-2020 Tutorials", "docs_getting_started.html#autotoc_md14", [
[ "Also see:", "docs_getting_started.html#autotoc_md15", null ],
[ "Use auto-banking", "docs_getting_started.html#autotoc_md16", null ],
[ "Non-standard types (UINT8, etc)", "docs_getting_started.html#autotoc_md17", null ],
[ "If using GBTD / GBMB, get the fixed version", "docs_getting_started.html#autotoc_md18", null ],
[ "LCC and SDCC flags that are not needed", "docs_getting_started.html#autotoc_md19", null ],
[ "ROM Header Settings (such as Color, SGB, etc)", "docs_getting_started.html#autotoc_md20", null ],
[ "GBDK Header include changes", "docs_getting_started.html#autotoc_md21", null ],
[ "Include .h headers, not .c source files", "docs_getting_started.html#autotoc_md22", null ],
[ "Use the Template Projects", "docs_getting_started.html#autotoc_md23", null ],
[ "Use hUGEtracker instead of gbt_player", "docs_getting_started.html#autotoc_md24", null ]
] ]
] ],
[ "Links, Tools and Debugging", "docs_links_and_tools.html", [
[ "SDCC Compiler Suite User Manual", "docs_links_and_tools.html#autotoc_md25", null ],
[ "Getting Help", "docs_links_and_tools.html#autotoc_md26", null ],
[ "Game Boy Documentation", "docs_links_and_tools.html#autotoc_md27", null ],
[ "Sega Master System / Game Gear Documentation", "docs_links_and_tools.html#autotoc_md28", null ],
[ "Mega Duck / Cougar Boy Documentation", "docs_links_and_tools.html#autotoc_md29", null ],
[ "Tutorials", "docs_links_and_tools.html#autotoc_md30", null ],
[ "Example code", "docs_links_and_tools.html#autotoc_md31", null ],
[ "Graphics Tools", "docs_links_and_tools.html#autotoc_md32", null ],
[ "Music And Sound Effects for the Game Boy", "docs_links_and_tools.html#autotoc_md33", null ],
[ "Music And Sound Effects for the SMS/Game Gear", "docs_links_and_tools.html#autotoc_md34", null ],
[ "Emulators", "docs_links_and_tools.html#autotoc_md35", null ],
[ "Debugging tools", "docs_links_and_tools.html#autotoc_md36", null ],
[ "Optimizing Assembly", "docs_links_and_tools.html#autotoc_md37", null ],
[ "Continuous Integration and Deployment", "docs_links_and_tools.html#autotoc_md38", null ]
] ],
[ "Using GBDK", "docs_using_gbdk.html", [
[ "Interrupts", "docs_using_gbdk.html#autotoc_md39", [
[ "Available Interrupts", "docs_using_gbdk.html#autotoc_md40", null ],
[ "Adding your own interrupt handler", "docs_using_gbdk.html#autotoc_md41", null ],
[ "Using your own Interrupt Dispatcher", "docs_using_gbdk.html#autotoc_md42", null ],
[ "Returning from Interrupts and STAT mode", "docs_using_gbdk.html#autotoc_md43", null ]
] ],
[ "What GBDK does automatically and behind the scenes", "docs_using_gbdk.html#autotoc_md44", [
[ "NES console", "docs_using_gbdk.html#autotoc_md45", null ],
[ "OAM (VRAM Sprite Attribute Table)", "docs_using_gbdk.html#autotoc_md46", null ],
[ "Graphics Tile Maps and Data on Startup", "docs_using_gbdk.html#autotoc_md47", null ],
[ "Font tiles when using stdio.h", "docs_using_gbdk.html#autotoc_md48", null ],
[ "Default Interrupt Service Handlers (ISRs)", "docs_using_gbdk.html#autotoc_md49", null ],
[ "Ensuring Safe Access to Graphics Memory", "docs_using_gbdk.html#autotoc_md50", null ]
] ],
[ "Compression", "docs_using_gbdk.html#autotoc_md51", null ],
[ "Copying Functions to RAM and HIRAM", "docs_using_gbdk.html#autotoc_md52", null ],
[ "Mixing C and Assembly", "docs_using_gbdk.html#autotoc_md53", [
[ "Inline ASM within C source files", "docs_using_gbdk.html#autotoc_md54", null ],
[ "In Separate ASM files", "docs_using_gbdk.html#autotoc_md55", null ]
] ],
[ "Including binary files in C source with incbin", "docs_using_gbdk.html#autotoc_md56", null ],
[ "Known Issues and Limitations", "docs_using_gbdk.html#autotoc_md57", [
[ "SDCC", "docs_using_gbdk.html#autotoc_md58", null ]
] ]
] ],
[ "Coding Guidelines", "docs_coding_guidelines.html", [
[ "Learning C / C fundamentals", "docs_coding_guidelines.html#autotoc_md59", [
[ "General C tutorials", "docs_coding_guidelines.html#autotoc_md60", null ],
[ "Embedded C introductions", "docs_coding_guidelines.html#autotoc_md61", null ],
[ "Game Boy games in C", "docs_coding_guidelines.html#autotoc_md62", null ]
] ],
[ "Understanding the hardware", "docs_coding_guidelines.html#autotoc_md63", null ],
[ "Writing optimal C code for the Game Boy and SDCC", "docs_coding_guidelines.html#autotoc_md64", [
[ "Tools", "docs_coding_guidelines.html#autotoc_md65", [
[ "GBTD / GBMB, Arrays and the \"const\" keyword", "docs_coding_guidelines.html#autotoc_md66", null ]
] ],
[ "Avoid Reading from VRAM", "docs_coding_guidelines.html#autotoc_md67", null ],
[ "Variables", "docs_coding_guidelines.html#autotoc_md68", null ],
[ "Code structure", "docs_coding_guidelines.html#autotoc_md69", null ],
[ "GBDK API/Library", "docs_coding_guidelines.html#autotoc_md70", null ],
[ "Toolchain", "docs_coding_guidelines.html#autotoc_md71", null ],
[ "Constants, Signed-ness and Overflows", "docs_coding_guidelines.html#autotoc_md72", null ],
[ "Chars and vararg functions", "docs_coding_guidelines.html#autotoc_md73", [
[ "Chars", "docs_coding_guidelines.html#autotoc_md74", null ]
] ]
] ],
[ "When C isn't fast enough", "docs_coding_guidelines.html#autotoc_md75", [
[ "Reusable Local Labels and Inline ASM", "docs_coding_guidelines.html#autotoc_md76", null ],
[ "Variables and registers", "docs_coding_guidelines.html#autotoc_md77", null ],
[ "Segments / Areas", "docs_coding_guidelines.html#autotoc_md78", null ],
[ "Calling convention", "docs_coding_guidelines.html#autotoc_md79", [
[ "Banked Calling Convention", "docs_coding_guidelines.html#autotoc_md80", null ]
] ]
] ]
] ],
[ "ROM/SRAM Banking and MBCs", "docs_rombanking_mbcs.html", [
[ "ROM/SRAM Banking and MBCs (Memory Bank Controllers)", "docs_rombanking_mbcs.html#autotoc_md81", [
[ "Non-banked cartridges", "docs_rombanking_mbcs.html#autotoc_md82", null ],
[ "MBC Banked cartridges (Memory Bank Controllers)", "docs_rombanking_mbcs.html#autotoc_md83", null ],
[ "Recommended MBC type", "docs_rombanking_mbcs.html#autotoc_md84", [
[ "Bank 0 Size Limit and Overflows When Using MBCs", "docs_rombanking_mbcs.html#autotoc_md85", null ],
[ "Conserving Bank 0 for Important Functions and Data", "docs_rombanking_mbcs.html#autotoc_md86", null ]
] ]
] ],
[ "Working with Banks", "docs_rombanking_mbcs.html#autotoc_md87", [
[ "Setting the ROM bank for a Source file", "docs_rombanking_mbcs.html#autotoc_md88", null ],
[ "Setting the Cart SRAM bank for a Source file", "docs_rombanking_mbcs.html#autotoc_md89", null ],
[ "Setting the MBC and number of Cart ROM & SRAM banks available", "docs_rombanking_mbcs.html#autotoc_md90", null ],
[ "MBC Type Chart", "docs_rombanking_mbcs.html#autotoc_md91", null ],
[ "Getting Bank Numbers", "docs_rombanking_mbcs.html#autotoc_md92", null ],
[ "Banking and Functions", "docs_rombanking_mbcs.html#autotoc_md93", [
[ "BANKED/NONBANKED Keywords for Functions", "docs_rombanking_mbcs.html#autotoc_md94", null ],
[ "Banked Function Calls", "docs_rombanking_mbcs.html#autotoc_md95", null ]
] ],
[ "Const Data (Variables in ROM)", "docs_rombanking_mbcs.html#autotoc_md96", null ],
[ "Variables in Cart SRAM", "docs_rombanking_mbcs.html#autotoc_md97", null ],
[ "Far Pointers", "docs_rombanking_mbcs.html#autotoc_md98", null ],
[ "Bank switching", "docs_rombanking_mbcs.html#autotoc_md99", null ],
[ "Wrapper Function for Accessing Banked Data", "docs_rombanking_mbcs.html#autotoc_md100", null ],
[ "Currently active bank: CURRENT_BANK", "docs_rombanking_mbcs.html#autotoc_md101", null ]
] ],
[ "Auto-Banking", "docs_rombanking_mbcs.html#autotoc_md102", null ],
[ "Errors related to banking (overflow, multiple writes to same location)", "docs_rombanking_mbcs.html#autotoc_md103", null ],
[ "Bank space usage", "docs_rombanking_mbcs.html#autotoc_md104", [
[ "Other important notes", "docs_rombanking_mbcs.html#autotoc_md105", null ]
] ],
[ "Banking example projects", "docs_rombanking_mbcs.html#autotoc_md106", null ],
[ "SMS/Game Gear Banking", "docs_rombanking_mbcs.html#autotoc_md107", [
[ "ROM Banks", "docs_rombanking_mbcs.html#autotoc_md108", null ],
[ "Cart SRAM Banks", "docs_rombanking_mbcs.html#autotoc_md109", null ],
[ "Auto-Banking", "docs_rombanking_mbcs.html#autotoc_md110", null ]
] ],
[ "NES Banking", "docs_rombanking_mbcs.html#autotoc_md111", [
[ "ROM Banks", "docs_rombanking_mbcs.html#autotoc_md112", null ],
[ "Cart SRAM Banks", "docs_rombanking_mbcs.html#autotoc_md113", null ]
] ]
] ],
[ "Supported Consoles & Cross Compiling", "docs_supported_consoles.html", [
[ "Consoles Supported by GBDK", "docs_supported_consoles.html#autotoc_md143", null ],
[ "Cross Compiling for Different Consoles", "docs_supported_consoles.html#autotoc_md144", [
[ "lcc", "docs_supported_consoles.html#autotoc_md145", null ],
[ "sdcc", "docs_supported_consoles.html#autotoc_md146", null ],
[ "Console Port and Platform Settings", "docs_supported_consoles.html#autotoc_md147", null ]
] ],
[ "Cross-Platform Constants", "docs_supported_consoles.html#autotoc_md148", [
[ "Console Identifiers", "docs_supported_consoles.html#autotoc_md149", null ],
[ "Console Hardware Properties", "docs_supported_consoles.html#autotoc_md150", null ]
] ],
[ "Using <gbdk/...> headers", "docs_supported_consoles.html#autotoc_md151", null ],
[ "Cross Platform Example Projects", "docs_supported_consoles.html#autotoc_md152", [
[ "Cross Platform Asset Example", "docs_supported_consoles.html#autotoc_md153", null ]
] ],
[ "Hardware Summaries", "docs_supported_consoles.html#autotoc_md154", [
[ "Safe VRAM / Display Controller Access", "docs_supported_consoles.html#autotoc_md155", null ]
] ],
[ "Using Game Boy Color (GBC/CGB) Features", "docs_supported_consoles.html#autotoc_md156", [
[ "Differences Versus the Regular Game Boy (DMG/GBP/SGB)", "docs_supported_consoles.html#autotoc_md157", null ],
[ "Game Boy Color features in GBDK", "docs_supported_consoles.html#autotoc_md158", null ],
[ "CGB Examples", "docs_supported_consoles.html#autotoc_md159", null ]
] ],
[ "Porting Between Supported Consoles", "docs_supported_consoles.html#autotoc_md160", [
[ "From Game Boy to Analogue Pocket", "docs_supported_consoles.html#autotoc_md161", [
[ "Official differences:", "docs_supported_consoles.html#autotoc_md162", null ],
[ "Observed differences:", "docs_supported_consoles.html#autotoc_md163", null ],
[ "Registers and Flags", "docs_supported_consoles.html#autotoc_md164", null ],
[ "Boot logo", "docs_supported_consoles.html#autotoc_md165", null ]
] ],
[ "From Game Boy to SMS/GG", "docs_supported_consoles.html#autotoc_md166", [
[ "RAM Banks", "docs_supported_consoles.html#autotoc_md167", null ],
[ "Tile Data and Tile Map loading", "docs_supported_consoles.html#autotoc_md168", [
[ "Tile and Map Data in 2bpp Game Boy Format", "docs_supported_consoles.html#autotoc_md169", null ],
[ "Tile and Map Data in Native Format", "docs_supported_consoles.html#autotoc_md170", null ]
] ],
[ "Colors and Palettes", "docs_supported_consoles.html#autotoc_md171", [
[ "Emulated Game Boy Color map attributes on the SMS/Game Gear", "docs_supported_consoles.html#autotoc_md172", null ]
] ]
] ],
[ "From Game Boy to NES", "docs_supported_consoles.html#autotoc_md173", [
[ "Mapper", "docs_supported_consoles.html#autotoc_md174", null ],
[ "Buffered mode vs direct mode", "docs_supported_consoles.html#autotoc_md175", [
[ "Buffered mode implementation details", "docs_supported_consoles.html#autotoc_md176", null ],
[ "Direct mode implementation details", "docs_supported_consoles.html#autotoc_md177", null ],
[ "Caveat: Write appropriate global backdrop before turning display off", "docs_supported_consoles.html#autotoc_md178", null ]
] ],
[ "Shadow PPU registers", "docs_supported_consoles.html#autotoc_md179", null ],
[ "Implementation of (fake) vbl / lcd handlers", "docs_supported_consoles.html#autotoc_md180", null ],
[ "Caveat: Make sure to call vsync on every frame", "docs_supported_consoles.html#autotoc_md181", null ],
[ "Implementation of timer handler", "docs_supported_consoles.html#autotoc_md182", null ],
[ "Tile Data and Tile Map loading", "docs_supported_consoles.html#autotoc_md183", [
[ "Tile and Map Data in 2bpp Game Boy Format", "docs_supported_consoles.html#autotoc_md184", null ],
[ "Tile and Map Data in Native Format", "docs_supported_consoles.html#autotoc_md185", null ],
[ "Game Boy Color map attributes on the NES", "docs_supported_consoles.html#autotoc_md186", null ]
] ]
] ],
[ "From Game Boy to Mega Duck / Cougar Boy", "docs_supported_consoles.html#autotoc_md187", [
[ "Summary of Hardware changes:", "docs_supported_consoles.html#autotoc_md188", null ],
[ "Best Practices", "docs_supported_consoles.html#autotoc_md189", null ],
[ "Sound Register Value Changes", "docs_supported_consoles.html#autotoc_md190", null ],
[ "Graphics Register Bit Changes", "docs_supported_consoles.html#autotoc_md191", null ],
[ "Detailed Register Address Changes", "docs_supported_consoles.html#autotoc_md192", null ]
] ]
] ]
] ],
[ "GBDK Toolchain", "docs_toolchain.html", [
[ "Overview", "docs_toolchain.html#autotoc_md114", null ],
[ "Data Types", "docs_toolchain.html#autotoc_md115", [
[ "Using variables in High RAM on the Game Boy", "docs_toolchain.html#autotoc_md116", null ]
] ],
[ "Changing Important Addresses", "docs_toolchain.html#autotoc_md117", null ],
[ "Compiling programs", "docs_toolchain.html#autotoc_md118", [
[ "Makefiles", "docs_toolchain.html#Makefiles", null ],
[ "Using Makefiles", "docs_toolchain.html#autotoc_md119", null ],
[ "Linker Files and ROM Auto Banking", "docs_toolchain.html#autotoc_md120", null ]
] ],
[ "Build Tools", "docs_toolchain.html#autotoc_md121", [
[ "lcc", "docs_toolchain.html#autotoc_md122", null ],
[ "sdcc", "docs_toolchain.html#autotoc_md123", null ],
[ "sdasgb", "docs_toolchain.html#autotoc_md124", null ],
[ "bankpack", "docs_toolchain.html#autotoc_md125", null ],
[ "sdldgb", "docs_toolchain.html#autotoc_md126", null ],
[ "ihxcheck", "docs_toolchain.html#autotoc_md127", null ],
[ "makebin", "docs_toolchain.html#autotoc_md128", null ]
] ],
[ "GBDK Utilities", "docs_toolchain.html#autotoc_md129", [
[ "GBCompress", "docs_toolchain.html#autotoc_md130", null ],
[ "png2asset", "docs_toolchain.html#autotoc_md131", [
[ "Working with png2asset", "docs_toolchain.html#autotoc_md132", [
[ "Terminology", "docs_toolchain.html#autotoc_md133", null ],
[ "Conversion Process", "docs_toolchain.html#autotoc_md134", null ],
[ "Maps", "docs_toolchain.html#autotoc_md135", null ],
[ "Meta sprites", "docs_toolchain.html#autotoc_md136", null ],
[ "Super Game Boy Borders (SGB)", "docs_toolchain.html#autotoc_md137", null ]
] ]
] ],
[ "makecom", "docs_toolchain.html#autotoc_md138", null ],
[ "makenes", "docs_toolchain.html#autotoc_md139", null ],
[ "png2hicolorgb", "docs_toolchain.html#autotoc_md140", [
[ "Additional Details", "docs_toolchain.html#autotoc_md141", null ]
] ],
[ "romusage", "docs_toolchain.html#autotoc_md142", null ]
] ]
] ],
[ "Example Programs", "docs_example_programs.html", [
[ "banks (various projects)", "docs_example_programs.html#autotoc_md193", null ],
[ "comm", "docs_example_programs.html#autotoc_md194", null ],
[ "crash", "docs_example_programs.html#autotoc_md195", null ],
[ "colorbar", "docs_example_programs.html#autotoc_md196", null ],
[ "dscan", "docs_example_programs.html#autotoc_md197", null ],
[ "filltest", "docs_example_programs.html#autotoc_md198", null ],
[ "fonts", "docs_example_programs.html#autotoc_md199", null ],
[ "galaxy", "docs_example_programs.html#autotoc_md200", null ],
[ "gb-dtmf", "docs_example_programs.html#autotoc_md201", null ],
[ "gbdecompress", "docs_example_programs.html#autotoc_md202", null ],
[ "irq", "docs_example_programs.html#autotoc_md203", null ],
[ "large map", "docs_example_programs.html#autotoc_md204", null ],
[ "metasprites", "docs_example_programs.html#autotoc_md205", null ],
[ "lcd isr wobble", "docs_example_programs.html#autotoc_md206", null ],
[ "paint", "docs_example_programs.html#autotoc_md207", null ],
[ "rand", "docs_example_programs.html#autotoc_md208", null ],
[ "ram_fn", "docs_example_programs.html#autotoc_md209", null ],
[ "rpn", "docs_example_programs.html#autotoc_md210", null ],
[ "samptest", "docs_example_programs.html#autotoc_md211", null ],
[ "sgb (various)", "docs_example_programs.html#autotoc_md212", null ],
[ "sound", "docs_example_programs.html#autotoc_md213", null ],
[ "space", "docs_example_programs.html#autotoc_md214", null ],
[ "templates", "docs_example_programs.html#autotoc_md215", null ]
] ],
[ "Frequently Asked Questions (FAQ)", "docs_faq.html", [
[ "General", "docs_faq.html#autotoc_md216", null ],
[ "Licensing", "docs_faq.html#autotoc_md217", null ],
[ "Graphics and Resources", "docs_faq.html#autotoc_md218", null ],
[ "ROM Header Settings", "docs_faq.html#autotoc_md219", null ],
[ "Editors", "docs_faq.html#autotoc_md220", null ],
[ "Errors and Warnings", "docs_faq.html#autotoc_md221", null ],
[ "Debugging / Compiling / Toolchain", "docs_faq.html#autotoc_md222", null ],
[ "API / Utilities", "docs_faq.html#autotoc_md223", null ]
] ],
[ "Migrating to new GBDK Versions", "docs_migrating_versions.html", [
[ "GBDK-2020 versions", "docs_migrating_versions.html#autotoc_md224", [
[ "Porting to GBDK-2020 4.5.0", "docs_migrating_versions.html#autotoc_md225", null ],
[ "Porting to GBDK-2020 4.4.0", "docs_migrating_versions.html#autotoc_md226", null ],
[ "Porting to GBDK-2020 4.3.0", "docs_migrating_versions.html#autotoc_md227", null ],
[ "Porting to GBDK-2020 4.2.0", "docs_migrating_versions.html#autotoc_md228", null ],
[ "Porting to GBDK-2020 4.1.1", "docs_migrating_versions.html#autotoc_md229", null ],
[ "Porting to GBDK-2020 4.1.0", "docs_migrating_versions.html#autotoc_md230", null ],
[ "Porting to GBDK-2020 4.0.6", "docs_migrating_versions.html#autotoc_md231", null ],
[ "Porting to GBDK-2020 4.0.5", "docs_migrating_versions.html#autotoc_md232", null ],
[ "Porting to GBDK-2020 4.0.4", "docs_migrating_versions.html#autotoc_md233", null ],
[ "Porting to GBDK-2020 4.0.3", "docs_migrating_versions.html#autotoc_md234", null ],
[ "Porting to GBDK-2020 4.0.2", "docs_migrating_versions.html#autotoc_md235", null ],
[ "Porting to GBDK-2020 4.0.1", "docs_migrating_versions.html#autotoc_md236", null ],
[ "Porting to GBDK-2020 4.0", "docs_migrating_versions.html#autotoc_md237", null ],
[ "Porting to GBDK-2020 3.2", "docs_migrating_versions.html#autotoc_md238", null ],
[ "Porting to GBDK-2020 3.1.1", "docs_migrating_versions.html#autotoc_md239", null ],
[ "Porting to GBDK-2020 3.1", "docs_migrating_versions.html#autotoc_md240", null ],
[ "Porting to GBDK-2020 3.0.1", "docs_migrating_versions.html#autotoc_md241", null ]
] ],
[ "Historical GBDK versions", "docs_migrating_versions.html#autotoc_md243", [
[ "GBDK 1.1 to GBDK 2.0", "docs_migrating_versions.html#autotoc_md244", null ]
] ]
] ],
[ "GBDK Release Notes", "docs_releases.html", [
[ "GBDK-2020 Release Notes", "docs_releases.html#autotoc_md245", [
[ "GBDK-2020 4.5.0", "docs_releases.html#autotoc_md246", null ],
[ "GBDK-2020 4.4.0", "docs_releases.html#autotoc_md247", null ],
[ "GBDK-2020 4.3.0", "docs_releases.html#autotoc_md248", null ],
[ "GBDK-2020 4.2.0", "docs_releases.html#autotoc_md249", null ],
[ "GBDK-2020 4.1.1", "docs_releases.html#autotoc_md250", null ],
[ "GBDK-2020 4.1.0", "docs_releases.html#autotoc_md251", null ],
[ "GBDK-2020 4.0.6", "docs_releases.html#autotoc_md252", null ],
[ "GBDK-2020 4.0.5", "docs_releases.html#autotoc_md253", null ],
[ "GBDK-2020 4.0.4", "docs_releases.html#autotoc_md254", null ],
[ "GBDK-2020 4.0.3", "docs_releases.html#autotoc_md255", null ],
[ "GBDK-2020 4.0.2", "docs_releases.html#autotoc_md256", null ],
[ "GBDK-2020 4.0.1", "docs_releases.html#autotoc_md257", null ],
[ "GBDK-2020 4.0", "docs_releases.html#autotoc_md258", null ],
[ "GBDK-2020 3.2", "docs_releases.html#autotoc_md259", null ],
[ "GBDK-2020 3.1.1", "docs_releases.html#autotoc_md260", null ],
[ "GBDK-2020 3.1", "docs_releases.html#autotoc_md261", null ],
[ "GBDK-2020 3.0.1", "docs_releases.html#autotoc_md262", null ],
[ "GBDK-2020 3.0", "docs_releases.html#autotoc_md263", null ]
] ],
[ "Historical GBDK Release Notes", "docs_releases.html#autotoc_md264", [
[ "GBDK 2.96", "docs_releases.html#autotoc_md265", null ],
[ "GBDK 2.95-3", "docs_releases.html#autotoc_md266", null ],
[ "GBDK 2.95-2", "docs_releases.html#autotoc_md267", null ],
[ "GBDK 2.95", "docs_releases.html#autotoc_md268", null ],
[ "GBDK 2.94", "docs_releases.html#autotoc_md269", null ],
[ "GBDK 2.93", "docs_releases.html#autotoc_md270", null ],
[ "GBDK 2.92-2 for win32", "docs_releases.html#autotoc_md271", null ],
[ "GBDK 2.92", "docs_releases.html#autotoc_md272", null ],
[ "GBDK 2.91", "docs_releases.html#autotoc_md273", null ],
[ "GBDK 2.1.5", "docs_releases.html#autotoc_md274", null ],
[ "GBDK 2.0b11 (DOS binary only) - 24 November 1997", "docs_releases.html#autotoc_md275", null ],
[ "GBDK 2.0b10 (DOS binary only) - 6 November 1997", "docs_releases.html#autotoc_md276", null ],
[ "GBDK 2.0b9 (DOS binary only)", "docs_releases.html#autotoc_md277", null ],
[ "GBDK 2.0b8 (DOS binary only)", "docs_releases.html#autotoc_md278", null ],
[ "GBDK 2.0b7 (DOS binary only)", "docs_releases.html#autotoc_md279", null ],
[ "GBDK 2.0b6", "docs_releases.html#autotoc_md280", null ],
[ "GBDK 2.0b5", "docs_releases.html#autotoc_md281", null ],
[ "GBDK 2.0b4", "docs_releases.html#autotoc_md282", null ],
[ "GBDK 2.0b3", "docs_releases.html#autotoc_md283", null ],
[ "GBDK 2.0b2", "docs_releases.html#autotoc_md284", null ],
[ "GBDK 2.0b1", "docs_releases.html#autotoc_md285", null ],
[ "GBDK 1.1", "docs_releases.html#autotoc_md286", null ],
[ "GBDK 1.0-1 1996", "docs_releases.html#autotoc_md287", null ]
] ]
] ],
[ "Toolchain settings", "docs_toolchain_settings.html", [
[ "lcc settings", "docs_toolchain_settings.html#autotoc_md288", null ],
[ "sdcc settings", "docs_toolchain_settings.html#autotoc_md289", null ],
[ "sdasgb settings", "docs_toolchain_settings.html#autotoc_md290", null ],
[ "sdasz80 settings", "docs_toolchain_settings.html#autotoc_md291", null ],
[ "sdas6500 settings", "docs_toolchain_settings.html#autotoc_md292", null ],
[ "bankpack settings", "docs_toolchain_settings.html#autotoc_md293", null ],
[ "sdldgb settings", "docs_toolchain_settings.html#autotoc_md294", null ],
[ "sdldz80 settings", "docs_toolchain_settings.html#autotoc_md295", null ],
[ "sdld6808 settings", "docs_toolchain_settings.html#autotoc_md296", null ],
[ "ihxcheck settings", "docs_toolchain_settings.html#autotoc_md297", null ],
[ "makebin settings", "docs_toolchain_settings.html#autotoc_md298", null ],
[ "makecom settings", "docs_toolchain_settings.html#autotoc_md299", null ],
[ "makenes settings", "docs_toolchain_settings.html#autotoc_md300", null ],
[ "gbcompress settings", "docs_toolchain_settings.html#autotoc_md301", null ],
[ "png2asset settings", "docs_toolchain_settings.html#autotoc_md302", null ],
[ "png2hicolorgb settings", "docs_toolchain_settings.html#autotoc_md303", null ],
[ "romusage settings", "docs_toolchain_settings.html#autotoc_md304", null ]
] ]
];