diff --git a/docs/api/docs_coding_guidelines.html b/docs/api/docs_coding_guidelines.html
index 3a720646..867f65c4 100644
--- a/docs/api/docs_coding_guidelines.html
+++ b/docs/api/docs_coding_guidelines.html
@@ -89,42 +89,42 @@ $(document).ready(function(){initNavTree('docs_coding_guidelines.html',''); init
Coding Guidelines
-
+
Learning C / C fundamentals
Writing games and other programs with GBDK will be much easier with a basic understanding of the C language. In particular, understanding how to use C on "Embedded Platforms" (small computing systems, such as the Game Boy) can help you write better code (smaller, faster, less error prone) and avoid common pitfals.
-
In addition to understanding the C language it's important to learn how the Game Boy hardware works. What it is capable of doing, what it isn't able to do, and what resources are available to work with. A good way to do this is by reading the Pandocs and checking out the awesome_gb list.
-
+
Writing optimal C code for the Game Boy and SDCC
The following guidelines can result in better code for the Game Boy, even though some of the guidance may be contrary to typical advice for general purpose computers that have more resources and speed.
-
+
Tools
-
+
GBTD / GBMB, Arrays and the "const" keyword
Important: The old GBTD/GBMB fails to include the const keyword when exporting to C source files for GBDK. That causes arrays to be created in RAM instead of ROM, which wastes RAM, uses a lot of ROM to initialize the RAM arrays and slows the compiler down a lot.
__Use of toxa's updated GBTD/GBMB is highly recommended.__
If you wish to use the original tools, you must add the const keyword every time the graphics are re-exported to C source files.
-
+
Variables
- Use 8-bit values as much as possible. They will be much more efficient and compact than 16 and 32 bit types.
@@ -133,6 +133,14 @@ Variables
Types are defined in
asm/types.h and
asm/gbz80/types.h
Global and local static variables are generally more efficient than local non-static variables (which go on the stack and are slower and can result in slower code).
const keyword: Use const for arrays, structs and variables with read-only (constant) data. It will reduce ROM, RAM and CPU usage significantly. Non-const values are loaded from ROM into RAM inefficiently, and there is no benefit in loading them into the limited available RAM if they aren't going to be changed.
+
Here is how to delcare const pointers and variables:
+
For calculated values that don't change, pre-compute results once and store the result. Using lookup-tables and the like can improve speed and reduce code size. Macros can sometimes help. It may be beneficial to do the calculations with an outside tool and then include the result as C code in a const array.
Use an advancing pointer (someStruct->var = x; someStruct++) to loop through arrays of structs instead of using indexing each time in the loop someStruct[i].var = x.
When modifying variables that are also changed in an Interrupt Service Routine (ISR), wrap them the relevant code block in a __critical { } block. See http://sdcc.sourceforge.net/doc/sdccman.pdf#section.3.9
@@ -143,9 +151,10 @@ Variables
-
+
Code structure
+- Do not
#include .c source files into other .c source files. Instead create .h header files for them and include those. https://www.tutorialspoint.com/cprogramming/c_header_files.htm
- When procesing for a given frame is done and it is time to wait before starting the next frame, wait_vbl_done() can be used. It uses HALT to put the CPU into a low power state until processing resumes. The CPU will wake up and resume processing at the end of the current frame when the Vertical Blanking interrupt is triggered.
- Minimize use of multiplication, modulo with non-powers of 2, and division with non-powers of 2. These operations have no corresponding CPU instructions (software functions), and hence are time costly.
- SDCC has some optimizations for:
@@ -160,14 +169,14 @@ Code structure
Use inline functions if the function is short. (with the inline keyword, such as inline UINT8 myFunction() { ... })
Do not use recursive functions
-
+
GBDK API/Library
- stdio.h: If you have other ways of printing text, avoid including stdio.h and using functions such as printf(). Including it will use a large number of the background tiles for font characters. If stdio.h is not included then that space will be available for use with other tiles instead.
- drawing.h: The Game Boy graphics hardware is not well suited to frame-buffer style graphics such as the kind provided in drawing.h. Due to that, most drawing functions (rectangles, circles, etc) will be slow . When possible it's much faster and more efficient to work with the tiles and tile maps that the Game Boy hardware is built around.
- waitpad() and waitpadup check for input in a loop that doesn't HALT at all, so the CPU will be maxed out until it returns. One alternative is to write a function with a loop that checks input with joypad() and then waits a frame using wait_vbl_done() (which idles the CPU while waiting) before checking input again.
-
+
Toolchain
Learn some ASM and inspect the compiler output to understand what the compiler is doing and how your code gets translated. This can help with writing better C code and with debugging.
-
+
chars and vararg functions
In standard C when chars are passed to a function with variadic arguments (varargs, those delcared with ... as a parameter), such as printf(), those chars get automatically promoted to ints. For an 8 bit cpu such as the Game Boy's, this is not as efficient or desireable in most cases. So the default SDCC behavior, which GBDK-2020 expects, is that chars will remain chars and not get promoted to ints when explicitly cast as chars while calling a varargs function.
@@ -210,11 +219,11 @@ printf("%hx %hx", (unsigned char)i, (unsigned char)i);
Also See:
-
+
When C isn't fast enough
- Todo:
- Update and verify this section for the modernized SDCC and toolchain
For many applications C is fast enough but in intensive functions are sometimes better written in assembler. This section deals with interfacing your core C program with fast assembly sub routines.
-
+
Calling convention
sdcc in common with almost all C compilers prepends a '_' to any function names. For example the function printf(...) begins at the label _printf::. Note that all functions are declared global.
The parameters to a function are pushed in right to left order with no aligning - so a byte takes up a byte on the stack instead of the more natural word. So for example the function int store_byte( UWORD addr, UBYTE byte) would push 'byte' onto the stack first then addr using a total of three bytes. As the return address is also pushed, the stack would contain:
At SP+0 - the return address
@@ -224,11 +233,11 @@ Calling convention
At SP+4 - byte
Note that the arguments that are pushed first are highest in the stack due to how the Game Boy's stack grows downwards.
The function returns in DE.
-
+
Variables and registers
C normally expects registers to be preserved across a function call. However in the case above as DE is used as the return value and HL is used for anything, only BC needs to be preserved.
Getting at C variables is slightly tricky due to how local variables are allocated on the stack. However you shouldn't be using the local variables of a calling function in any case. Global variables can be accessed by name by adding an underscore.
-
+
Segments
The use of segments for code, data and variables is more noticeable in assembler. GBDK and SDCC define a number of default segments - _CODE, _DATA and _BSS. Two extra segments _HEADER and _HEAP exist for the Game Boy header and malloc heap respectively.
The order these segments are linked together is determined by crt0.s and is currently _CODE in ROM, then _DATA, _BSS, _HEAP in WRAM, with STACK at the top of WRAM. _HEAP is placed after _BSS so that all spare memory is available for the malloc routines. To place code in other than the first two banks, use the segments _CODE_x where x is the 16kB bank number.
diff --git a/docs/api/docs_example_programs.html b/docs/api/docs_example_programs.html
index fab3265b..bee4630a 100644
--- a/docs/api/docs_example_programs.html
+++ b/docs/api/docs_example_programs.html
@@ -90,19 +90,19 @@ $(document).ready(function(){initNavTree('docs_example_programs.html',''); initR
GBDK includes several example programs both in C and in assembly. They are located in the examples directory, and in its subdirectories. They can be built by typing make in the correnponding directory.
-
+
banks (various projects)
There are several different projects showing how to use ROM banking with GBDK.
-
+
comm
Illustrates how to use communication routines.
-
+
crash
Demonstrates how to use the optional GBDK crash handler which dumps debug info to the Game Boy screen in the event of a program crash.
-
+
colorbar
The colorbar program, written by Mr. N.U. of TeamKNOx, illustrates the use of colors on a Color GameBoy.
-
+
dscan
Deep Scan is a game written by Mr. N.U. of TeamKNOx that supports the Color GameBoy. Your aim is to destroy the submarines from your boat, and to avoid the projectiles that they send to you. The game should be self-explanatory. The following keys are used:
RIGHT/LEFT : Move your boat
A/B : Send a bomb from one side of your boat
@@ -113,28 +113,28 @@ When game is paused:
SELECT : Invert A and B buttons
RIGHT/LEFT : Change speed
UP/DOWN : Change level
-
+
filltest
Demonstrates various graphics routines.
-
+
fonts
Examples of how to work with the built in font and printing features.
-
+
galaxy
A C translation of the space.s assembly program.
-
+
gb-dtmf
The gb-dtmf, written by Osamu Ohashi, is a Dual Tone Multi-Frequency (DTMF) generator.
-
+
gbdecompress
Demonstrates using gbdecompress to load a compressed tile set into vram.
-
+
irq
Illustrates how to install interrupt handlers.
-
+
large map
Shows how to scroll with maps larger than 32 x 32 tiles using set_bkg_submap(). It fills rows and columns at the edges of the visible viewport (of the hardware Background Map) with the desired sub-region of the large map as it scrolls.
-
+
metasprites
Demonstrates using the metasprite features to move and animate a large sprite.
- Press A button to show / hide the metasprite
@@ -142,30 +142,31 @@ metasprites
- Press SELECT button to cycle the metasprite through Normal / Flip-Y / Flip-XY / Flip-X
- Up / Down / Left / Right to move the metasprite
-
+
lcd isr wobble
An example of how to use the LCD ISR for visual special effects
-
+
paint
The paint example is a painting program. It supports different painting tools, drawing modes, and colors. At the moment, it only paints individual pixels. This program illustrates the use of the full-screen drawing library. It also illustrates the use of generic structures and big sprites.
Arrow keys : Move the cursor
SELECT : Display/hide the tools palette
A : Select tool
-
+
rand
The rand program, written by Luc Van den Borre, illustrates the use of the GBDK random generator.
-
+
ram_fn
The ram_fn example illustrates how to copy functions to RAM or HIRAM, and how to call them from C.
-
+
rpn
A basic RPN calculator. Try entering expressions like 12 134* and then 1789+.
-
+
samptest
Demonstration of playing a sound sample.
-
+
sgb (various)
A collection of examples showing how to use the Super Game Boy API features.
-
+
+
sound
The sound example is meant for experimenting with the soung generator of the GameBoy (to use on a real GameBoy). The four different sound modes of the GameBoy are available. It also demonstrates the use of bit fields in C (it's a quick hack, so don't expect too much from the code). The following keys are used:
UP/DOWN : Move the cursor
RIGHT/LEFT : Increment/decrement the value
@@ -175,14 +176,14 @@ START : Play the current mode's sound (or all modes if in control screen)
START+A : Play a little music with the current mode's sound
SELECT : Change the sound mode (1, 2, 3, 4 and control)
SELECT+A : Dump the sound registers to the screen
-
+
space
The space example is an assembly program that demonstrates the use of sprites, window, background, fixed-point values and more. The following keys are used:
Arrow keys : Change the speed (and direction) of the sprite
Arrow keys + A : Change the speed (and direction) of the window
Arrow keys + B : Change the speed (and direction) of the background
START : Open/close the door
SELECT : Basic fading effect
-
+
templates
Two basic template examples are provided as a starting place for writing your GBDK programs.
diff --git a/docs/api/docs_faq.html b/docs/api/docs_faq.html
index 8ec318b1..fe6d479c 100644
--- a/docs/api/docs_faq.html
+++ b/docs/api/docs_faq.html
@@ -89,97 +89,109 @@ $(document).ready(function(){initNavTree('docs_faq.html',''); initResizable(); }
Frequently Asked Questions (FAQ)
-
-
-Frequently Asked Questions
+
+
+General
-- 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 can sound effects be made?
+- The simplest way is to use the Game Boy sound hardware directly. See the Sound Example for a way to test out sounds on the hardware.
+- Further discussion on using the Sound Example rom can be found in the ZGB wiki. Note that some example code there is ZGB specific and not part of the base GBDK API: https://github.com/Zal0/ZGB/wiki/Sounds
+
+
+
+
+
+ROM Header Settings
+
+- 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
-
+ -ys : Super GameBoy compatible
-
-
-
- How do I set the ROM MBC type?
-
-
+
+Errors / Compiling / Toolchain
-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.
+- 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.
+
-
+
+
+
+- What does
error: size of the buffer is too small mean?
+Your program is using more banks than you have configured in the toolchain. Either the MBC type was not set, or the number of banks or MBC type should be changed to provide more banks.
+See the section setting_mbc_and_rom_ram_banks for more details.
-
+
+
- Why is the compiler so slow, or why did it suddenly get much slower?
-- This may happen if you have large initialized arrays declared without the
const keyword. It's important to use the const keyword for read-only data. See const_gbtd_gbmb and const_array_data
-
+ - This may happen if you have large initialized arrays declared without the
const keyword. It's important to use the const keyword for read-only data. See const_gbtd_gbmb and const_array_data
-
-
-
+
- What flags should be enabled for debugging?
+
+- Is it possible to generate a debug symbol file (
.sym) compatible with the bgb emulator?
+- Yes, turn on
.noi output (LCC argument: -Wl-j or -debug and then use -Wm-yS with LCC (or -yS with makebin directly).
+
-
-
+
+API / Utilities
- Why are 8 bit numbers not printing correctly with printf()?
-- To correctly pass chars/uint8s for printing, they must be explicitly re-cast as such when calling the function. See docs_chars_varargs for more details.
-
+ - To correctly pass chars/uint8s for printing, they must be explicitly re-cast as such when calling the function. See docs_chars_varargs for more details.
-
-
-
+
- How can maps larger than 32x32 tiles be scrolled? & Why is the map wrapping around to the left side when setting a map wider than 32 tiles with set_bkg_data()?
- The hardware Background map is 32 x 32 tiles. The screen viewport that can be scrolled around that map is 20 x 18 tiles. In order to scroll around within a much larger map, new tiles must be loaded at the edges of the screen viewport in the direction that it is being scrolled. set_bkg_submap can be used to load those rows and columns of tiles from the desired sub-region of the large map.
- See the "Large Map" example program and set_bkg_submap()
-- Writes that exceed coordinate 31 of the Background tile map on the x or y axis will wrap around to the Left and Top edges.
-
+ - Writes that exceed coordinate 31 of the Background tile map on the x or y axis will wrap around to the Left and Top edges.
-
-
-
+
- When using gbt_player with music in banks, how can the current bank be restored after calling gbt_update()? (since it changes the currently active bank without restoring it).
+
- See restoring the current bank
-
-
-
+
- How can CGB palettes and other sprite properties be used with metasprites?
+
+- Weird things are happening to my sprite colors when I use png2mtspr and metasprites. What's going on and how does it work?
-
-
diff --git a/docs/api/docs_getting_started.html b/docs/api/docs_getting_started.html
index 4291fbe6..116a4a58 100644
--- a/docs/api/docs_getting_started.html
+++ b/docs/api/docs_getting_started.html
@@ -90,13 +90,13 @@ $(document).ready(function(){initNavTree('docs_getting_started.html',''); initRe
Follow the steps in this section to start using GBDK-2020.
-
+
1. Compile Example projects
Make sure your GBDK-2020 installation is working correctly by compiling some of the included example projects.
Navigate to the example projects folder ("examples/gb/" under your GBDK-2020 install folder) and open a command line. Then type:
make
This should build all of the examples sequentially. You can also navigate into an individual example project's folder and build it by typing make.
If everything works and there are no errors reported each example sub-folder should have it's on .gb ROM file.
-
+
2. Use a Template
To create a new project use a template!
There are template projects included in the GBDK example projects to help you get up and running. Their folder names start with template_.
@@ -106,14 +106,14 @@ $(document).ready(function(){initNavTree('docs_getting_started.html',''); initRe
Type make on the command line in that folder to verify it still builds.
Open main.c to start making changes.
-
+
3. If you use GBTD / GBMB, get the fixed version
If you plan to use GBTD / GBMB for making graphics, make sure to get the version with the const fix and other improvements. See const_gbtd_gbmb.
-
+
4. Review Coding Guidelines
Take a look at the coding guidelines, even if you have experience writing software for other platforms. There is important information to help you get good results and performance on the Game Boy.
If you haven't written programs in C before, check the C tutorials section.
-
+
5. 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.
What size will your game or program be?
-
+
6. Set up C Source debugging
Tracking down problems in code is easier with a debugger. Emulicious has a debug adapter that provides C source debugging with GBDK-2020.
-
+
7. Try a GBDK Tutorial
You might want to start off with a guided GBDK tutorial from the GBDK Tutorials section.
- Note: Tutorials (or parts of them) may be based on the older GBDK from the 2000's before it was updated to be GBDK-2020. The general principals are all the same, but the setup and parts of the toolchain (compiler/etc) may be somewhat different and some links may be outdated (pointing to the old GBDK or old tools).
-
+
8. Read up!
-
+
9. Need help?
Check out the links for online community and support and read the FAQ.
diff --git a/docs/api/docs_links_and_tools.html b/docs/api/docs_links_and_tools.html
index a6f62e32..33848ccc 100644
--- a/docs/api/docs_links_and_tools.html
+++ b/docs/api/docs_links_and_tools.html
@@ -89,9 +89,9 @@ $(document).ready(function(){initNavTree('docs_links_and_tools.html',''); initRe
Links and Third-Party Tools
-
This is a brief list of useful tools and information. It is not meant to be complete or exhaustive, for a larger list see awesome_gb
+
This is a brief list of useful tools and information. It is not meant to be complete or exhaustive, for a larger list see the Awesome Game Boy Development list.
-
+
SDCC Compiler Suite User Manual
- GBDK-2020 uses the SDCC compiler and related tools. The SDCC manual goes into much more detail about available features and how to use them.
@@ -99,7 +99,7 @@ SDCC Compiler Suite User Manual
http://sdcc.sourceforge.net
-
+
Getting Help
- GBDK Discord community:
@@ -108,18 +108,18 @@ Getting Help
https://gbdev.gg8.se/forums/
-
+
Game Boy Documentation
- Pandocs
Extensive and up-to-date technical documentation about the Game Boy and related hardware.
https://gbdev.io/pandocs/
-- Awesome Game Boy List
+ - Awesome Game Boy Development list
A list of Game Boy/Color development resources, tools, docs, related projects and homebrew.
https://gbdev.io/list.html
-
+
Tutorials
- Gaming Monsters Tutorials
@@ -128,27 +128,25 @@ Tutorials
https://github.com/gingemonster/GamingMonstersGameBoySampleCode
-
+
Example code
-
+
Graphics Tools
-- Game Boy Tile Designer and Map Builder (GBTD / GBMB)
+ -
+ Game Boy Tile Designer and Map Builder (GBTD / GBMB)
Sprite / Tile editor and Map Builder that can export to C that works with GBDK.
-
- Tilemap Studio
@@ -156,7 +154,7 @@ Graphics Tools
https://github.com/Rangi42/tilemap-studio/
-
+
Music drivers and tools
- GBT Player
@@ -170,7 +168,7 @@ Music drivers and tools
https://github.com/SuperDisk/hUGETracker
-
+
Emulators
- BGB
@@ -181,7 +179,7 @@ Emulators
https://emulicious.net/
-
+
Debugging tools
- Emulicious debug adapter
@@ -190,9 +188,6 @@ Debugging tools
romusage
Calculate used and free space in banks (ROM/RAM) and warn about errors such as bank overflows.
https://github.com/bbbbbr/romusage
-
noi2sym.py
- Convert .noi files into a symbol format compatible with BGB. Allows BGB to recognize variables and functions based on address.
- https://github.com/untoxa/hUGEBuild/blob/master/tools/noi2sym.py
src2sym.pl
Add line-by-line C source code to the main symbol file in a BGB compatible format. This allows for C source-like debugging in BGB in a limited way. https://gbdev.gg8.se/forums/viewtopic.php?id=710
diff --git a/docs/api/docs_migrating_versions.html b/docs/api/docs_migrating_versions.html
index 193c891f..0bc8e749 100644
--- a/docs/api/docs_migrating_versions.html
+++ b/docs/api/docs_migrating_versions.html
@@ -90,14 +90,14 @@ $(document).ready(function(){initNavTree('docs_migrating_versions.html',''); ini
This section contains information that may be useful to know or important when upgrading to a newer GBDK release.
-
+
GBDK 2020 versions
-
+
Porting to GBDK 2020 4.0.3
- No significant changes required
-
+
Porting to GBDK 2020 4.0.2
- The default font has been reduced from 256 to 96 characters.
@@ -106,7 +106,7 @@ Porting to GBDK 2020 4.0.2
-
+
Porting to GBDK 2020 4.0.1
- Important! : The
WRAM memory region is no longer automatically initialized to zeros during startup.
@@ -118,7 +118,7 @@ Porting to GBDK 2020 4.0.1
In .ihx files, multiple writes to the same ROM address are now warned about using ihxcheck.
set_*_tiles() now wrap maps around horizontal and vertical boundaries correctly. Code relying on it not wrapping correctly may be affected.
-
+
Porting to GBDK 2020 4.0
- GBDK now requires SDCC 4.0.3 or higher
@@ -127,29 +127,29 @@ Porting to GBDK 2020 4.0
GBDK now generates .ihx files, those are converted to a ROM using makebin (lcc can do this automatically in some use cases)
-
Setting ROM bytes directly with -Wl-yp0x<address>=0x<value> is no longer supported. Instead use makebin flags. For example, use -Wm-yC instead of -Wl-yp0x143=0xC0.
+
Setting ROM bytes directly with -Wl-yp0x<address>=0x<value> is no longer supported. Instead use makebin flags. For example, use -Wm-yC instead of -Wl-yp0x143=0xC0. See faq_gb_type_header_setting.
OAM symbol has been renamed to _shadow_OAM, that allows accessing shadow OAM directly from C code
-
+
Porting to GBDK 2020 3.2
- No significant changes required
-
+
Porting to GBDK 2020 3.1.1
- No significant changes required
-
+
Porting to GBDK 2020 3.1
- No significant changes required
-
+
Porting to GBDK 2020 3.0.1
- LCC was upgraded to use SDCC v4.0. Makefile changes may be required
-- The symbol format changed. To get usable symbols turn on
.noi output (LCC argument: -Wl-j)can be enabled and you can use noi2sym
+- The symbol format changed. To get bgb compatible symbols turn on
.noi output (LCC argument: -Wl-j or -debug) and use -Wm-yS
- ?? Suggested: With LCC argument:
-Wa-l (sdasgb:-a All user symbols made global)
- In SDCC 3.6.0, the default for char changed from signed to unsigned.
- If you want the old behavior use
--fsigned-char.
@@ -162,9 +162,9 @@ Porting to GBDK 2020 3.0.1
-
+
Historical GBDK versions
-
+
GBDK 1.1 to GBDK 2.0
- Change your int variables to long if they have to be bigger than 255. If they should only contain values between 0 and 255, use an unsigned int.
diff --git a/docs/api/docs_releases.html b/docs/api/docs_releases.html
index 4afb433e..ae465261 100644
--- a/docs/api/docs_releases.html
+++ b/docs/api/docs_releases.html
@@ -90,9 +90,9 @@ $(document).ready(function(){initNavTree('docs_releases.html',''); initResizable
The GBDK 2020 releases can be found on Github: https://github.com/gbdk-2020/gbdk-2020/releases
-
+
GBDK 2020 Release Notes
-
+
GBDK 2020 4.0.3
2021/03
- Library
@@ -128,7 +128,7 @@ GBDK 2020 4.0.3
-
+
GBDK 2020 4.0.2
2021/01/17
- Includes SDCC snapshot build version 12016 (has a fix for duplicate debug symbols generated from inlined header functions which GBDK 4.0+ uses)
@@ -152,7 +152,7 @@ GBDK 2020 4.0.2
- Examples: Added bgb debug example
-
+
GBDK 2020 4.0.1
2020/11/14
- Updated API documentation
@@ -178,7 +178,7 @@ GBDK 2020 4.0.1
-
+
GBDK 2020 4.0
2020/10/01
- GBDK now requires SDCC 4.0.3 or higher, that has fully working toolchain. Old link-gbz80 linker is not used anymore, sdldgb and makebin are used to link objects and produce binary roms; maccer tool is no longer needed either
@@ -207,19 +207,19 @@ GBDK 2020 4.0
-
+
GBDK 2020 3.2
2020/06/05
- Fixed OAM initialization that was causing a bad access to VRAM
- Interrupt handlers now wait for lcd controller mode 0 or 1 by default to prevent access to inaccessible VRAM in several functions (like set_bkg_tiles)
- Several optimizations here and there
-
+
GBDK 2020 3.1.1
2020/05/17
- Fixed issues with libgcc_s_dw2-1.dll
-
+
GBDK 2020 3.1
2020/05/16
- Banked functions are working! The patcher is fully integrated in link-gbz80, no extra tools are needed. It is based on Toxa's work
@@ -237,21 +237,21 @@ GBDK 2020 3.1
-
+
GBDK 2020 3.0.1
2020/04/12
- Updated SDCC to v.4.0
- Updated LCC to work with the new compiler
-
+
GBDK 2020 3.0
2020/04/12
- Initial GBDK 2020 release
Updated SDCC to v4.0 The new linker is not working so the old version is still there There is an issue with sdagb compiling drawing.s (the JP in line 32 after ".org .MODE_TABLE+4*.G_MODE" it's writing more than 4 bytes invading some addresses required by input.s:41) Because of this, all .s files in libc have been assembled with the old as-gbz80 and that's why it is still included
-
+
Historical GBDK Release Notes
-
+
GBDK 2.96
17 April, 2000
Many changes.
@@ -261,7 +261,7 @@ GBDK 2.96
Added full 32 bit long support.
Still no floating pt support.
-
+
GBDK 2.95-3
19th August, 2000
@@ -273,7 +273,7 @@ GBDK 2.95-3
This is an experimental release for those who feel keen. The main change is a new lexer (the first part in the compilation process which recognises words and symbols like '!=' and 'char' and turns them into a token number) which speeds up compilation of large initialised arrays like tile data by a factor of three. Please report any bugs that show up - this is a big change.
I have also included a 'minimal' release for win32 users which omits the documentation, library sources, and examples. If this is useful I will keep doing it.
-
+
GBDK 2.95-2
5th August, 2000
Just a small update. From the README:
@@ -283,7 +283,7 @@ GBDK 2.95-2
Changed the ways globals are exported, reducing the amount of extra junk linked in.
Turned on the optimisations in flex. Large constant arrays like tile data should compile a bit faster.
-
+
GBDK 2.95
22nd July, 2000
- Fixed 'a << c' for c = [9..15]
@@ -305,7 +305,7 @@ GBDK 2.95
7th July, 2000
Information on float and long support. Someone asked about the state of float/long support recently. Heres my reply:
long support is partly there, as is float support. The compiler will correctly recognise the long and float keywords, and will generate the code for most basic ops (+, -, &, | etc) for longs correctly and will generate the function calls for floats and hard long operations (*, /, %) correctly. However it wont generate float constants in the correct format, nor will it 'return' a long or float - gbdk doesn't yet support returning types of 4 bytes. Unfortunately its not going to make it into 2.95 as there's too much else to do, but I should be able to complete long support for 2.96
-
+
GBDK 2.94
7th May, 2000
Many fixes - see the README for more.
@@ -322,7 +322,7 @@ GBDK 2.94
-
+
GBDK 2.93
6th April, 2000
From the README
@@ -335,7 +335,7 @@ GBDK 2.93
The dscan demo now fully works (with a hack :)
There is a bug with cached computed values which are later used as pointers. When the value is first used as a BYTE arg, then later as a pointer the pointer fails as the high byte was never computed and is now missing. A temporary fix is to declare something appropriate as 'volatile' to stop the value being cached. See dscan.c/bombs() for an example.
-
+
GBDK 2.92-2 for win32
26th March, 2000
This is a maintenance release for win32 which fixes some of the niggly install problems, especially:
@@ -354,7 +354,7 @@ GBDK 2.92-2 for win32
Problems with the installer. It seems that the demo of InstallVISE has an unreasonably short time limit. I had planed to use the demo until the license key came through, but there's no sign of the key yet and the 3 day evaluation is up. If anyone knows of a free Windows installer with the ability to modify environment variables, please contact me. I hear that temporarily setting you clock back to the 15th works...
18th March, 2000
libc5 version available / "Error creating temp file" Thanks to Rodrigo Couto there is now a Linux/libc5 version of gbdk3-2.92 available - follow the download link above. At least it will be there when the main sourceforge site comes back up... Also some people have reported a bug where the compiler reports '*** Error creating temp file'. Try typing "mkdir c: tmp" from a DOS prompt and see if that helps.
-
+
GBDK 2.92
8th March, 2000
Better than 2.91 :). Can now be installed anywhere. All the demos work. See the README for more.
@@ -369,7 +369,7 @@ GBDK 2.92
-
+
GBDK 2.91
27th Feb, 2000
Better than 2.90 and includes Linux, win32 and a source tar ball. Some notes:
@@ -384,7 +384,7 @@ GBDK 2.91
Icehawk wrote "I did write some rumble pack routines. Just make sure to remind people to add -Wl-yt0x1C or -Wl-yt0x1D or -Wl-yt0x1E depending on sram and battery usage. Find the routines on my site (as usual). =)"
18th Oct, 1999
Bug tracking / FAQ up. Try the link on the left to report any bugs with GBDK. It's also the first place to look if your having problems.
-
+
GBDK 2.1.5
17th Oct, 1999
diff --git a/docs/api/docs_rombanking_mbcs.html b/docs/api/docs_rombanking_mbcs.html
index 9b65b88c..cfcbde0e 100644
--- a/docs/api/docs_rombanking_mbcs.html
+++ b/docs/api/docs_rombanking_mbcs.html
@@ -89,20 +89,20 @@ $(document).ready(function(){initNavTree('docs_rombanking_mbcs.html',''); initRe
ROM/RAM Banking and MBCs
-
+
ROM/RAM Banking and MBCs (Memory Bank Controllers)
The standard Game Boy cartridge with no MBC has a fixed 32K bytes of ROM. In order to make cartridges with larger ROM sizes (to store more code and graphics) MBCs can be used. They allow switching between multiple ROM banks that use the same memory region. Only one of the banks can be selected as active at a given time, while all the other banks are inactive (and so, inaccessible).
-
-Unbanked cartridges
-
Cartridges with no MBC controller are unbanked, they have 32K bytes of fixed ROM space and no switchable banks. For these cartridges the ROM space between 0000h and 7FFFh can be treated as a single large bank of 32K bytes, or as two contiguous banks of 16K bytes in Bank 0 at 0000h - 3FFFh and Bank 1 at 4000h to 7FFFh.
+Non-banked cartridges
+
Cartridges with no MBC controller are non-banked, they have 32K bytes of fixed ROM space and no switchable banks. For these cartridges the ROM space between 0000h and 7FFFh can be treated as a single large bank of 32K bytes, or as two contiguous banks of 16K bytes in Bank 0 at 0000h - 3FFFh and Bank 1 at 4000h to 7FFFh.
+
MBC Banked cartridges (Memory Bank Controllers)
Cartridges with MBCs allow the the Game Boy to work with ROMS up to 8MB in size and with RAM up to 128kB. Each bank is 16K Bytes.
-- Bank 0 of the ROM is located in the region at
0000h - 3FFFh. It is usually fixed (unbanked) and cannot be switched out for another bank.
+- Bank 0 of the ROM is located in the region at
0000h - 3FFFh. It is usually fixed (non-banked) and cannot be switched out for another bank.
- The higher region at
4000h to 7FFFh is used for switching between different ROM banks.
See the Pandocs for more details about the individual MBCs and their capabilities.
-
+
Working with Banks
To assign code and constant data (such as graphics) to a ROM bank and use it:
- Place the code for your ROM bank in one or several source files.
@@ -110,7 +110,7 @@ Working with Banks
- Specify the number of banks and MBC type during link time.
- When the program is running and wants to use data or call a function that is in a given bank, manually or automatically set the desired bank to active.
-
+
Setting the ROM bank for a Source file
The ROM and RAM bank for a source file can be set in a couple different ways. Multiple different banks cannot be assigned inside the same source file (unless the __addressmod method is used), but multiple source files can share the same bank.
If no ROM and RAM bank are speciied for a file then the default _CODE, _BSS and _DATA segments are used.
@@ -119,14 +119,14 @@ Setting the ROM bank for a Source file
The lcc switch for ROM bank -Wf-bo<N>. Example (ROM bank 2): -Wf-bo2
Using rom_autobanking
-
Note: You can use the UNBANKED keyword to define a function as unbanked if it resides in a source file which has been assigned a bank.
-
+
Note: You can use the NONBANKED keyword to define a function as non-banked if it resides in a source file which has been assigned a bank.
+
Setting the RAM bank for a Source file
- Using the lcc switch for RAM bank
-Wf-ba<N>. Example (RAM bank 3): -Wf-bo3
-
+
Setting the MBC and number of ROM & RAM banks available
At the link stage this is done with lcc using pass-through switches for makebin.
-Wl-yo<N> where <N> is the number of ROM banks. 2, 4, 8, 16, 32, 64, 128, 256, 512
@@ -152,7 +152,7 @@ Setting the MBC and number of ROM & RAM banks available
# F-ROM+MBC3+TIMER+BATT FF - Hudson HuC-1
# 10-ROM+MBC3+TIMER+RAM+BATT
# 11-ROM+MBC3
-
+
Banked Functions
Banked functions can be called as follows.
- When defined with the
BANKED keyword. Example: void my_function() BANKED { do stuff } in a source file which has had it's bank set (see above).
@@ -160,7 +160,7 @@ Banked Functions
- When defined with an area set up using the
__addressmod keyword (See the banks_new example project and the SDCC manual for details)
- Using SWITCH_ROM_MBC1() (and related functions for other MBCs) to manually switch in the required bank and then call the function.
-
Unbanked functions (either in fixed Bank 0, or in an Unbanked ROM with no MBC)
+Non-banked functions (either in fixed Bank 0, or in an non-banked ROM with no MBC)
- May call functions in any bank: YES
- May use data in any bank: YES
@@ -172,22 +172,22 @@ Banked Functions
Limitations:
- SDCC banked calls and far_pointers in GBDK only save one byte for the ROM bank. So, for example, they are limtied to bank 31 max for MBC1 and bank 255 max for MBC5. This is due to the bank switching for those MBCs requiring a second, additional write to select the upper bits for more banks (banks 32+ in MBC1 and banks 256+ in MBC5).
-
+
Const Data (Variables in ROM)
- Todo:
- Const Data (Variables in ROM)
-
+
Variables in RAM
- Todo:
- Variables in RAM
-
+
Far Pointers
Far pointers include a segment (bank) selector so they are able to point to addresses (functions or data) outside of the current bank (unlike normal pointers which are not bank-aware). A set of macros is provided by GBDK 2020 for working with far pointers.
Warning: Do not call the far pointer function macros from inside interrupt routines (ISRs). The far pointer function macros use a global variable that would not get restored properly if a function called that way was interrupted by another one called the same way. However, they may be called recursively.
See FAR_CALL, TO_FAR_PTR and the banks_farptr example project.
-
+
Bank switching
You can manually switch banks using the SWITCH_ROM_MBC1(), SWITCH_RAM_MBC1(), and other related macros. See banks.c project for an example.
-Note: You can only do a switch_rom_bank call from unbanked _CODE since otherwise you would switch out the code that was executing. Global routines that will be called without an expectation of bank switching should fit within the limited 16k of unbanked _CODE.
-
+
Note: You can only do a switch_rom_bank call from non-banked _CODE since otherwise you would switch out the code that was executing. Global routines that will be called without an expectation of bank switching should fit within the limited 16k of non-banked _CODE.
+
Restoring the current bank (after calling functions which change it without restoring)
If a function call is made (for example inside an ISR) which changes the bank without restoring it, then the _current_bank variable should be saved and then restored.
For example, instead of this code:
void vbl_music_isr(void)
@@ -208,10 +208,10 @@ Restoring the current bank (after calling functions which change it without rest
// Now restore the current bank
SWITCH_ROM_MBC5(_saved_bank);
}
-
+
Currently active bank: _current_bank
The global variable _current_bank is updated automatically when calling SWITCH_ROM_MBC1() and SWITCH_ROM_MBC5, or when a BANKED function is called.
-
+
Auto-Banking
A ROM bank auto-assignment feature was added in GBDK 2020 4.0.2.
Instead of having to manually specify which bank a source file will reside it, the banks can be assigned automatically to make the best use of space. The bank assignment operates on object files, after compiling/assembling and before linking.
@@ -242,20 +242,20 @@ Auto-Banking
Limitations:
- At this time, the constant entries that get rewritten with the assigned bank (const void at(255) __bank_<name-you-want-to-use-for-that-source-file>;) __cannot be used from the source file they are declared in. In that case SDCC converts the bank number before bankpack has a chance to rewrite it. It may be referenced from any other source file, but not it's own.
-
+
Errors related to banking (overflow, multiple writes to same location)
A bank overflow during compile/link time (in makebin) is when more code and data are allocated to a ROM bank than it has capacity for. The address for any overflowed data will be incorrect and the data is potentially unreachable since it now resides at the start of a different bank instead of the end of the expected bank.
See the FAQ entry about bank overflow errors.
The current toolchain can only detect and warn (using ihxcheck) when one bank overflows into another bank that has data at its start. It cannot warn if a bank overflows into an empty one. For more complete detection, you can use the third-party romusage tool.
-
+
Bank space usage
In order to see how much space is used or remains available in a bank, you can use the third-party romusage tool.
-
+
Other important notes
- The SWITCH_ROM_MBC5 macro is not interrupt-safe. If using less than 256 banks you may always use SWITCH_ROM_MBC1 - that is faster. Even if you use mbc5 hardware chip in the cart.
-
+
Banking example projects
There are several projects in the GBDK 2020 examples folder which demonstrate different ways to use banking.
Banks: A basic banking example
diff --git a/docs/api/docs_toolchain.html b/docs/api/docs_toolchain.html
index 3074673d..bf52ae1d 100644
--- a/docs/api/docs_toolchain.html
+++ b/docs/api/docs_toolchain.html
@@ -90,7 +90,7 @@ $(document).ready(function(){initNavTree('docs_toolchain.html',''); initResizabl
-
+
Overview
GBDK 2020 uses the SDCC compiler along with some custom tools to build Game Boy ROMs.
- All tools are located under
bin/
@@ -104,12 +104,12 @@ Overview
To see individual arguments and options for a tool, run that tool from the command line with either no arguments or with -h.
-
+
Data Types
For data types and special C keywords, see asm/gbz80/types.h and asm/types.h.
Also see the SDCC manual (scroll down a little on the linked page): http://sdcc.sourceforge.net/doc/sdccman.pdf#section.1.1
-
+
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.
@@ -141,7 +141,7 @@ Changing Important Addresses
-
+
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:
-
+
sdcc
SDCC C Source compiler
For detailed settings see sdcc-settings
@@ -201,7 +201,7 @@ sdcc
Arguments can be passed to it through lcc using -Wf-<argument> and -Wp-<argument> (pre-processor)
-
+
sdasgb
SDCC Assembler for the gameboy
For detailed settings see sdasgb-settings
@@ -209,7 +209,7 @@ sdasgb
Arguments can be passed to it through lcc using -Wa-<argument>
-
+
bankpack
Automatic Bank packer
For detailed settings see bankpack-settings
@@ -223,7 +223,7 @@ bankpack
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.
For detailed settings see sdldgb-settings
@@ -231,7 +231,7 @@ sdldgb
Arguments can be passed to it through lcc using -Wl-<argument>
-
+
ihxcheck
IHX file validator
For detailed settings see ihxcheck-settings
@@ -240,7 +240,7 @@ ihxcheck
Arguments can be passed to it through lcc using -Wi-<argument>
-
+
makebin
IHX to ROM converter
For detailed settings see makebin-settings
@@ -248,20 +248,50 @@ makebin
Arguments can be passed to it through lcc using -Wm-<argument>
-
+
GBDK Utilities
-
+
GBCompress
Compresssion utility
For detailed settings see gbcompress-settings
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
-
For detailed settings see png2mtspr-settings
-
- Todo:
- Document png2mtspr
+
Convert single or multiple frames of graphics into metasprite structured data for use with the ...metasprite...() functions.
+
For detailed settings see png2mtspr-settings
+ For working with sprite properties (including cgb palettes), see metasprite_and_sprite_properties
+ For API support see move_metasprite() and related functions in metasprites.h
+
+
+Working with png2mtspr
+
+- The origin (pivot) for the metasprite is not required to be in the upper left-hand corner as with regular hardware sprites.
+- The conversion process supports using both SPRITES_8x8 and SPRITES_8x16 mode. If 8x16 mode is used then the height of the metasprite must be a multiple of 16.
+- It will attempt to deduplicate/re-use as many tiles as possible (including ones flipping on the X and Y axis) when building the tile set to be used by the convterted metasprite. This does mean that minor changes to the input graphics may change the numer and order of tiles in the resulting tile set.
+- While the tool supports both indexed and full color images as inputs, it only exports as a fixed 3 color + transparent palette per metasprite.
+- The input images are first converted to 32 bit RGBA color, then to greyscale (using
255 - ((R * 0.3f) + (G * 0.59f) + (B * 0.11f))) and then to grouped into the 3 colors based on their brightness.
+- The brightness mapping is approximately as follows:
Alpha 100% transparent pixels : Transparent
+ ~78% - ~100% : Lightest/White
+ ~26% - ~77% : Medium
+ 0% - ~25% : Darkest/Black
+
+- A fixed palette is used for export, the order of colors will get re-arranged to map onto this fixed palette. It is arranged/assumed as follows (An example would be
OBP0_REG = 0xE4 or =0xE0). OBP Index 0: Transparent
+ OBP Index 1: Lightest/White
+ OBP Index 2: Medium
+ OBP Index 3: Darkest/Black
+
+- If you want to assign different colors then you can either change the settings in OBP0_REG / OBP1_REG in your source code or change the colors of your input image to produce different output, but the output of the png2mtspr tool itself cannot be altered (for now).
+
+
+
+
For best graphics conversion results:
+- Input images should only have 3 colors + transparent and which are spaced along the brightness spectrum based on the mapping described above.
+- For optimal deduplication, try to align the graphics so that tiles used multiple times align on the same 8 pixel boundaries.
+
+
- Todo:
- Support indexed color (non-remapped) for source images to bypass the brightness binning and palette mapping.
diff --git a/docs/api/docs_toolchain_settings.html b/docs/api/docs_toolchain_settings.html
index 916883ed..87148faa 100644
--- a/docs/api/docs_toolchain_settings.html
+++ b/docs/api/docs_toolchain_settings.html
@@ -90,7 +90,7 @@ $(document).ready(function(){initNavTree('docs_toolchain_settings.html',''); ini
-
+
lcc settings
./lcc [ option | file ]...
except for -l, options are processed left-to-right before files
@@ -126,7 +126,7 @@ lcc settings
-Woarg specify system-specific `arg'
-W[pfablim]arg pass `arg' to the preprocessor, compiler, assembler, bankpack, linker, ihxcheck, or makebin
-
+
sdcc settings
SDCC : mcs51/z80/z180/r2k/r2ka/r3ka/gbz80/tlcs90/ez80_z80/z80n/ds390/pic16/pic14/TININative/ds400/hc08/s08/stm8/pdk13/pdk14/pdk15 4.1.0 #12069 (Linux)
published under GNU General Public License (GPL)
@@ -456,7 +456,7 @@ sdcc settings
--constseg <name> use this name for the const segment
--out-fmt-elf Output executable in ELF format
-
+
sdasgb settings
sdas Assembler V02.00 + NoICE + SDCC mods (GameBoy Z80-like CPU)
@@ -491,7 +491,7 @@ sdasgb settings
removing
-
+
bankpack settings
bankalloc [options] objfile1 objfile2 etc
Use: Read .o files and auto-assign areas with bank=255.
@@ -499,7 +499,7 @@ bankpack settings
Options
-h : Show this help
-
-yt<hexbyte> : Set MBC type per ROM byte 149 in Hex (see pandocs)
+
-yt<mbctype> : Set MBC type per ROM byte 149 in Decimal or Hex (0xNN) (see pandocs)
-mbc=N : Similar to -yt, but sets MBC type directly to N instead
of by intepreting ROM byte 149
mbc1 will exclude banks {0x20,0x40,0x60} max=127,
@@ -524,7 +524,7 @@ bankpack settings
S ___bank_<const name> Def0000FF
(Above can be made by: const void __at(255) __bank_<const name>;
-
+
sdldgb settings
sdld Linker V03.00 + NoICE + sdld
@@ -560,7 +560,7 @@ sdldgb settings
End:
-e or null line terminates input
-
+
ihxcheck settings
ihx_check input_file.ihx [options]
@@ -571,7 +571,7 @@ ihxcheck settings
Use: Read a .ihx and warn about overlapped areas.
Example: "ihx_check build/MyProject.ihx"
-
+
makebin settings
makebin: convert a Intel IHX file to binary or GameBoy format binary.
Usage: makebin [options] [<in_file> [<out_file>]]
@@ -596,7 +596,7 @@ makebin settings
<in_file> optional IHX input file, '-' means stdin. (default: stdin)
<out_file> optional output file, '-' means stdout. (default: stdout)
-
+
gbcompress settings
gbcompress [options] infile outfile
Use: Gbcompress a binary file and write it out.
@@ -608,7 +608,7 @@ gbcompress settings
Example: "gbcompress binaryfile.bin compressed.bin"
Example: "gbcompress -d compressedfile.bin decompressed.bin"
-
+
png2mtspr settings
usage: png2mtspr <file>.png [options]
-c ouput file (default: <png file>.c)
diff --git a/docs/api/docs_using_gbdk.html b/docs/api/docs_using_gbdk.html
index a2dcfe20..06729cdc 100644
--- a/docs/api/docs_using_gbdk.html
+++ b/docs/api/docs_using_gbdk.html
@@ -89,7 +89,7 @@ $(document).ready(function(){initNavTree('docs_using_gbdk.html',''); initResizab
Using GBDK
-
+
Interrupts
Interrupts allow execution to jump to a different part of your code as soon as an external event occurs - for example the LCD entering the vertical blank period, serial data arriving or the timer reaching its end count. For an example see the irq.c sample project.
Interrupts in GBDK are handled using the functions disable_interrupts(), enable_interrupts(), set_interrupts(UBYTE ier) and the interrupt service routine (ISR) linkers add_VBL(), add_TIM, add_LCD, add_SIO and add_JOY which add interrupt handlers for the vertical blank, timer, LCD, serial link and joypad interrupts respectively.
@@ -97,7 +97,7 @@ Interrupts
Interrupts should be disabled before adding ISRs. To use multiple interrupts, logical OR the relevant IFLAGs together.
ISRs should be kept as small and short as possible, do not write an ISR so long that the Game Boy hardware spends all of its time servicing interrupts and has no time spare for the main code.
For more detail on the Game Boy interrupts consider reading about them in the Pandocs.
-
+
Available Interrupts
The GameBoy hardware can generate 5 types of interrupts. Custom Interrupt Service Routines (ISRs) can be added in addition to the built-in ones available in GBDK.
@@ -130,7 +130,7 @@ Available Interrupts
-
+
Adding your own interrupt handler
It is possible to install your own interrupt handlers (in C or in assembly) for any of these interrupts. Up to 4 chained handlers may be added, with the last added being called last. If the remove_VBL() function is to be called, only three may be added for VBL.
Interrupt handlers are called in sequence. To install a new interrupt handler, do the following:
@@ -140,25 +140,25 @@ Adding your own interrupt handler
Enable interrupts for the IRQ you want to handle, using the set_interrupts() function. Note that the VBL interrupt is already enabled before the main() function is called. If you want to set the interrupts before main() is called, you must install an initialization routine.
See the irq example project for additional details for a complete example.
-
+
Returning from Interrupts and STAT mode
By default when an Interrupt handler completes and is ready to exit it will check STAT_REG and only return at the BEGINNING of either LCD Mode 0 or Mode 1. This helps prevent graphical glitches caused when an ISR interrupts a graphics operation in one mode but returns in a different mode for which that graphics operation is not allowed.
You can change this behavior using nowait_int_handler() which does not check STAT_REG before returning. Also see wait_int_handler().
-
+
What GBDK does automatically and behind the scenes
-
+
OAM (VRAM Sprite Attribute Table)
GBDK sets up a Shadow OAM which gets copied automatically to the hardware OAM by the default V-Blank ISR. The Shadow OAM allows updating sprites without worrying about whether it is safe to write to them or not based on the hardware LCD mode.
-
+
Font tiles when using stdio.h
Including stdio.h and using functions such as printf() will use a large number of the background tiles for font characters. If stdio.h is not included then that space will be available for use with other tiles instead.
-
+
Default Interrupt Service Handlers (ISRs)
- V-Blank: A default V-Blank ISR is installed on startup which copies the Shadow OAM to the hardware OAM and increments the global sys_time variable once per frame.
- Serial Link I/O: If any of the GBDK serial link functions are used such as send_byte() and receive_byte(), the default SIO serial link handler will be installed automatically at compile-time.
-
+
Copying Functions to RAM and HIRAM
The ram_function example project included with GBDK demonstrates copying functions to RAM and HIRAM.
It is possible to copy functions to RAM and HIRAM (using the memcpy() and hiramcpy() functions), and execute them from C. The compiler automatically generates two symbols for the start and the end of each function, named start_X and end_X (where X is the name of the function). This enables to calculate the length of a function when copying it to RAM. Ensure you have enough free space in RAM or HIRAM for copying a function.
@@ -168,10 +168,10 @@ Copying Functions to RAM and HIRAM
Declare the function as extern, and set its address at link time using the -Wl-gXXX=# flag (where XXX is the name of the function, and # is its address).
The second approach is slightly more efficient. Both approaches are demonstrated in the ram_function.c example.
-
+
Mixing C and Assembly
You can mix C and assembly (ASM) in two ways as described below. For additional detail see the links_sdcc_docs.
-
+
Inline ASM within C source files
Example:
__asm__("nop");
@@ -183,7 +183,7 @@ Inline ASM within C source files
(ASM code goes here)
__endasm;
}
-
+
In Separate ASM files
- Todo:
- This is from GBDK 2.x docs, verify it with GBDK-2020 and modern SDCC
It is possible to assemble and link files written in ASM alongside files written in C.
@@ -223,9 +223,9 @@ LD D,H
LD E,L
; There is no register to restore
RET ; Return result in DE
-
+
Known Issues and Limitations
-
+
SDCC
- Const arrays declared with
somevar[n] = {x} will NOT get initialized with value x. This may change when the SDCC RLE initializer is fixed. Use memset for now if you need it.
diff --git a/docs/api/gb_8h.html b/docs/api/gb_8h.html
index 103127f2..0048a671 100644
--- a/docs/api/gb_8h.html
+++ b/docs/api/gb_8h.html
@@ -373,8 +373,10 @@ Functions
| |
| void | set_tiles (UINT8 x, UINT8 y, UINT8 w, UINT8 h, unsigned char *vram_addr, const unsigned char *tiles) NONBANKED __preserves_regs(b |
| |
-| void | get_tiles (UINT8 x, UINT8 y, UINT8 w, UINT8 h, unsigned char *tiles, unsigned char *vram_addr) NONBANKED __preserves_regs(b |
-| |
+| void | set_tile_data (UINT8 first_tile, UINT8 nb_tiles, const unsigned char *data, UINT8 base) NONBANKED __preserves_regs(b |
+| |
+| void | get_tiles (UINT8 x, UINT8 y, UINT8 w, UINT8 h, unsigned char *vram_addr, unsigned char *tiles) NONBANKED __preserves_regs(b |
+| |
| void | init_win (UINT8 c) NONBANKED __preserves_regs(b |
| |
| void | init_bkg (UINT8 c) NONBANKED __preserves_regs(b |
@@ -1782,7 +1784,9 @@ Variables
-
Reads and returns the current state of the joypad. Follows Nintendo's guidelines for reading the pad. Return value is an OR of J_*
- See also
- J_START, J_SELECT, J_A, J_B, J_UP, J_DOWN, J_LEFT, J_RIGHT
+
Reads and returns the current state of the joypad. Follows Nintendo's guidelines for reading the pad. Return value is an OR of J_*
+
When testing for multiple different buttons, it's best to read the joypad state once into a variable and then test using that variable.
+
- See also
- J_START, J_SELECT, J_A, J_B, J_UP, J_DOWN, J_LEFT, J_RIGHT
@@ -3912,8 +3916,58 @@ Variables
-
-◆ get_tiles()
+
+◆ set_tile_data()
+
+
+
+
+
+ | void set_tile_data |
+ ( |
+ UINT8 |
+ first_tile, |
+
+
+ |
+ |
+ UINT8 |
+ nb_tiles, |
+
+
+ |
+ |
+ const unsigned char * |
+ data, |
+
+
+ |
+ |
+ UINT8 |
+ base |
+
+
+ |
+ ) |
+ | |
+
+
+
+
Sets VRAM Tile Pattern data starting from given base address
+
- Parameters
-
+
+ | first_tile | Index of the first tile to write |
+ | nb_tiles | Number of tiles to write |
+ | data | Pointer to (2 bpp) source Tile Pattern data. |
+ | base | MSB of the destination address in VRAM (usually 0x80 or 0x90 which gives 0x8000 or 0x9000) |
+
+
+
+
+
+
+
+◆ get_tiles()
@@ -3946,13 +4000,13 @@ Variables
|
|
unsigned char * |
-
tiles, |
+
vram_addr, |
|
|
unsigned char * |
- vram_addr |
+ tiles |
|
@@ -3968,8 +4022,8 @@ Variables
| y | Y Start position in Background Map tile coordinates. Range 0 - 31 |
| w | Width of area to copy in tiles. Range 0 - 31 |
| h | Height of area to copy in tiles. Range 0 - 31 |
-
| tiles | Pointer to destination buffer for Tile Map data |
-
| vram_addr | Pointer to source VRAM Address |
+
| vram_addr | Pointer to source VRAM Address |
+
| tiles | Pointer to destination buffer for Tile Map data |
@@ -4449,7 +4503,7 @@ Variables
unsigned int UINT16
Definition: types.h:28
void nowait_int_handler(void) NONBANKED
void add_SIO(int_handler h) NONBANKED
-
void b
Definition: gb.h:453
+
void b
Definition: gb.h:458
diff --git a/docs/api/gb_8h.js b/docs/api/gb_8h.js
index a060b490..2e924d8b 100644
--- a/docs/api/gb_8h.js
+++ b/docs/api/gb_8h.js
@@ -130,7 +130,8 @@ var gb_8h =
[ "set_data", "gb_8h.html#a326a27330c5f711fcf0b5448cfa07bda", null ],
[ "get_data", "gb_8h.html#a4a6bb50835ab2e9294bf17ea32a1e4cd", null ],
[ "set_tiles", "gb_8h.html#a07d12377d67cebb9aafc0622b2054f95", null ],
- [ "get_tiles", "gb_8h.html#a4c3d68eb3ff5ec0995541e691a6e8259", null ],
+ [ "set_tile_data", "gb_8h.html#a85710bd8f8b011e052477c90bc54f780", null ],
+ [ "get_tiles", "gb_8h.html#a9fb6ed396416150a46d47ed12fc8b251", null ],
[ "init_win", "gb_8h.html#a2b4665e62849b60b579803b076661fe4", null ],
[ "init_bkg", "gb_8h.html#a8520286e663067a3f6869db4ff1b74c3", null ],
[ "vmemset", "gb_8h.html#a8cf949b6e2654b6a8bd9e403a49ee4b3", null ],
diff --git a/docs/api/gb_8h_source.html b/docs/api/gb_8h_source.html
index a60a6794..f9215589 100644
--- a/docs/api/gb_8h_source.html
+++ b/docs/api/gb_8h_source.html
@@ -263,327 +263,330 @@ $(document).ready(function(){initNavTree('gb_8h_source.html',''); initResizable(
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
559 #define DISPLAY_OFF \
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
589 #define SHOW_SPRITES \
-
-
-
595 #define HIDE_SPRITES \
-
-
-
601 #define SPRITES_8x16 \
-
-
-
607 #define SPRITES_8x8 \
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
564 #define DISPLAY_OFF \
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
594 #define SHOW_SPRITES \
+
+
+
600 #define HIDE_SPRITES \
+
+
+
606 #define SPRITES_8x16 \
+
+
+
612 #define SPRITES_8x8 \
+
+
+
+
+
+
+
+
-
-
-
-
652 const unsigned char *data)
NONBANKED __preserves_regs(
b,
c);
-
-
-
-
-
673 const unsigned char *data,
-
-
-
-
-
-
693 unsigned char *data)
NONBANKED __preserves_regs(
b,
c);
-
-
-
-
-
-
-
752 const unsigned char *tiles)
NONBANKED __preserves_regs(
b,
c);
-
-
-
-
-
-
-
-
-
-
806 unsigned char *tiles)
NONBANKED __preserves_regs(
b,
c);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
657 const unsigned char *data)
NONBANKED __preserves_regs(
b,
c);
+
+
+
+
+
678 const unsigned char *data,
+
+
+
+
+
+
698 unsigned char *data)
NONBANKED __preserves_regs(
b,
c);
+
+
+
+
+
+
+
757 const unsigned char *tiles)
NONBANKED __preserves_regs(
b,
c);
+
+
+
+
+
+
+
+
+
+
811 unsigned char *tiles)
NONBANKED __preserves_regs(
b,
c);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
881 const unsigned char *data)
NONBANKED __preserves_regs(
b,
c);
-
-
-
-
-
897 const unsigned char *data)
NONBANKED __preserves_regs(
b,
c);
-
-
-
-
-
913 unsigned char *data)
NONBANKED __preserves_regs(
b,
c);
-
-
-
-
-
-
-
951 const unsigned char *tiles)
NONBANKED __preserves_regs(
b,
c);
-
-
-
-
-
-
-
-
-
-
1006 unsigned char *tiles)
NONBANKED __preserves_regs(
b,
c);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1076 const unsigned char *data)
NONBANKED __preserves_regs(
b,
c);
-
-
-
-
-
1096 const unsigned char *data)
NONBANKED __preserves_regs(
b,
c);
-
-
-
-
-
1113 unsigned char *data)
NONBANKED __preserves_regs(
b,
c);
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
886 const unsigned char *data)
NONBANKED __preserves_regs(
b,
c);
+
+
+
+
+
902 const unsigned char *data)
NONBANKED __preserves_regs(
b,
c);
+
+
+
+
+
918 unsigned char *data)
NONBANKED __preserves_regs(
b,
c);
+
+
+
+
+
+
+
956 const unsigned char *tiles)
NONBANKED __preserves_regs(
b,
c);
+
+
+
+
+
+
+
+
+
+
1011 unsigned char *tiles)
NONBANKED __preserves_regs(
b,
c);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
1081 const unsigned char *data)
NONBANKED __preserves_regs(
b,
c);
+
+
+
+
+
1101 const unsigned char *data)
NONBANKED __preserves_regs(
b,
c);
+
+
+
+
+
1118 unsigned char *data)
NONBANKED __preserves_regs(
b,
c);
+
+
+
+
+
+
+
-
-
-
1139 #define DISABLE_OAM_DMA \
-
1140 _shadow_OAM_base = 0
+
+
+
+
-
1144 #define ENABLE_OAM_DMA \
-
1145 _shadow_OAM_base = (UBYTE)((UWORD)&shadow_OAM >> 8)
+
1144 #define DISABLE_OAM_DMA \
+
1145 _shadow_OAM_base = 0
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
1260 itm->
y+=
y, itm->
x+=
x;
-
-
-
-
-
-
-
-
-
-
-
1287 const unsigned char *data,
-
-
-
-
-
1304 unsigned char *vram_addr,
-
-
-
-
-
-
-
-
1332 unsigned char *vram_addr,
-
1333 const unsigned char *tiles)
NONBANKED __preserves_regs(
b,
c);
-
-
-
-
-
-
-
1358 unsigned char *tiles,
-
1359 unsigned char *vram_addr)
NONBANKED __preserves_regs(
b,
c);
-
-
-
-
-
-
-
+
1149 #define ENABLE_OAM_DMA \
+
1150 _shadow_OAM_base = (UBYTE)((UWORD)&shadow_OAM >> 8)
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
1265 itm->
y+=
y, itm->
x+=
x;
+
+
+
+
+
+
+
+
+
+
+
1292 const unsigned char *data,
+
+
+
+
+
1309 unsigned char *vram_addr,
+
+
+
+
+
+
+
+
1337 unsigned char *vram_addr,
+
1338 const unsigned char *tiles)
NONBANKED __preserves_regs(
b,
c);
+
+
+
+
1349 const unsigned char *data,
+
+
+
+
+
+
+
1374 unsigned char *vram_addr,
+
1375 unsigned char *tiles)
NONBANKED __preserves_regs(
b,
c);
+
-
+
+
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
unsigned char UINT8
Definition: types.h:22
void reset(void) NONBANKED
void get_bkg_tiles(UINT8 x, UINT8 y, UINT8 w, UINT8 h, unsigned char *tiles) NONBANKED __preserves_regs(b
void display_off(void) NONBANKED __preserves_regs(b
-UINT8 tile
Definition: gb.h:1124
-void hide_sprite(UINT8 nb)
Definition: gb.h:1268
+UINT8 tile
Definition: gb.h:1129
+void hide_sprite(UINT8 nb)
Definition: gb.h:1273
void remove_TIM(int_handler h) NONBANKED
-UINT8 y
Definition: gb.h:1123
+UINT8 y
Definition: gb.h:1128
UINT8 joypad(void) NONBANKED __preserves_regs(b
volatile struct OAM_item_t shadow_OAM[]
struct OAM_item_t OAM_item_t
__REG _current_bank
Definition: gb.h:351
unsigned int UINT16
Definition: types.h:28
-
+
void set_data(unsigned char *vram_addr, const unsigned char *data, UINT16 len) NONBANKED __preserves_regs(b
UINT8 get_vram_byte(UBYTE *addr) __preserves_regs(b
__REG WY_REG
Definition: hardware.h:53
-void scroll_win(INT8 x, INT8 y)
Definition: gb.h:1053
+void scroll_win(INT8 x, INT8 y)
Definition: gb.h:1058
void set_sprite_1bit_data(UINT8 first_tile, UINT8 nb_tiles, const unsigned char *data) NONBANKED __preserves_regs(b
void set_vram_byte(UBYTE *addr, UINT8 v) __preserves_regs(b
-void get_tiles(UINT8 x, UINT8 y, UINT8 w, UINT8 h, unsigned char *tiles, unsigned char *vram_addr) NONBANKED __preserves_regs(b
void fill_bkg_rect(UINT8 x, UINT8 y, UINT8 w, UINT8 h, UINT8 tile) NONBANKED __preserves_regs(b
void set_win_tiles(UINT8 x, UINT8 y, UINT8 w, UINT8 h, const unsigned char *tiles) NONBANKED __preserves_regs(b
void fill_win_rect(UINT8 x, UINT8 y, UINT8 w, UINT8 h, UINT8 tile) NONBANKED __preserves_regs(b
@@ -591,7 +594,7 @@ $(document).ready(function(){initNavTree('gb_8h_source.html',''); initResizable(
void wait_int_handler(void) NONBANKED
void disable_interrupts(void) NONBANKED __preserves_regs(a
void set_bkg_submap(UINT8 x, UINT8 y, UINT8 w, UINT8 h, const unsigned char *map, UINT8 map_w)
-__REG _shadow_OAM_base
Definition: gb.h:1135
+__REG _shadow_OAM_base
Definition: gb.h:1140
void get_win_tiles(UINT8 x, UINT8 y, UINT8 w, UINT8 h, unsigned char *tiles) NONBANKED __preserves_regs(b
void remove_LCD(int_handler h) NONBANKED
void remove_JOY(int_handler h) NONBANKED
@@ -599,47 +602,49 @@ $(document).ready(function(){initNavTree('gb_8h_source.html',''); initResizable(
void set_interrupts(UINT8 flags) NONBANKED __preserves_regs(b
void mode(UINT8 m) NONBANKED
-UINT8 joy3
Definition: gb.h:464
+UINT8 joy3
Definition: gb.h:469
void set_win_1bit_data(UINT8 first_tile, UINT8 nb_tiles, const unsigned char *data) NONBANKED __preserves_regs(b
void add_TIM(int_handler h) NONBANKED
void get_data(unsigned char *data, unsigned char *vram_addr, UINT16 len) NONBANKED __preserves_regs(b
-void move_sprite(UINT8 nb, UINT8 x, UINT8 y)
Definition: gb.h:1242
+void move_sprite(UINT8 nb, UINT8 x, UINT8 y)
Definition: gb.h:1247
#define __REG
Definition: hardware.h:12
void nowait_int_handler(void) NONBANKED
void joypad_ex(joypads_t *joypads) __preserves_regs(b
void add_SIO(int_handler h) NONBANKED
-UINT8 l
Definition: gb.h:432
+UINT8 l
Definition: gb.h:437
UINT8 waitpad(UINT8 mask) NONBANKED __preserves_regs(b
-void set_sprite_tile(UINT8 nb, UINT8 tile)
Definition: gb.h:1169
+void set_sprite_tile(UINT8 nb, UINT8 tile)
Definition: gb.h:1174
void remove_SIO(int_handler h) NONBANKED
void color(UINT8 forecolor, UINT8 backcolor, UINT8 mode)
UINT8 c
Definition: gb.h:278
+void get_tiles(UINT8 x, UINT8 y, UINT8 w, UINT8 h, unsigned char *vram_addr, unsigned char *tiles) NONBANKED __preserves_regs(b
UINT8 UBYTE
Definition: types.h:46
void enable_interrupts(void) NONBANKED __preserves_regs(a
UINT8 get_bkg_tile_xy(UBYTE x, UBYTE y) __preserves_regs(b
-void e
Definition: gb.h:453
+void e
Definition: gb.h:458
void get_win_data(UINT8 first_tile, UINT8 nb_tiles, unsigned char *data) NONBANKED __preserves_regs(b
void set_bkg_data(UINT8 first_tile, UINT8 nb_tiles, const unsigned char *data) NONBANKED __preserves_regs(b
void get_sprite_data(UINT8 first_tile, UINT8 nb_tiles, unsigned char *data) NONBANKED __preserves_regs(b
__REG SCX_REG
Definition: hardware.h:46
void remove_VBL(int_handler h) NONBANKED
void set_win_data(UINT8 first_tile, UINT8 nb_tiles, const unsigned char *data) NONBANKED __preserves_regs(b
-void move_win(UINT8 x, UINT8 y)
Definition: gb.h:1039
-void SET_SHADOW_OAM_ADDRESS(void *address)
Definition: gb.h:1149
+void move_win(UINT8 x, UINT8 y)
Definition: gb.h:1044
+void SET_SHADOW_OAM_ADDRESS(void *address)
Definition: gb.h:1154
-UINT8 get_sprite_tile(UINT8 nb)
Definition: gb.h:1180
+UINT8 get_sprite_tile(UINT8 nb)
Definition: gb.h:1185
void(* int_handler)(void) NONBANKED
Definition: gb.h:120
+void set_tile_data(UINT8 first_tile, UINT8 nb_tiles, const unsigned char *data, UINT8 base) NONBANKED __preserves_regs(b
-UINT8 prop
Definition: gb.h:1125
-UINT8 npads
Definition: gb.h:461
+UINT8 prop
Definition: gb.h:1130
+UINT8 npads
Definition: gb.h:466
-void b
Definition: gb.h:453
-UINT8 h
Definition: gb.h:432
+void b
Definition: gb.h:458
+UINT8 h
Definition: gb.h:437
void set_bkg_tiles(UINT8 x, UINT8 y, UINT8 w, UINT8 h, const unsigned char *tiles) NONBANKED __preserves_regs(b
-void d
Definition: gb.h:453
+void d
Definition: gb.h:458
volatile UINT8 _io_status
UINT8 get_mode(void) NONBANKED __preserves_regs(b
@@ -648,15 +653,15 @@ $(document).ready(function(){initNavTree('gb_8h_source.html',''); initResizable(
void init_bkg(UINT8 c) NONBANKED __preserves_regs(b
void add_VBL(int_handler h) NONBANKED
UINT8 * set_bkg_tile_xy(UBYTE x, UBYTE y, UBYTE t) __preserves_regs(b
-void scroll_sprite(UINT8 nb, INT8 x, INT8 y)
Definition: gb.h:1258
+void scroll_sprite(UINT8 nb, INT8 x, INT8 y)
Definition: gb.h:1263
UINT8 * set_win_tile_xy(UBYTE x, UBYTE y, UBYTE t) __preserves_regs(b
void get_bkg_data(UINT8 first_tile, UINT8 nb_tiles, unsigned char *data) NONBANKED __preserves_regs(b
-void set_sprite_prop(UINT8 nb, UINT8 prop)
Definition: gb.h:1215
+void set_sprite_prop(UINT8 nb, UINT8 prop)
Definition: gb.h:1220
void init_win(UINT8 c) NONBANKED __preserves_regs(b
-void scroll_bkg(INT8 x, INT8 y)
Definition: gb.h:855
+void scroll_bkg(INT8 x, INT8 y)
Definition: gb.h:860
void add_JOY(int_handler h) NONBANKED
UINT16 UWORD
Definition: types.h:50
-UINT8 x
Definition: gb.h:1123
+UINT8 x
Definition: gb.h:1128
void set_bkg_1bit_data(UINT8 first_tile, UINT8 nb_tiles, const unsigned char *data, UINT8 color) NONBANKED __preserves_regs(b
void delay(UINT16 d) NONBANKED
void hiramcpy(UINT8 dst, const void *src, UINT8 n) NONBANKED __preserves_regs(b
@@ -664,14 +669,14 @@ $(document).ready(function(){initNavTree('gb_8h_source.html',''); initResizable(
void set_tiles(UINT8 x, UINT8 y, UINT8 w, UINT8 h, unsigned char *vram_addr, const unsigned char *tiles) NONBANKED __preserves_regs(b
void set_sprite_data(UINT8 first_tile, UINT8 nb_tiles, const unsigned char *data) NONBANKED __preserves_regs(b
__REG WX_REG
Definition: hardware.h:54
-UINT8 get_sprite_prop(UINT8 nb)
Definition: gb.h:1225
+UINT8 get_sprite_prop(UINT8 nb)
Definition: gb.h:1230
signed char INT8
Definition: types.h:19
-
+
UINT8 * get_bkg_xy_addr(UINT8 x, UINT8 y) __preserves_regs(b
UINT8 get_win_tile_xy(UBYTE x, UBYTE y) __preserves_regs(b
UINT8 * get_win_xy_addr(UINT8 x, UINT8 y) __preserves_regs(b
-void move_bkg(UINT8 x, UINT8 y)
Definition: gb.h:841
+void move_bkg(UINT8 x, UINT8 y)
Definition: gb.h:846
UINT8 joypad_init(UINT8 npads, joypads_t *joypads)
void add_LCD(int_handler h) NONBANKED
__REG SCY_REG
Definition: hardware.h:45
diff --git a/docs/api/gbdecompress_8h_source.html b/docs/api/gbdecompress_8h_source.html
index 30921c5c..e1a34937 100644
--- a/docs/api/gbdecompress_8h_source.html
+++ b/docs/api/gbdecompress_8h_source.html
@@ -113,7 +113,7 @@ $(document).ready(function(){initNavTree('gbdecompress_8h_source.html',''); init
void gb_decompress_bkg_data(UINT8 first_tile, const unsigned char *sour) __preserves_regs(b
void gb_decompress_sprite_data(UINT8 first_tile, const unsigned char *sour) __preserves_regs(b
void c
Definition: gbdecompress.h:17
-void b
Definition: gb.h:453
+void b
Definition: gb.h:458
diff --git a/docs/api/globals_d.html b/docs/api/globals_d.html
index 45639f49..528c6850 100644
--- a/docs/api/globals_d.html
+++ b/docs/api/globals_d.html
@@ -109,12 +109,12 @@ $(document).ready(function(){initNavTree('globals_d.html',''); initResizable();
DISABLE_RAM_MBC5
: gb.h
-
DISPLAY_OFF
-: gb.h
-
display_off()
: gb.h
+
DISPLAY_OFF
+: gb.h
+
DISPLAY_ON
: gb.h
diff --git a/docs/api/globals_defs_f.html b/docs/api/globals_defs_f.html
index 16970a27..a34e44b6 100644
--- a/docs/api/globals_defs_f.html
+++ b/docs/api/globals_defs_f.html
@@ -88,12 +88,12 @@ $(document).ready(function(){initNavTree('globals_defs_f.html',''); initResizabl
- f -
-- false
-: stdbool.h
-
- FALSE
: types.h
+- false
+: stdbool.h
+
- FAR_CALL
: far_ptr.h
diff --git a/docs/api/globals_f.html b/docs/api/globals_f.html
index a2be6d88..284d4c52 100644
--- a/docs/api/globals_f.html
+++ b/docs/api/globals_f.html
@@ -88,12 +88,12 @@ $(document).ready(function(){initNavTree('globals_f.html',''); initResizable();
Here is a list of all functions, variables, defines, enums, and typedefs with links to the files they belong to:
- f -
-- false
-: stdbool.h
-
- FALSE
: types.h
+- false
+: stdbool.h
+
- FAR_CALL
: far_ptr.h
diff --git a/docs/api/globals_func.html b/docs/api/globals_func.html
index 555f2e8c..feaccc73 100644
--- a/docs/api/globals_func.html
+++ b/docs/api/globals_func.html
@@ -282,7 +282,7 @@ $(document).ready(function(){initNavTree('globals_func.html',''); initResizable(
: gb.h
- get_tiles()
-: gb.h
+: gb.h
- get_vram_byte()
: gb.h
@@ -588,6 +588,9 @@ $(document).ready(function(){initNavTree('globals_func.html',''); initResizable(
- set_sprite_tile()
: gb.h
+- set_tile_data()
+: gb.h
+
- set_tiles()
: gb.h
diff --git a/docs/api/globals_g.html b/docs/api/globals_g.html
index f415f3d2..eff803b3 100644
--- a/docs/api/globals_g.html
+++ b/docs/api/globals_g.html
@@ -128,7 +128,7 @@ $(document).ready(function(){initNavTree('globals_g.html',''); initResizable();
: gb.h
- get_tiles()
-: gb.h
+: gb.h
- get_vram_byte()
: gb.h
diff --git a/docs/api/globals_s.html b/docs/api/globals_s.html
index 90ae40ab..0b7f090d 100644
--- a/docs/api/globals_s.html
+++ b/docs/api/globals_s.html
@@ -184,6 +184,9 @@ $(document).ready(function(){initNavTree('globals_s.html',''); initResizable();
- set_sprite_tile()
: gb.h
+- set_tile_data()
+: gb.h
+
- set_tiles()
: gb.h
@@ -326,8 +329,8 @@ $(document).ready(function(){initNavTree('globals_s.html',''); initResizable();
: stdint.h
- size_t
-: types.h
-, stddef.h
+: stddef.h
+, types.h
- SOLID
: drawing.h
diff --git a/docs/api/index.html b/docs/api/index.html
index 7c3e838c..5e5b3ce8 100644
--- a/docs/api/index.html
+++ b/docs/api/index.html
@@ -102,15 +102,15 @@ $(document).ready(function(){initNavTree('index.html',''); initResizable(); });
- GBDK Releases
- Toolchain settings
-
+
Introduction
Welcome to GBDK-2020! The best thing to do is head over to the Getting Started section to get up and running.
-
+
About the Documentation
This documentation is partially based on material written by the original GBDK authors in 1999 and updated for GBDK-2020. The API docs are automatically generated from the C header files using Doxygen.
GBDK-2020 is an updated version of the original GBDK with a modernized SDCC toolchain and many API improvements and fixes. It can be found at: https://github.com/gbdk-2020/gbdk-2020/.
The original GBDK sources, documentation and website are at: http://gbdk.sourceforge.net/
-
+
About GBDK
The GameBoy Developer's Kit (GBDK, GBDK-2020) is used to develop games and programs for the Nintendo Game Boy system in C and assembly. GBDK includes a set of libraries for the most common requirements and generates image files for use with a real GameBoy or with emulators.
GBDK features:
@@ -121,7 +121,7 @@ About GBDK
GBDK is freeware. Most of the tooling code is under the GPL. The runtime libraries should be under the LGPL. Please consider mentioning GBDK in the credits of projects made with it.
-
+
Historical Info and Links
The following is from the original GBDK documenation.
Thanks to quang for many of the comments to the gb functions. Some of the comments are ripped directly from the Linux Programmers manual, and some directly from the pan/k00Pa document.
diff --git a/docs/api/index.js b/docs/api/index.js
index f4916788..38b83649 100644
--- a/docs/api/index.js
+++ b/docs/api/index.js
@@ -1,196 +1,201 @@
var index =
[
- [ "Introduction", "index.html#autotoc_md152", null ],
- [ "About the Documentation", "index.html#autotoc_md153", null ],
- [ "About GBDK", "index.html#autotoc_md154", null ],
- [ "Historical Info and Links", "index.html#autotoc_md155", null ],
+ [ "Introduction", "index.html#autotoc_md157", null ],
+ [ "About the Documentation", "index.html#autotoc_md158", null ],
+ [ "About GBDK", "index.html#autotoc_md159", null ],
+ [ "Historical Info and Links", "index.html#autotoc_md160", null ],
[ "Getting Started", "docs_getting_started.html", [
- [ "1. Compile Example projects", "docs_getting_started.html#autotoc_md3", null ],
- [ "2. Use a Template", "docs_getting_started.html#autotoc_md4", null ],
- [ "3. If you use GBTD / GBMB, get the fixed version", "docs_getting_started.html#autotoc_md5", null ],
- [ "4. Review Coding Guidelines", "docs_getting_started.html#autotoc_md6", null ],
- [ "5. Hardware and Resources", "docs_getting_started.html#autotoc_md7", null ],
- [ "6. Set up C Source debugging", "docs_getting_started.html#autotoc_md8", null ],
- [ "7. Try a GBDK Tutorial", "docs_getting_started.html#autotoc_md9", null ],
- [ "8. Read up!", "docs_getting_started.html#autotoc_md10", null ],
- [ "9. Need help?", "docs_getting_started.html#autotoc_md11", null ]
+ [ "1. Compile Example projects", "docs_getting_started.html#autotoc_md4", null ],
+ [ "2. Use a Template", "docs_getting_started.html#autotoc_md5", null ],
+ [ "3. If you use GBTD / GBMB, get the fixed version", "docs_getting_started.html#autotoc_md6", null ],
+ [ "4. Review Coding Guidelines", "docs_getting_started.html#autotoc_md7", null ],
+ [ "5. Hardware and Resources", "docs_getting_started.html#autotoc_md8", null ],
+ [ "6. Set up C Source debugging", "docs_getting_started.html#autotoc_md9", null ],
+ [ "7. Try a GBDK Tutorial", "docs_getting_started.html#autotoc_md10", null ],
+ [ "8. Read up!", "docs_getting_started.html#autotoc_md11", null ],
+ [ "9. Need help?", "docs_getting_started.html#autotoc_md12", null ]
] ],
[ "Links and Third-Party Tools", "docs_links_and_tools.html", [
- [ "SDCC Compiler Suite User Manual", "docs_links_and_tools.html#autotoc_md12", null ],
- [ "Getting Help", "docs_links_and_tools.html#autotoc_md13", null ],
- [ "Game Boy Documentation", "docs_links_and_tools.html#autotoc_md14", null ],
- [ "Tutorials", "docs_links_and_tools.html#autotoc_md15", null ],
- [ "Example code", "docs_links_and_tools.html#autotoc_md16", null ],
- [ "Graphics Tools", "docs_links_and_tools.html#autotoc_md17", null ],
- [ "Music drivers and tools", "docs_links_and_tools.html#autotoc_md18", null ],
- [ "Emulators", "docs_links_and_tools.html#autotoc_md19", null ],
- [ "Debugging tools", "docs_links_and_tools.html#autotoc_md20", null ]
+ [ "SDCC Compiler Suite User Manual", "docs_links_and_tools.html#autotoc_md13", null ],
+ [ "Getting Help", "docs_links_and_tools.html#autotoc_md14", null ],
+ [ "Game Boy Documentation", "docs_links_and_tools.html#autotoc_md15", null ],
+ [ "Tutorials", "docs_links_and_tools.html#autotoc_md16", null ],
+ [ "Example code", "docs_links_and_tools.html#autotoc_md17", null ],
+ [ "Graphics Tools", "docs_links_and_tools.html#autotoc_md18", null ],
+ [ "Music drivers and tools", "docs_links_and_tools.html#autotoc_md19", null ],
+ [ "Emulators", "docs_links_and_tools.html#autotoc_md20", null ],
+ [ "Debugging tools", "docs_links_and_tools.html#autotoc_md21", null ]
] ],
[ "Using GBDK", "docs_using_gbdk.html", [
- [ "Interrupts", "docs_using_gbdk.html#autotoc_md21", [
- [ "Available Interrupts", "docs_using_gbdk.html#autotoc_md22", null ],
- [ "Adding your own interrupt handler", "docs_using_gbdk.html#autotoc_md23", null ],
- [ "Returning from Interrupts and STAT mode", "docs_using_gbdk.html#autotoc_md24", null ]
+ [ "Interrupts", "docs_using_gbdk.html#autotoc_md22", [
+ [ "Available Interrupts", "docs_using_gbdk.html#autotoc_md23", null ],
+ [ "Adding your own interrupt handler", "docs_using_gbdk.html#autotoc_md24", null ],
+ [ "Returning from Interrupts and STAT mode", "docs_using_gbdk.html#autotoc_md25", null ]
] ],
- [ "What GBDK does automatically and behind the scenes", "docs_using_gbdk.html#autotoc_md25", [
- [ "OAM (VRAM Sprite Attribute Table)", "docs_using_gbdk.html#autotoc_md26", null ],
- [ "Font tiles when using stdio.h", "docs_using_gbdk.html#autotoc_md27", null ],
- [ "Default Interrupt Service Handlers (ISRs)", "docs_using_gbdk.html#autotoc_md28", null ]
+ [ "What GBDK does automatically and behind the scenes", "docs_using_gbdk.html#autotoc_md26", [
+ [ "OAM (VRAM Sprite Attribute Table)", "docs_using_gbdk.html#autotoc_md27", null ],
+ [ "Font tiles when using stdio.h", "docs_using_gbdk.html#autotoc_md28", null ],
+ [ "Default Interrupt Service Handlers (ISRs)", "docs_using_gbdk.html#autotoc_md29", null ]
] ],
- [ "Copying Functions to RAM and HIRAM", "docs_using_gbdk.html#autotoc_md29", null ],
- [ "Mixing C and Assembly", "docs_using_gbdk.html#autotoc_md30", [
- [ "Inline ASM within C source files", "docs_using_gbdk.html#autotoc_md31", null ],
- [ "In Separate ASM files", "docs_using_gbdk.html#autotoc_md32", null ]
+ [ "Copying Functions to RAM and HIRAM", "docs_using_gbdk.html#autotoc_md30", null ],
+ [ "Mixing C and Assembly", "docs_using_gbdk.html#autotoc_md31", [
+ [ "Inline ASM within C source files", "docs_using_gbdk.html#autotoc_md32", null ],
+ [ "In Separate ASM files", "docs_using_gbdk.html#autotoc_md33", null ]
] ],
- [ "Known Issues and Limitations", "docs_using_gbdk.html#autotoc_md33", [
- [ "SDCC", "docs_using_gbdk.html#autotoc_md34", null ]
+ [ "Known Issues and Limitations", "docs_using_gbdk.html#autotoc_md34", [
+ [ "SDCC", "docs_using_gbdk.html#autotoc_md35", null ]
] ]
] ],
[ "Coding Guidelines", "docs_coding_guidelines.html", [
- [ "Learning C / C fundamentals", "docs_coding_guidelines.html#autotoc_md35", [
- [ "General C tutorials", "docs_coding_guidelines.html#autotoc_md36", null ],
- [ "Embedded C introductions", "docs_coding_guidelines.html#autotoc_md37", null ],
- [ "Game Boy games in C", "docs_coding_guidelines.html#autotoc_md38", null ]
+ [ "Learning C / C fundamentals", "docs_coding_guidelines.html#autotoc_md36", [
+ [ "General C tutorials", "docs_coding_guidelines.html#autotoc_md37", null ],
+ [ "Embedded C introductions", "docs_coding_guidelines.html#autotoc_md38", null ],
+ [ "Game Boy games in C", "docs_coding_guidelines.html#autotoc_md39", null ]
] ],
- [ "Understanding the hardware", "docs_coding_guidelines.html#autotoc_md39", null ],
- [ "Writing optimal C code for the Game Boy and SDCC", "docs_coding_guidelines.html#autotoc_md40", [
- [ "Tools", "docs_coding_guidelines.html#autotoc_md41", [
- [ "GBTD / GBMB, Arrays and the \"const\" keyword", "docs_coding_guidelines.html#autotoc_md42", null ]
+ [ "Understanding the hardware", "docs_coding_guidelines.html#autotoc_md40", null ],
+ [ "Writing optimal C code for the Game Boy and SDCC", "docs_coding_guidelines.html#autotoc_md41", [
+ [ "Tools", "docs_coding_guidelines.html#autotoc_md42", [
+ [ "GBTD / GBMB, Arrays and the \"const\" keyword", "docs_coding_guidelines.html#autotoc_md43", null ]
] ],
- [ "Variables", "docs_coding_guidelines.html#autotoc_md43", null ],
- [ "Code structure", "docs_coding_guidelines.html#autotoc_md44", null ],
- [ "GBDK API/Library", "docs_coding_guidelines.html#autotoc_md45", null ],
- [ "Toolchain", "docs_coding_guidelines.html#autotoc_md46", null ],
- [ "chars and vararg functions", "docs_coding_guidelines.html#autotoc_md47", null ]
+ [ "Variables", "docs_coding_guidelines.html#autotoc_md44", null ],
+ [ "Code structure", "docs_coding_guidelines.html#autotoc_md45", null ],
+ [ "GBDK API/Library", "docs_coding_guidelines.html#autotoc_md46", null ],
+ [ "Toolchain", "docs_coding_guidelines.html#autotoc_md47", null ],
+ [ "chars and vararg functions", "docs_coding_guidelines.html#autotoc_md48", null ]
] ],
- [ "When C isn't fast enough", "docs_coding_guidelines.html#autotoc_md48", [
- [ "Calling convention", "docs_coding_guidelines.html#autotoc_md49", null ],
- [ "Variables and registers", "docs_coding_guidelines.html#autotoc_md50", null ],
- [ "Segments", "docs_coding_guidelines.html#autotoc_md51", null ]
+ [ "When C isn't fast enough", "docs_coding_guidelines.html#autotoc_md49", [
+ [ "Calling convention", "docs_coding_guidelines.html#autotoc_md50", null ],
+ [ "Variables and registers", "docs_coding_guidelines.html#autotoc_md51", null ],
+ [ "Segments", "docs_coding_guidelines.html#autotoc_md52", null ]
] ]
] ],
[ "ROM/RAM Banking and MBCs", "docs_rombanking_mbcs.html", [
- [ "ROM/RAM Banking and MBCs (Memory Bank Controllers)", "docs_rombanking_mbcs.html#autotoc_md52", [
- [ "Unbanked cartridges", "docs_rombanking_mbcs.html#autotoc_md53", null ],
- [ "MBC Banked cartridges (Memory Bank Controllers)", "docs_rombanking_mbcs.html#autotoc_md54", null ]
+ [ "ROM/RAM Banking and MBCs (Memory Bank Controllers)", "docs_rombanking_mbcs.html#autotoc_md53", [
+ [ "Non-banked cartridges", "docs_rombanking_mbcs.html#autotoc_md54", null ],
+ [ "MBC Banked cartridges (Memory Bank Controllers)", "docs_rombanking_mbcs.html#autotoc_md55", null ]
] ],
- [ "Working with Banks", "docs_rombanking_mbcs.html#autotoc_md55", [
- [ "Setting the ROM bank for a Source file", "docs_rombanking_mbcs.html#autotoc_md56", null ],
- [ "Setting the RAM bank for a Source file", "docs_rombanking_mbcs.html#autotoc_md57", null ],
- [ "Setting the MBC and number of ROM & RAM banks available", "docs_rombanking_mbcs.html#autotoc_md58", null ],
- [ "Banked Functions", "docs_rombanking_mbcs.html#autotoc_md59", null ],
- [ "Const Data (Variables in ROM)", "docs_rombanking_mbcs.html#autotoc_md60", null ],
- [ "Variables in RAM", "docs_rombanking_mbcs.html#autotoc_md61", null ],
- [ "Far Pointers", "docs_rombanking_mbcs.html#autotoc_md62", null ],
- [ "Bank switching", "docs_rombanking_mbcs.html#autotoc_md63", null ],
- [ "Restoring the current bank (after calling functions which change it without restoring)", "docs_rombanking_mbcs.html#autotoc_md64", null ],
- [ "Currently active bank: _current_bank", "docs_rombanking_mbcs.html#autotoc_md65", null ]
+ [ "Working with Banks", "docs_rombanking_mbcs.html#autotoc_md56", [
+ [ "Setting the ROM bank for a Source file", "docs_rombanking_mbcs.html#autotoc_md57", null ],
+ [ "Setting the RAM bank for a Source file", "docs_rombanking_mbcs.html#autotoc_md58", null ],
+ [ "Setting the MBC and number of ROM & RAM banks available", "docs_rombanking_mbcs.html#autotoc_md59", null ],
+ [ "Banked Functions", "docs_rombanking_mbcs.html#autotoc_md60", null ],
+ [ "Const Data (Variables in ROM)", "docs_rombanking_mbcs.html#autotoc_md61", null ],
+ [ "Variables in RAM", "docs_rombanking_mbcs.html#autotoc_md62", null ],
+ [ "Far Pointers", "docs_rombanking_mbcs.html#autotoc_md63", null ],
+ [ "Bank switching", "docs_rombanking_mbcs.html#autotoc_md64", null ],
+ [ "Restoring the current bank (after calling functions which change it without restoring)", "docs_rombanking_mbcs.html#autotoc_md65", null ],
+ [ "Currently active bank: _current_bank", "docs_rombanking_mbcs.html#autotoc_md66", null ]
] ],
- [ "Auto-Banking", "docs_rombanking_mbcs.html#autotoc_md66", null ],
- [ "Errors related to banking (overflow, multiple writes to same location)", "docs_rombanking_mbcs.html#autotoc_md67", null ],
- [ "Bank space usage", "docs_rombanking_mbcs.html#autotoc_md68", [
- [ "Other important notes", "docs_rombanking_mbcs.html#autotoc_md69", null ]
+ [ "Auto-Banking", "docs_rombanking_mbcs.html#autotoc_md67", null ],
+ [ "Errors related to banking (overflow, multiple writes to same location)", "docs_rombanking_mbcs.html#autotoc_md68", null ],
+ [ "Bank space usage", "docs_rombanking_mbcs.html#autotoc_md69", [
+ [ "Other important notes", "docs_rombanking_mbcs.html#autotoc_md70", null ]
] ],
- [ "Banking example projects", "docs_rombanking_mbcs.html#autotoc_md70", null ]
+ [ "Banking example projects", "docs_rombanking_mbcs.html#autotoc_md71", null ]
] ],
[ "GBDK Toolchain", "docs_toolchain.html", [
- [ "Overview", "docs_toolchain.html#autotoc_md71", null ],
- [ "Data Types", "docs_toolchain.html#autotoc_md72", null ],
- [ "Changing Important Addresses", "docs_toolchain.html#autotoc_md73", null ],
- [ "Compiling programs", "docs_toolchain.html#autotoc_md74", [
+ [ "Overview", "docs_toolchain.html#autotoc_md72", null ],
+ [ "Data Types", "docs_toolchain.html#autotoc_md73", null ],
+ [ "Changing Important Addresses", "docs_toolchain.html#autotoc_md74", null ],
+ [ "Compiling programs", "docs_toolchain.html#autotoc_md75", [
[ "Makefiles", "docs_toolchain.html#Makefiles", null ]
] ],
- [ "Build Tools", "docs_toolchain.html#autotoc_md75", [
- [ "lcc", "docs_toolchain.html#autotoc_md76", null ],
- [ "sdcc", "docs_toolchain.html#autotoc_md77", null ],
- [ "sdasgb", "docs_toolchain.html#autotoc_md78", null ],
- [ "bankpack", "docs_toolchain.html#autotoc_md79", null ],
- [ "sdldgb", "docs_toolchain.html#autotoc_md80", null ],
- [ "ihxcheck", "docs_toolchain.html#autotoc_md81", null ],
- [ "makebin", "docs_toolchain.html#autotoc_md82", null ]
+ [ "Build Tools", "docs_toolchain.html#autotoc_md76", [
+ [ "lcc", "docs_toolchain.html#autotoc_md77", null ],
+ [ "sdcc", "docs_toolchain.html#autotoc_md78", null ],
+ [ "sdasgb", "docs_toolchain.html#autotoc_md79", null ],
+ [ "bankpack", "docs_toolchain.html#autotoc_md80", null ],
+ [ "sdldgb", "docs_toolchain.html#autotoc_md81", null ],
+ [ "ihxcheck", "docs_toolchain.html#autotoc_md82", null ],
+ [ "makebin", "docs_toolchain.html#autotoc_md83", null ]
] ],
- [ "GBDK Utilities", "docs_toolchain.html#autotoc_md83", [
- [ "GBCompress", "docs_toolchain.html#autotoc_md84", null ],
- [ "PNG to Metasprite", "docs_toolchain.html#autotoc_md85", null ]
+ [ "GBDK Utilities", "docs_toolchain.html#autotoc_md84", [
+ [ "GBCompress", "docs_toolchain.html#autotoc_md85", null ],
+ [ "PNG to Metasprite", "docs_toolchain.html#autotoc_md86", [
+ [ "Working with png2mtspr", "docs_toolchain.html#autotoc_md87", null ]
+ ] ]
] ]
] ],
[ "Example Programs", "docs_example_programs.html", [
- [ "banks (various projects)", "docs_example_programs.html#autotoc_md86", null ],
- [ "comm", "docs_example_programs.html#autotoc_md87", null ],
- [ "crash", "docs_example_programs.html#autotoc_md88", null ],
- [ "colorbar", "docs_example_programs.html#autotoc_md89", null ],
- [ "dscan", "docs_example_programs.html#autotoc_md90", null ],
- [ "filltest", "docs_example_programs.html#autotoc_md91", null ],
- [ "fonts", "docs_example_programs.html#autotoc_md92", null ],
- [ "galaxy", "docs_example_programs.html#autotoc_md93", null ],
- [ "gb-dtmf", "docs_example_programs.html#autotoc_md94", null ],
- [ "gbdecompress", "docs_example_programs.html#autotoc_md95", null ],
- [ "irq", "docs_example_programs.html#autotoc_md96", null ],
- [ "large map", "docs_example_programs.html#autotoc_md97", null ],
- [ "metasprites", "docs_example_programs.html#autotoc_md98", null ],
- [ "lcd isr wobble", "docs_example_programs.html#autotoc_md99", null ],
- [ "paint", "docs_example_programs.html#autotoc_md100", null ],
- [ "rand", "docs_example_programs.html#autotoc_md101", null ],
- [ "ram_fn", "docs_example_programs.html#autotoc_md102", null ],
- [ "rpn", "docs_example_programs.html#autotoc_md103", null ],
- [ "samptest", "docs_example_programs.html#autotoc_md104", null ],
- [ "sgb (various)", "docs_example_programs.html#autotoc_md105", null ],
- [ "sound", "docs_example_programs.html#autotoc_md106", null ],
- [ "space", "docs_example_programs.html#autotoc_md107", null ],
- [ "templates", "docs_example_programs.html#autotoc_md108", null ]
+ [ "banks (various projects)", "docs_example_programs.html#autotoc_md88", null ],
+ [ "comm", "docs_example_programs.html#autotoc_md89", null ],
+ [ "crash", "docs_example_programs.html#autotoc_md90", null ],
+ [ "colorbar", "docs_example_programs.html#autotoc_md91", null ],
+ [ "dscan", "docs_example_programs.html#autotoc_md92", null ],
+ [ "filltest", "docs_example_programs.html#autotoc_md93", null ],
+ [ "fonts", "docs_example_programs.html#autotoc_md94", null ],
+ [ "galaxy", "docs_example_programs.html#autotoc_md95", null ],
+ [ "gb-dtmf", "docs_example_programs.html#autotoc_md96", null ],
+ [ "gbdecompress", "docs_example_programs.html#autotoc_md97", null ],
+ [ "irq", "docs_example_programs.html#autotoc_md98", null ],
+ [ "large map", "docs_example_programs.html#autotoc_md99", null ],
+ [ "metasprites", "docs_example_programs.html#autotoc_md100", null ],
+ [ "lcd isr wobble", "docs_example_programs.html#autotoc_md101", null ],
+ [ "paint", "docs_example_programs.html#autotoc_md102", null ],
+ [ "rand", "docs_example_programs.html#autotoc_md103", null ],
+ [ "ram_fn", "docs_example_programs.html#autotoc_md104", null ],
+ [ "rpn", "docs_example_programs.html#autotoc_md105", null ],
+ [ "samptest", "docs_example_programs.html#autotoc_md106", null ],
+ [ "sgb (various)", "docs_example_programs.html#autotoc_md107", null ],
+ [ "sound", "docs_example_programs.html#autotoc_md108", null ],
+ [ "space", "docs_example_programs.html#autotoc_md109", null ],
+ [ "templates", "docs_example_programs.html#autotoc_md110", null ]
] ],
[ "Frequently Asked Questions (FAQ)", "docs_faq.html", [
- [ "Frequently Asked Questions", "docs_faq.html#autotoc_md109", null ]
+ [ "General", "docs_faq.html#autotoc_md111", null ],
+ [ "ROM Header Settings", "docs_faq.html#autotoc_md112", null ],
+ [ "Errors / Compiling / Toolchain", "docs_faq.html#autotoc_md113", null ],
+ [ "API / Utilities", "docs_faq.html#autotoc_md114", null ]
] ],
[ "Migrating to new GBDK Versions", "docs_migrating_versions.html", [
- [ "GBDK 2020 versions", "docs_migrating_versions.html#autotoc_md110", [
- [ "Porting to GBDK 2020 4.0.3", "docs_migrating_versions.html#autotoc_md111", null ],
- [ "Porting to GBDK 2020 4.0.2", "docs_migrating_versions.html#autotoc_md112", null ],
- [ "Porting to GBDK 2020 4.0.1", "docs_migrating_versions.html#autotoc_md113", null ],
- [ "Porting to GBDK 2020 4.0", "docs_migrating_versions.html#autotoc_md114", null ],
- [ "Porting to GBDK 2020 3.2", "docs_migrating_versions.html#autotoc_md115", null ],
- [ "Porting to GBDK 2020 3.1.1", "docs_migrating_versions.html#autotoc_md116", null ],
- [ "Porting to GBDK 2020 3.1", "docs_migrating_versions.html#autotoc_md117", null ],
- [ "Porting to GBDK 2020 3.0.1", "docs_migrating_versions.html#autotoc_md118", null ]
+ [ "GBDK 2020 versions", "docs_migrating_versions.html#autotoc_md115", [
+ [ "Porting to GBDK 2020 4.0.3", "docs_migrating_versions.html#autotoc_md116", null ],
+ [ "Porting to GBDK 2020 4.0.2", "docs_migrating_versions.html#autotoc_md117", null ],
+ [ "Porting to GBDK 2020 4.0.1", "docs_migrating_versions.html#autotoc_md118", null ],
+ [ "Porting to GBDK 2020 4.0", "docs_migrating_versions.html#autotoc_md119", null ],
+ [ "Porting to GBDK 2020 3.2", "docs_migrating_versions.html#autotoc_md120", null ],
+ [ "Porting to GBDK 2020 3.1.1", "docs_migrating_versions.html#autotoc_md121", null ],
+ [ "Porting to GBDK 2020 3.1", "docs_migrating_versions.html#autotoc_md122", null ],
+ [ "Porting to GBDK 2020 3.0.1", "docs_migrating_versions.html#autotoc_md123", null ]
] ],
- [ "Historical GBDK versions", "docs_migrating_versions.html#autotoc_md120", [
- [ "GBDK 1.1 to GBDK 2.0", "docs_migrating_versions.html#autotoc_md121", null ]
+ [ "Historical GBDK versions", "docs_migrating_versions.html#autotoc_md125", [
+ [ "GBDK 1.1 to GBDK 2.0", "docs_migrating_versions.html#autotoc_md126", null ]
] ]
] ],
[ "GBDK Releases", "docs_releases.html", [
- [ "GBDK 2020 Release Notes", "docs_releases.html#autotoc_md122", [
- [ "GBDK 2020 4.0.3", "docs_releases.html#autotoc_md123", null ],
- [ "GBDK 2020 4.0.2", "docs_releases.html#autotoc_md124", null ],
- [ "GBDK 2020 4.0.1", "docs_releases.html#autotoc_md125", null ],
- [ "GBDK 2020 4.0", "docs_releases.html#autotoc_md126", null ],
- [ "GBDK 2020 3.2", "docs_releases.html#autotoc_md127", null ],
- [ "GBDK 2020 3.1.1", "docs_releases.html#autotoc_md128", null ],
- [ "GBDK 2020 3.1", "docs_releases.html#autotoc_md129", null ],
- [ "GBDK 2020 3.0.1", "docs_releases.html#autotoc_md130", null ],
- [ "GBDK 2020 3.0", "docs_releases.html#autotoc_md131", null ]
+ [ "GBDK 2020 Release Notes", "docs_releases.html#autotoc_md127", [
+ [ "GBDK 2020 4.0.3", "docs_releases.html#autotoc_md128", null ],
+ [ "GBDK 2020 4.0.2", "docs_releases.html#autotoc_md129", null ],
+ [ "GBDK 2020 4.0.1", "docs_releases.html#autotoc_md130", null ],
+ [ "GBDK 2020 4.0", "docs_releases.html#autotoc_md131", null ],
+ [ "GBDK 2020 3.2", "docs_releases.html#autotoc_md132", null ],
+ [ "GBDK 2020 3.1.1", "docs_releases.html#autotoc_md133", null ],
+ [ "GBDK 2020 3.1", "docs_releases.html#autotoc_md134", null ],
+ [ "GBDK 2020 3.0.1", "docs_releases.html#autotoc_md135", null ],
+ [ "GBDK 2020 3.0", "docs_releases.html#autotoc_md136", null ]
] ],
- [ "Historical GBDK Release Notes", "docs_releases.html#autotoc_md132", [
- [ "GBDK 2.96", "docs_releases.html#autotoc_md133", null ],
- [ "GBDK 2.95-3", "docs_releases.html#autotoc_md134", null ],
- [ "GBDK 2.95-2", "docs_releases.html#autotoc_md135", null ],
- [ "GBDK 2.95", "docs_releases.html#autotoc_md136", null ],
- [ "GBDK 2.94", "docs_releases.html#autotoc_md137", null ],
- [ "GBDK 2.93", "docs_releases.html#autotoc_md138", null ],
- [ "GBDK 2.92-2 for win32", "docs_releases.html#autotoc_md139", null ],
- [ "GBDK 2.92", "docs_releases.html#autotoc_md140", null ],
- [ "GBDK 2.91", "docs_releases.html#autotoc_md141", null ],
- [ "GBDK 2.1.5", "docs_releases.html#autotoc_md142", null ]
+ [ "Historical GBDK Release Notes", "docs_releases.html#autotoc_md137", [
+ [ "GBDK 2.96", "docs_releases.html#autotoc_md138", null ],
+ [ "GBDK 2.95-3", "docs_releases.html#autotoc_md139", null ],
+ [ "GBDK 2.95-2", "docs_releases.html#autotoc_md140", null ],
+ [ "GBDK 2.95", "docs_releases.html#autotoc_md141", null ],
+ [ "GBDK 2.94", "docs_releases.html#autotoc_md142", null ],
+ [ "GBDK 2.93", "docs_releases.html#autotoc_md143", null ],
+ [ "GBDK 2.92-2 for win32", "docs_releases.html#autotoc_md144", null ],
+ [ "GBDK 2.92", "docs_releases.html#autotoc_md145", null ],
+ [ "GBDK 2.91", "docs_releases.html#autotoc_md146", null ],
+ [ "GBDK 2.1.5", "docs_releases.html#autotoc_md147", null ]
] ]
] ],
[ "Toolchain settings", "docs_toolchain_settings.html", [
- [ "lcc settings", "docs_toolchain_settings.html#autotoc_md143", null ],
- [ "sdcc settings", "docs_toolchain_settings.html#autotoc_md144", null ],
- [ "sdasgb settings", "docs_toolchain_settings.html#autotoc_md145", null ],
- [ "bankpack settings", "docs_toolchain_settings.html#autotoc_md146", null ],
- [ "sdldgb settings", "docs_toolchain_settings.html#autotoc_md147", null ],
- [ "ihxcheck settings", "docs_toolchain_settings.html#autotoc_md148", null ],
- [ "makebin settings", "docs_toolchain_settings.html#autotoc_md149", null ],
- [ "gbcompress settings", "docs_toolchain_settings.html#autotoc_md150", null ],
- [ "png2mtspr settings", "docs_toolchain_settings.html#autotoc_md151", null ]
+ [ "lcc settings", "docs_toolchain_settings.html#autotoc_md148", null ],
+ [ "sdcc settings", "docs_toolchain_settings.html#autotoc_md149", null ],
+ [ "sdasgb settings", "docs_toolchain_settings.html#autotoc_md150", null ],
+ [ "bankpack settings", "docs_toolchain_settings.html#autotoc_md151", null ],
+ [ "sdldgb settings", "docs_toolchain_settings.html#autotoc_md152", null ],
+ [ "ihxcheck settings", "docs_toolchain_settings.html#autotoc_md153", null ],
+ [ "makebin settings", "docs_toolchain_settings.html#autotoc_md154", null ],
+ [ "gbcompress settings", "docs_toolchain_settings.html#autotoc_md155", null ],
+ [ "png2mtspr settings", "docs_toolchain_settings.html#autotoc_md156", null ]
] ]
];
\ No newline at end of file
diff --git a/docs/api/metasprites_8h.html b/docs/api/metasprites_8h.html
index e5dedafd..8ce15331 100644
--- a/docs/api/metasprites_8h.html
+++ b/docs/api/metasprites_8h.html
@@ -142,8 +142,16 @@ Metasprite support
The api supports metasprites in both SPRITES_8x8 and SPRITES_8x16 mode. If 8x16 mode is used then the height of the metasprite must be a multiple of 16.
The origin (pivot) for the metasprite is not required to be in the upper left-hand corner as with regular hardware sprites.
Use the utility_png2mtspr tool to convert single or multiple frames of graphics into metasprite structured data for use with the ...metasprite...() functions.
-
+Metasprites composed of variable numbers of sprites
+When using png2mtspr, it's common for the output of different frames to be composed of different numbers of hardware sprites (since it's trying to create each frame as efficiently as possible). Due to that, it's good practice to clear out (hide) unused sprites in the shadow_OAM that have been set by previous frames.
+
+
Metasprites and sprite properties (including cgb palette)
When the move_metasprite_*() functions are called they update all properties for the affected sprites in the Shadow OAM. This means any existing property flags set for a sprite (CGB palette, BG/WIN priority, Tile VRAM Bank) will get overwritten.
How to use sprite property flags with metasprites:
@@ -603,6 +611,8 @@ Metasprites and sprite properties (including cgb palette)
+volatile struct OAM_item_t shadow_OAM[]
+UINT8 UBYTE
Definition: types.h:46
diff --git a/docs/api/metasprites_8h_source.html b/docs/api/metasprites_8h_source.html
index 0e424521..d888bdc4 100644
--- a/docs/api/metasprites_8h_source.html
+++ b/docs/api/metasprites_8h_source.html
@@ -90,77 +90,77 @@ $(document).ready(function(){initNavTree('metasprites_8h_source.html',''); initR
Go to the documentation of this file.
-
43 #ifndef _METASPRITES_H_INCLUDE
-
44 #define _METASPRITES_H_INCLUDE
-
-
-
-
-
-
+
60 #ifndef _METASPRITES_H_INCLUDE
+
61 #define _METASPRITES_H_INCLUDE
-
63 #define metasprite_end -128
-
-
-
-
-
-
-
-
-
-
-
74 static void __hide_metasprite(
UINT8 id);
-
-
-
-
-
-
102 return __move_metasprite(base_sprite, x, y);
-
-
-
-
-
-
129 return __move_metasprite_vflip(base_sprite, x - 8, y);
-
-
-
-
-
-
-
157 return __move_metasprite_hflip(base_sprite, x, y - ((
LCDC_REG & 0x04U) ? 16 : 8) );
-
-
-
-
-
-
184 return __move_metasprite_hvflip(base_sprite, x - 8, y - ((
LCDC_REG & 0x04U) ? 16 : 8));
-
-
-
-
-
198 __hide_metasprite(base_sprite);
-
-
-
+
+
+
+
+
+
+
80 #define metasprite_end -128
+
+
+
+
+
+
+
+
+
+
+
91 static void __hide_metasprite(
UINT8 id);
+
+
+
+
+
+
119 return __move_metasprite(base_sprite, x, y);
+
+
+
+
+
+
146 return __move_metasprite_vflip(base_sprite, x - 8, y);
+
+
+
+
+
+
+
174 return __move_metasprite_hflip(base_sprite, x, y - ((
LCDC_REG & 0x04U) ? 16 : 8) );
+
+
+
+
+
+
201 return __move_metasprite_hvflip(base_sprite, x - 8, y - ((
LCDC_REG & 0x04U) ? 16 : 8));
+
+
+
+
+
215 __hide_metasprite(base_sprite);
+
+
+
-
+
unsigned char UINT8
Definition: types.h:22
-
-
-
-
+
+
+
+
-
+
UINT8 UBYTE
Definition: types.h:46
-
+
-
-
+
+
-
+
signed char INT8
Definition: types.h:19
__REG LCDC_REG
Definition: hardware.h:43
diff --git a/docs/api/navtreedata.js b/docs/api/navtreedata.js
index bf60cfcb..4e144bfb 100644
--- a/docs/api/navtreedata.js
+++ b/docs/api/navtreedata.js
@@ -52,9 +52,9 @@ var NAVTREE =
var NAVTREEINDEX =
[
"annotated.html",
-"docs_toolchain_settings.html#autotoc_md147",
-"globals_defs_e.html",
-"stdint_8h.html#a1f91bfd5820c2f27af3d260fc75813e1"
+"docs_toolchain_settings.html#autotoc_md148",
+"globals_defs.html",
+"stdint_8h.html#a181807730d4a375f848ba139813ce04f"
];
var SYNCONMSG = 'click to disable panel synchronisation';
diff --git a/docs/api/navtreeindex0.js b/docs/api/navtreeindex0.js
index cf780f53..aca179fc 100644
--- a/docs/api/navtreeindex0.js
+++ b/docs/api/navtreeindex0.js
@@ -111,143 +111,143 @@ var NAVTREEINDEX0 =
"dir_bdfe001eb73b667f67d57fb851301eb1.html":[4,0,2],
"dir_ef3b2545113449f8f25e623a543d64e3.html":[4,0,1,0],
"docs_coding_guidelines.html":[0,7],
-"docs_coding_guidelines.html#autotoc_md35":[0,7,0],
-"docs_coding_guidelines.html#autotoc_md36":[0,7,0,0],
-"docs_coding_guidelines.html#autotoc_md37":[0,7,0,1],
-"docs_coding_guidelines.html#autotoc_md38":[0,7,0,2],
-"docs_coding_guidelines.html#autotoc_md39":[0,7,1],
-"docs_coding_guidelines.html#autotoc_md40":[0,7,2],
-"docs_coding_guidelines.html#autotoc_md41":[0,7,2,0],
-"docs_coding_guidelines.html#autotoc_md42":[0,7,2,0,0],
-"docs_coding_guidelines.html#autotoc_md43":[0,7,2,1],
-"docs_coding_guidelines.html#autotoc_md44":[0,7,2,2],
-"docs_coding_guidelines.html#autotoc_md45":[0,7,2,3],
-"docs_coding_guidelines.html#autotoc_md46":[0,7,2,4],
-"docs_coding_guidelines.html#autotoc_md47":[0,7,2,5],
-"docs_coding_guidelines.html#autotoc_md48":[0,7,3],
-"docs_coding_guidelines.html#autotoc_md49":[0,7,3,0],
-"docs_coding_guidelines.html#autotoc_md50":[0,7,3,1],
-"docs_coding_guidelines.html#autotoc_md51":[0,7,3,2],
+"docs_coding_guidelines.html#autotoc_md36":[0,7,0],
+"docs_coding_guidelines.html#autotoc_md37":[0,7,0,0],
+"docs_coding_guidelines.html#autotoc_md38":[0,7,0,1],
+"docs_coding_guidelines.html#autotoc_md39":[0,7,0,2],
+"docs_coding_guidelines.html#autotoc_md40":[0,7,1],
+"docs_coding_guidelines.html#autotoc_md41":[0,7,2],
+"docs_coding_guidelines.html#autotoc_md42":[0,7,2,0],
+"docs_coding_guidelines.html#autotoc_md43":[0,7,2,0,0],
+"docs_coding_guidelines.html#autotoc_md44":[0,7,2,1],
+"docs_coding_guidelines.html#autotoc_md45":[0,7,2,2],
+"docs_coding_guidelines.html#autotoc_md46":[0,7,2,3],
+"docs_coding_guidelines.html#autotoc_md47":[0,7,2,4],
+"docs_coding_guidelines.html#autotoc_md48":[0,7,2,5],
+"docs_coding_guidelines.html#autotoc_md49":[0,7,3],
+"docs_coding_guidelines.html#autotoc_md50":[0,7,3,0],
+"docs_coding_guidelines.html#autotoc_md51":[0,7,3,1],
+"docs_coding_guidelines.html#autotoc_md52":[0,7,3,2],
"docs_example_programs.html":[0,10],
-"docs_example_programs.html#autotoc_md100":[0,10,14],
-"docs_example_programs.html#autotoc_md101":[0,10,15],
-"docs_example_programs.html#autotoc_md102":[0,10,16],
-"docs_example_programs.html#autotoc_md103":[0,10,17],
-"docs_example_programs.html#autotoc_md104":[0,10,18],
-"docs_example_programs.html#autotoc_md105":[0,10,19],
-"docs_example_programs.html#autotoc_md106":[0,10,20],
-"docs_example_programs.html#autotoc_md107":[0,10,21],
-"docs_example_programs.html#autotoc_md108":[0,10,22],
-"docs_example_programs.html#autotoc_md86":[0,10,0],
-"docs_example_programs.html#autotoc_md87":[0,10,1],
-"docs_example_programs.html#autotoc_md88":[0,10,2],
-"docs_example_programs.html#autotoc_md89":[0,10,3],
-"docs_example_programs.html#autotoc_md90":[0,10,4],
-"docs_example_programs.html#autotoc_md91":[0,10,5],
-"docs_example_programs.html#autotoc_md92":[0,10,6],
-"docs_example_programs.html#autotoc_md93":[0,10,7],
-"docs_example_programs.html#autotoc_md94":[0,10,8],
-"docs_example_programs.html#autotoc_md95":[0,10,9],
-"docs_example_programs.html#autotoc_md96":[0,10,10],
-"docs_example_programs.html#autotoc_md97":[0,10,11],
-"docs_example_programs.html#autotoc_md98":[0,10,12],
-"docs_example_programs.html#autotoc_md99":[0,10,13],
+"docs_example_programs.html#autotoc_md100":[0,10,12],
+"docs_example_programs.html#autotoc_md101":[0,10,13],
+"docs_example_programs.html#autotoc_md102":[0,10,14],
+"docs_example_programs.html#autotoc_md103":[0,10,15],
+"docs_example_programs.html#autotoc_md104":[0,10,16],
+"docs_example_programs.html#autotoc_md105":[0,10,17],
+"docs_example_programs.html#autotoc_md106":[0,10,18],
+"docs_example_programs.html#autotoc_md107":[0,10,19],
+"docs_example_programs.html#autotoc_md108":[0,10,20],
+"docs_example_programs.html#autotoc_md109":[0,10,21],
+"docs_example_programs.html#autotoc_md110":[0,10,22],
+"docs_example_programs.html#autotoc_md88":[0,10,0],
+"docs_example_programs.html#autotoc_md89":[0,10,1],
+"docs_example_programs.html#autotoc_md90":[0,10,2],
+"docs_example_programs.html#autotoc_md91":[0,10,3],
+"docs_example_programs.html#autotoc_md92":[0,10,4],
+"docs_example_programs.html#autotoc_md93":[0,10,5],
+"docs_example_programs.html#autotoc_md94":[0,10,6],
+"docs_example_programs.html#autotoc_md95":[0,10,7],
+"docs_example_programs.html#autotoc_md96":[0,10,8],
+"docs_example_programs.html#autotoc_md97":[0,10,9],
+"docs_example_programs.html#autotoc_md98":[0,10,10],
+"docs_example_programs.html#autotoc_md99":[0,10,11],
"docs_faq.html":[0,11],
-"docs_faq.html#autotoc_md109":[0,11,0],
+"docs_faq.html#autotoc_md111":[0,11,0],
+"docs_faq.html#autotoc_md112":[0,11,1],
+"docs_faq.html#autotoc_md113":[0,11,2],
+"docs_faq.html#autotoc_md114":[0,11,3],
"docs_getting_started.html":[0,4],
-"docs_getting_started.html#autotoc_md10":[0,4,7],
-"docs_getting_started.html#autotoc_md11":[0,4,8],
-"docs_getting_started.html#autotoc_md3":[0,4,0],
-"docs_getting_started.html#autotoc_md4":[0,4,1],
-"docs_getting_started.html#autotoc_md5":[0,4,2],
-"docs_getting_started.html#autotoc_md6":[0,4,3],
-"docs_getting_started.html#autotoc_md7":[0,4,4],
-"docs_getting_started.html#autotoc_md8":[0,4,5],
-"docs_getting_started.html#autotoc_md9":[0,4,6],
+"docs_getting_started.html#autotoc_md10":[0,4,6],
+"docs_getting_started.html#autotoc_md11":[0,4,7],
+"docs_getting_started.html#autotoc_md12":[0,4,8],
+"docs_getting_started.html#autotoc_md4":[0,4,0],
+"docs_getting_started.html#autotoc_md5":[0,4,1],
+"docs_getting_started.html#autotoc_md6":[0,4,2],
+"docs_getting_started.html#autotoc_md7":[0,4,3],
+"docs_getting_started.html#autotoc_md8":[0,4,4],
+"docs_getting_started.html#autotoc_md9":[0,4,5],
"docs_links_and_tools.html":[0,5],
-"docs_links_and_tools.html#autotoc_md12":[0,5,0],
-"docs_links_and_tools.html#autotoc_md13":[0,5,1],
-"docs_links_and_tools.html#autotoc_md14":[0,5,2],
-"docs_links_and_tools.html#autotoc_md15":[0,5,3],
-"docs_links_and_tools.html#autotoc_md16":[0,5,4],
-"docs_links_and_tools.html#autotoc_md17":[0,5,5],
-"docs_links_and_tools.html#autotoc_md18":[0,5,6],
-"docs_links_and_tools.html#autotoc_md19":[0,5,7],
-"docs_links_and_tools.html#autotoc_md20":[0,5,8],
+"docs_links_and_tools.html#autotoc_md13":[0,5,0],
+"docs_links_and_tools.html#autotoc_md14":[0,5,1],
+"docs_links_and_tools.html#autotoc_md15":[0,5,2],
+"docs_links_and_tools.html#autotoc_md16":[0,5,3],
+"docs_links_and_tools.html#autotoc_md17":[0,5,4],
+"docs_links_and_tools.html#autotoc_md18":[0,5,5],
+"docs_links_and_tools.html#autotoc_md19":[0,5,6],
+"docs_links_and_tools.html#autotoc_md20":[0,5,7],
+"docs_links_and_tools.html#autotoc_md21":[0,5,8],
"docs_migrating_versions.html":[0,12],
-"docs_migrating_versions.html#autotoc_md110":[0,12,0],
-"docs_migrating_versions.html#autotoc_md111":[0,12,0,0],
-"docs_migrating_versions.html#autotoc_md112":[0,12,0,1],
-"docs_migrating_versions.html#autotoc_md113":[0,12,0,2],
-"docs_migrating_versions.html#autotoc_md114":[0,12,0,3],
-"docs_migrating_versions.html#autotoc_md115":[0,12,0,4],
-"docs_migrating_versions.html#autotoc_md116":[0,12,0,5],
-"docs_migrating_versions.html#autotoc_md117":[0,12,0,6],
-"docs_migrating_versions.html#autotoc_md118":[0,12,0,7],
-"docs_migrating_versions.html#autotoc_md120":[0,12,1],
-"docs_migrating_versions.html#autotoc_md121":[0,12,1,0],
+"docs_migrating_versions.html#autotoc_md115":[0,12,0],
+"docs_migrating_versions.html#autotoc_md116":[0,12,0,0],
+"docs_migrating_versions.html#autotoc_md117":[0,12,0,1],
+"docs_migrating_versions.html#autotoc_md118":[0,12,0,2],
+"docs_migrating_versions.html#autotoc_md119":[0,12,0,3],
+"docs_migrating_versions.html#autotoc_md120":[0,12,0,4],
+"docs_migrating_versions.html#autotoc_md121":[0,12,0,5],
+"docs_migrating_versions.html#autotoc_md122":[0,12,0,6],
+"docs_migrating_versions.html#autotoc_md123":[0,12,0,7],
+"docs_migrating_versions.html#autotoc_md125":[0,12,1],
+"docs_migrating_versions.html#autotoc_md126":[0,12,1,0],
"docs_releases.html":[0,13],
-"docs_releases.html#autotoc_md122":[0,13,0],
-"docs_releases.html#autotoc_md123":[0,13,0,0],
-"docs_releases.html#autotoc_md124":[0,13,0,1],
-"docs_releases.html#autotoc_md125":[0,13,0,2],
-"docs_releases.html#autotoc_md126":[0,13,0,3],
-"docs_releases.html#autotoc_md127":[0,13,0,4],
-"docs_releases.html#autotoc_md128":[0,13,0,5],
-"docs_releases.html#autotoc_md129":[0,13,0,6],
-"docs_releases.html#autotoc_md130":[0,13,0,7],
-"docs_releases.html#autotoc_md131":[0,13,0,8],
-"docs_releases.html#autotoc_md132":[0,13,1],
-"docs_releases.html#autotoc_md133":[0,13,1,0],
-"docs_releases.html#autotoc_md134":[0,13,1,1],
-"docs_releases.html#autotoc_md135":[0,13,1,2],
-"docs_releases.html#autotoc_md136":[0,13,1,3],
-"docs_releases.html#autotoc_md137":[0,13,1,4],
-"docs_releases.html#autotoc_md138":[0,13,1,5],
-"docs_releases.html#autotoc_md139":[0,13,1,6],
-"docs_releases.html#autotoc_md140":[0,13,1,7],
-"docs_releases.html#autotoc_md141":[0,13,1,8],
-"docs_releases.html#autotoc_md142":[0,13,1,9],
+"docs_releases.html#autotoc_md127":[0,13,0],
+"docs_releases.html#autotoc_md128":[0,13,0,0],
+"docs_releases.html#autotoc_md129":[0,13,0,1],
+"docs_releases.html#autotoc_md130":[0,13,0,2],
+"docs_releases.html#autotoc_md131":[0,13,0,3],
+"docs_releases.html#autotoc_md132":[0,13,0,4],
+"docs_releases.html#autotoc_md133":[0,13,0,5],
+"docs_releases.html#autotoc_md134":[0,13,0,6],
+"docs_releases.html#autotoc_md135":[0,13,0,7],
+"docs_releases.html#autotoc_md136":[0,13,0,8],
+"docs_releases.html#autotoc_md137":[0,13,1],
+"docs_releases.html#autotoc_md138":[0,13,1,0],
+"docs_releases.html#autotoc_md139":[0,13,1,1],
+"docs_releases.html#autotoc_md140":[0,13,1,2],
+"docs_releases.html#autotoc_md141":[0,13,1,3],
+"docs_releases.html#autotoc_md142":[0,13,1,4],
+"docs_releases.html#autotoc_md143":[0,13,1,5],
+"docs_releases.html#autotoc_md144":[0,13,1,6],
+"docs_releases.html#autotoc_md145":[0,13,1,7],
+"docs_releases.html#autotoc_md146":[0,13,1,8],
+"docs_releases.html#autotoc_md147":[0,13,1,9],
"docs_rombanking_mbcs.html":[0,8],
-"docs_rombanking_mbcs.html#autotoc_md52":[0,8,0],
-"docs_rombanking_mbcs.html#autotoc_md53":[0,8,0,0],
-"docs_rombanking_mbcs.html#autotoc_md54":[0,8,0,1],
-"docs_rombanking_mbcs.html#autotoc_md55":[0,8,1],
-"docs_rombanking_mbcs.html#autotoc_md56":[0,8,1,0],
-"docs_rombanking_mbcs.html#autotoc_md57":[0,8,1,1],
-"docs_rombanking_mbcs.html#autotoc_md58":[0,8,1,2],
-"docs_rombanking_mbcs.html#autotoc_md59":[0,8,1,3],
-"docs_rombanking_mbcs.html#autotoc_md60":[0,8,1,4],
-"docs_rombanking_mbcs.html#autotoc_md61":[0,8,1,5],
-"docs_rombanking_mbcs.html#autotoc_md62":[0,8,1,6],
-"docs_rombanking_mbcs.html#autotoc_md63":[0,8,1,7],
-"docs_rombanking_mbcs.html#autotoc_md64":[0,8,1,8],
-"docs_rombanking_mbcs.html#autotoc_md65":[0,8,1,9],
-"docs_rombanking_mbcs.html#autotoc_md66":[0,8,2],
-"docs_rombanking_mbcs.html#autotoc_md67":[0,8,3],
-"docs_rombanking_mbcs.html#autotoc_md68":[0,8,4],
-"docs_rombanking_mbcs.html#autotoc_md69":[0,8,4,0],
-"docs_rombanking_mbcs.html#autotoc_md70":[0,8,5],
+"docs_rombanking_mbcs.html#autotoc_md53":[0,8,0],
+"docs_rombanking_mbcs.html#autotoc_md54":[0,8,0,0],
+"docs_rombanking_mbcs.html#autotoc_md55":[0,8,0,1],
+"docs_rombanking_mbcs.html#autotoc_md56":[0,8,1],
+"docs_rombanking_mbcs.html#autotoc_md57":[0,8,1,0],
+"docs_rombanking_mbcs.html#autotoc_md58":[0,8,1,1],
+"docs_rombanking_mbcs.html#autotoc_md59":[0,8,1,2],
+"docs_rombanking_mbcs.html#autotoc_md60":[0,8,1,3],
+"docs_rombanking_mbcs.html#autotoc_md61":[0,8,1,4],
+"docs_rombanking_mbcs.html#autotoc_md62":[0,8,1,5],
+"docs_rombanking_mbcs.html#autotoc_md63":[0,8,1,6],
+"docs_rombanking_mbcs.html#autotoc_md64":[0,8,1,7],
+"docs_rombanking_mbcs.html#autotoc_md65":[0,8,1,8],
+"docs_rombanking_mbcs.html#autotoc_md66":[0,8,1,9],
+"docs_rombanking_mbcs.html#autotoc_md67":[0,8,2],
+"docs_rombanking_mbcs.html#autotoc_md68":[0,8,3],
+"docs_rombanking_mbcs.html#autotoc_md69":[0,8,4],
+"docs_rombanking_mbcs.html#autotoc_md70":[0,8,4,0],
+"docs_rombanking_mbcs.html#autotoc_md71":[0,8,5],
"docs_toolchain.html":[0,9],
"docs_toolchain.html#Makefiles":[0,9,3,0],
-"docs_toolchain.html#autotoc_md71":[0,9,0],
-"docs_toolchain.html#autotoc_md72":[0,9,1],
-"docs_toolchain.html#autotoc_md73":[0,9,2],
-"docs_toolchain.html#autotoc_md74":[0,9,3],
-"docs_toolchain.html#autotoc_md75":[0,9,4],
-"docs_toolchain.html#autotoc_md76":[0,9,4,0],
-"docs_toolchain.html#autotoc_md77":[0,9,4,1],
-"docs_toolchain.html#autotoc_md78":[0,9,4,2],
-"docs_toolchain.html#autotoc_md79":[0,9,4,3],
-"docs_toolchain.html#autotoc_md80":[0,9,4,4],
-"docs_toolchain.html#autotoc_md81":[0,9,4,5],
-"docs_toolchain.html#autotoc_md82":[0,9,4,6],
-"docs_toolchain.html#autotoc_md83":[0,9,5],
-"docs_toolchain.html#autotoc_md84":[0,9,5,0],
-"docs_toolchain.html#autotoc_md85":[0,9,5,1],
-"docs_toolchain_settings.html":[0,14],
-"docs_toolchain_settings.html#autotoc_md143":[0,14,0],
-"docs_toolchain_settings.html#autotoc_md144":[0,14,1],
-"docs_toolchain_settings.html#autotoc_md145":[0,14,2],
-"docs_toolchain_settings.html#autotoc_md146":[0,14,3]
+"docs_toolchain.html#autotoc_md72":[0,9,0],
+"docs_toolchain.html#autotoc_md73":[0,9,1],
+"docs_toolchain.html#autotoc_md74":[0,9,2],
+"docs_toolchain.html#autotoc_md75":[0,9,3],
+"docs_toolchain.html#autotoc_md76":[0,9,4],
+"docs_toolchain.html#autotoc_md77":[0,9,4,0],
+"docs_toolchain.html#autotoc_md78":[0,9,4,1],
+"docs_toolchain.html#autotoc_md79":[0,9,4,2],
+"docs_toolchain.html#autotoc_md80":[0,9,4,3],
+"docs_toolchain.html#autotoc_md81":[0,9,4,4],
+"docs_toolchain.html#autotoc_md82":[0,9,4,5],
+"docs_toolchain.html#autotoc_md83":[0,9,4,6],
+"docs_toolchain.html#autotoc_md84":[0,9,5],
+"docs_toolchain.html#autotoc_md85":[0,9,5,0],
+"docs_toolchain.html#autotoc_md86":[0,9,5,1],
+"docs_toolchain.html#autotoc_md87":[0,9,5,1,0],
+"docs_toolchain_settings.html":[0,14]
};
diff --git a/docs/api/navtreeindex1.js b/docs/api/navtreeindex1.js
index 1c907445..4144699d 100644
--- a/docs/api/navtreeindex1.js
+++ b/docs/api/navtreeindex1.js
@@ -1,25 +1,29 @@
var NAVTREEINDEX1 =
{
-"docs_toolchain_settings.html#autotoc_md147":[0,14,4],
-"docs_toolchain_settings.html#autotoc_md148":[0,14,5],
-"docs_toolchain_settings.html#autotoc_md149":[0,14,6],
-"docs_toolchain_settings.html#autotoc_md150":[0,14,7],
-"docs_toolchain_settings.html#autotoc_md151":[0,14,8],
+"docs_toolchain_settings.html#autotoc_md148":[0,14,0],
+"docs_toolchain_settings.html#autotoc_md149":[0,14,1],
+"docs_toolchain_settings.html#autotoc_md150":[0,14,2],
+"docs_toolchain_settings.html#autotoc_md151":[0,14,3],
+"docs_toolchain_settings.html#autotoc_md152":[0,14,4],
+"docs_toolchain_settings.html#autotoc_md153":[0,14,5],
+"docs_toolchain_settings.html#autotoc_md154":[0,14,6],
+"docs_toolchain_settings.html#autotoc_md155":[0,14,7],
+"docs_toolchain_settings.html#autotoc_md156":[0,14,8],
"docs_using_gbdk.html":[0,6],
-"docs_using_gbdk.html#autotoc_md21":[0,6,0],
-"docs_using_gbdk.html#autotoc_md22":[0,6,0,0],
-"docs_using_gbdk.html#autotoc_md23":[0,6,0,1],
-"docs_using_gbdk.html#autotoc_md24":[0,6,0,2],
-"docs_using_gbdk.html#autotoc_md25":[0,6,1],
-"docs_using_gbdk.html#autotoc_md26":[0,6,1,0],
-"docs_using_gbdk.html#autotoc_md27":[0,6,1,1],
-"docs_using_gbdk.html#autotoc_md28":[0,6,1,2],
-"docs_using_gbdk.html#autotoc_md29":[0,6,2],
-"docs_using_gbdk.html#autotoc_md30":[0,6,3],
-"docs_using_gbdk.html#autotoc_md31":[0,6,3,0],
-"docs_using_gbdk.html#autotoc_md32":[0,6,3,1],
-"docs_using_gbdk.html#autotoc_md33":[0,6,4],
-"docs_using_gbdk.html#autotoc_md34":[0,6,4,0],
+"docs_using_gbdk.html#autotoc_md22":[0,6,0],
+"docs_using_gbdk.html#autotoc_md23":[0,6,0,0],
+"docs_using_gbdk.html#autotoc_md24":[0,6,0,1],
+"docs_using_gbdk.html#autotoc_md25":[0,6,0,2],
+"docs_using_gbdk.html#autotoc_md26":[0,6,1],
+"docs_using_gbdk.html#autotoc_md27":[0,6,1,0],
+"docs_using_gbdk.html#autotoc_md28":[0,6,1,1],
+"docs_using_gbdk.html#autotoc_md29":[0,6,1,2],
+"docs_using_gbdk.html#autotoc_md30":[0,6,2],
+"docs_using_gbdk.html#autotoc_md31":[0,6,3],
+"docs_using_gbdk.html#autotoc_md32":[0,6,3,0],
+"docs_using_gbdk.html#autotoc_md33":[0,6,3,1],
+"docs_using_gbdk.html#autotoc_md34":[0,6,4],
+"docs_using_gbdk.html#autotoc_md35":[0,6,4,0],
"drawing_8h.html":[4,0,2,4],
"drawing_8h.html#a08cbc66092284f7da94279f986a0aae9":[4,0,2,4,13],
"drawing_8h.html#a0fdc56b95bb27e97685c71639dd96209":[4,0,2,4,19],
@@ -85,7 +89,7 @@ var NAVTREEINDEX1 =
"gb_8h.html#a04382de20738146fe873ddfb0585052b":[4,0,2,7,14],
"gb_8h.html#a05ca817ab32f6da612c3ae26db5abf02":[4,0,2,7,8],
"gb_8h.html#a07d12377d67cebb9aafc0622b2054f95":[4,0,2,7,129],
-"gb_8h.html#a0a3d95ad0ab8ad213016101d2e9c3d3e":[4,0,2,7,146],
+"gb_8h.html#a0a3d95ad0ab8ad213016101d2e9c3d3e":[4,0,2,7,147],
"gb_8h.html#a0c689c5a814f1c347c4d98f28ed6c7d6":[4,0,2,7,42],
"gb_8h.html#a115eb30ec86f6af039a27918ffe4cf8c":[4,0,2,7,73],
"gb_8h.html#a1174ffce8b86b8df15c1704284fde687":[4,0,2,7,109],
@@ -94,16 +98,16 @@ var NAVTREEINDEX1 =
"gb_8h.html#a18857adb60025a986dbb44ee289b7a7c":[4,0,2,7,66],
"gb_8h.html#a19558f5bbc9fea767f945001ae9cd13f":[4,0,2,7,38],
"gb_8h.html#a1ad25695f4885f15325a82ec935e8579":[4,0,2,7,65],
-"gb_8h.html#a1af6b32a1760e56fad768352db7c4530":[4,0,2,7,134],
-"gb_8h.html#a1bfd48083278d723d0c49f487720cdd0":[4,0,2,7,135],
+"gb_8h.html#a1af6b32a1760e56fad768352db7c4530":[4,0,2,7,135],
+"gb_8h.html#a1bfd48083278d723d0c49f487720cdd0":[4,0,2,7,136],
"gb_8h.html#a1db30aa7479be2276312f3c981553906":[4,0,2,7,84],
"gb_8h.html#a20895d53fe9caacb08ce8b071d57ce53":[4,0,2,7,60],
"gb_8h.html#a2412b9f97cb59acfcb2383eb9f204ddf":[4,0,2,7,68],
"gb_8h.html#a255decf12ae0b61bd5811c9ed74e7ce5":[4,0,2,7,102],
"gb_8h.html#a268cc6c704e16f3fa02dd1cf0e17070a":[4,0,2,7,34],
-"gb_8h.html#a29d93722542506d0acb9b23c85ff1c5e":[4,0,2,7,141],
+"gb_8h.html#a29d93722542506d0acb9b23c85ff1c5e":[4,0,2,7,142],
"gb_8h.html#a2a236e483749590877d9207e9430e6ce":[4,0,2,7,97],
-"gb_8h.html#a2b4665e62849b60b579803b076661fe4":[4,0,2,7,131],
+"gb_8h.html#a2b4665e62849b60b579803b076661fe4":[4,0,2,7,132],
"gb_8h.html#a2ca7720b9a5da9b2173e1f74dba85541":[4,0,2,7,20],
"gb_8h.html#a2ed77943cb162dc597a8813d6f0f4a98":[4,0,2,7,112],
"gb_8h.html#a2f00009081050122c11e6625ecaf0584":[4,0,2,7,104],
@@ -111,11 +115,11 @@ var NAVTREEINDEX1 =
"gb_8h.html#a2faff6aef9e272b15a1912a4f911e385":[4,0,2,7,114],
"gb_8h.html#a3044331abf61612eb333b6f409f5d571":[4,0,2,7,96],
"gb_8h.html#a31af766e3b598eb7a6b63f55a4988e7a":[4,0,2,7,6],
-"gb_8h.html#a320fd91d5aa12ba9d1435ab908420998":[4,0,2,7,138],
+"gb_8h.html#a320fd91d5aa12ba9d1435ab908420998":[4,0,2,7,139],
"gb_8h.html#a326a27330c5f711fcf0b5448cfa07bda":[4,0,2,7,127],
"gb_8h.html#a34d6500215984e8f9a986523a2f2dadd":[4,0,2,7,78],
"gb_8h.html#a35b5f3f6ba20daff6af91876d2ccc2b0":[4,0,2,7,93],
-"gb_8h.html#a3619f9cb1e3c92238a033ead79a0c551":[4,0,2,7,148],
+"gb_8h.html#a3619f9cb1e3c92238a033ead79a0c551":[4,0,2,7,149],
"gb_8h.html#a361d5055a7ae880fc1c9d6e0d1164fd6":[4,0,2,7,46],
"gb_8h.html#a38ea3e4dfe02b8eae70df27f39d4a951":[4,0,2,7,39],
"gb_8h.html#a393072c2b36f11306510c69aa6efea0f":[4,0,2,7,81],
@@ -131,10 +135,9 @@ var NAVTREEINDEX1 =
"gb_8h.html#a4a6bb50835ab2e9294bf17ea32a1e4cd":[4,0,2,7,128],
"gb_8h.html#a4b4feb80407d4f1e80579ed932821035":[4,0,2,7,123],
"gb_8h.html#a4bbb9cd6c38b2317de5256d1d889c63b":[4,0,2,7,18],
-"gb_8h.html#a4c2e4adef74067fdbb49005bc73de937":[4,0,2,7,145],
-"gb_8h.html#a4c3d68eb3ff5ec0995541e691a6e8259":[4,0,2,7,130],
+"gb_8h.html#a4c2e4adef74067fdbb49005bc73de937":[4,0,2,7,146],
"gb_8h.html#a4c5db32641410613d785911bafd09ac7":[4,0,2,7,64],
-"gb_8h.html#a4e1e0e72dd773439e333c84dd762a9c3":[4,0,2,7,136],
+"gb_8h.html#a4e1e0e72dd773439e333c84dd762a9c3":[4,0,2,7,137],
"gb_8h.html#a54572cf6791463b6d60623837e0bb5a6":[4,0,2,7,16],
"gb_8h.html#a548f19d30b2ad3edb826d045c7be6bad":[4,0,2,7,126],
"gb_8h.html#a54ffb7990fd37939bbe1a8b1e663e439":[4,0,2,7,121],
@@ -156,15 +159,16 @@ var NAVTREEINDEX1 =
"gb_8h.html#a6cc76ea12ac894c4947f85fa1999117c":[4,0,2,7,69],
"gb_8h.html#a6d25f7c43b1cbbb48b95cda7ab2c3141":[4,0,2,7,52],
"gb_8h.html#a6dffb66ec1b1d9bb380a1af52a601ec5":[4,0,2,7,29],
-"gb_8h.html#a7783f5ed79717411d55f62b8ef3f4592":[4,0,2,7,140],
+"gb_8h.html#a7783f5ed79717411d55f62b8ef3f4592":[4,0,2,7,141],
"gb_8h.html#a7aa0d057d5eeb3e24e61460056750d05":[4,0,2,7,115],
-"gb_8h.html#a7b662ae4d83f9837bacb9fd580673054":[4,0,2,7,149],
+"gb_8h.html#a7b662ae4d83f9837bacb9fd580673054":[4,0,2,7,150],
"gb_8h.html#a7e0cdfd6b9a2ae1b7f30384f132d8687":[4,0,2,7,119],
"gb_8h.html#a81654fb8ed020754dfaf20e4a98a7784":[4,0,2,7,80],
"gb_8h.html#a81f1a67549d3a26dcca22367141eb21b":[4,0,2,7,72],
-"gb_8h.html#a83d08d752bb2f2406084a9afa7988b98":[4,0,2,7,139],
-"gb_8h.html#a8520286e663067a3f6869db4ff1b74c3":[4,0,2,7,132],
-"gb_8h.html#a8cf949b6e2654b6a8bd9e403a49ee4b3":[4,0,2,7,133],
+"gb_8h.html#a83d08d752bb2f2406084a9afa7988b98":[4,0,2,7,140],
+"gb_8h.html#a8520286e663067a3f6869db4ff1b74c3":[4,0,2,7,133],
+"gb_8h.html#a85710bd8f8b011e052477c90bc54f780":[4,0,2,7,130],
+"gb_8h.html#a8cf949b6e2654b6a8bd9e403a49ee4b3":[4,0,2,7,134],
"gb_8h.html#a8e3f36aa68ac036695816757f2a1322c":[4,0,2,7,51],
"gb_8h.html#a8e5ea12b86bdfc812448c2f5c4336c03":[4,0,2,7,62],
"gb_8h.html#a908826e7180f94a5988ceb8633313a2e":[4,0,2,7,13],
@@ -175,7 +179,8 @@ var NAVTREEINDEX1 =
"gb_8h.html#a9508f919d9482d1d51534ccac212454d":[4,0,2,7,61],
"gb_8h.html#a95789b39dedda60b25e5ad4ef5cd778c":[4,0,2,7,107],
"gb_8h.html#a97039b6477537c37f83e74561de78c1b":[4,0,2,7,85],
-"gb_8h.html#a98b848953a95ce2fff6fda643575d74a":[4,0,2,7,142],
+"gb_8h.html#a98b848953a95ce2fff6fda643575d74a":[4,0,2,7,143],
+"gb_8h.html#a9fb6ed396416150a46d47ed12fc8b251":[4,0,2,7,131],
"gb_8h.html#aa5d64e386a00b373f22ffdc5a152c7ba":[4,0,2,7,43],
"gb_8h.html#aa7261f0405b5e0b888c344f5ee6a698e":[4,0,2,7,117],
"gb_8h.html#aa7c0f923acfd198ec970bb2e96110f2c":[4,0,2,7,98],
@@ -187,7 +192,7 @@ var NAVTREEINDEX1 =
"gb_8h.html#ab416a9d96d1582490828f4bac78a8b5b":[4,0,2,7,4],
"gb_8h.html#ab69a3f7cd2c6b5eb4f518aefee099007":[4,0,2,7,35],
"gb_8h.html#ab769c6e20778298be8bc3321476ceb53":[4,0,2,7,3],
-"gb_8h.html#aba4fa6f13f80e53daeb0caa7b1ec8afb":[4,0,2,7,143],
+"gb_8h.html#aba4fa6f13f80e53daeb0caa7b1ec8afb":[4,0,2,7,144],
"gb_8h.html#abda5458df92e4c57b1ca96ab16a17e13":[4,0,2,7,101],
"gb_8h.html#abf6f5422a3c98cf440736f1491e1aa4c":[4,0,2,7,125],
"gb_8h.html#ac269dc3e0ff2d5dc7c0c0fd90e9b1608":[4,0,2,7,75],
@@ -200,7 +205,7 @@ var NAVTREEINDEX1 =
"gb_8h.html#ad8d2df514d3b5d3d08db3671f0d5af14":[4,0,2,7,86],
"gb_8h.html#ad90564458646c5646b3880b93db3443e":[4,0,2,7,23],
"gb_8h.html#ada0cc738d27aad251151e69cb8d250e1":[4,0,2,7,25],
-"gb_8h.html#adbc4b02721d3ab48caf53e0228fd3eb5":[4,0,2,7,137],
+"gb_8h.html#adbc4b02721d3ab48caf53e0228fd3eb5":[4,0,2,7,138],
"gb_8h.html#adf6ef63efc4bb4950428015c623bca14":[4,0,2,7,89],
"gb_8h.html#ae032c5c544196e37ec0432f6cfad7904":[4,0,2,7,7],
"gb_8h.html#ae189e98d0ef9263c37869ce1ff3710a5":[4,0,2,7,26],
@@ -216,7 +221,7 @@ var NAVTREEINDEX1 =
"gb_8h.html#aea162a4e034d163bfd4f32a10cce4ba4":[4,0,2,7,122],
"gb_8h.html#aebd45a328b90ddda0154d5fb41b8bbc1":[4,0,2,7,111],
"gb_8h.html#aed072359b42854fffae4cd29c1f34ea1":[4,0,2,7,90],
-"gb_8h.html#aeda4515a31485c9688c4601ac5ce2d79":[4,0,2,7,147],
+"gb_8h.html#aeda4515a31485c9688c4601ac5ce2d79":[4,0,2,7,148],
"gb_8h.html#aedb6e32c42d4b1d25ad11adccd7100c3":[4,0,2,7,54],
"gb_8h.html#aee03efddee0f2f6fbcaec789301aaa9b":[4,0,2,7,36],
"gb_8h.html#aee435a3a0dde3dbd7b6112dbb456cde8":[4,0,2,7,33],
@@ -224,7 +229,7 @@ var NAVTREEINDEX1 =
"gb_8h.html#af3d632ba2d7cef6619df5dfea8730909":[4,0,2,7,28],
"gb_8h.html#af461d38864cfc5720f0d9f4d1113cf07":[4,0,2,7,74],
"gb_8h.html#af4a728ba51de424a0bed286ac65d3242":[4,0,2,7,88],
-"gb_8h.html#af79b920bcb642bba2e652874c4f7eeff":[4,0,2,7,144],
+"gb_8h.html#af79b920bcb642bba2e652874c4f7eeff":[4,0,2,7,145],
"gb_8h.html#af91d252f07f4764996154820f970c101":[4,0,2,7,57],
"gb_8h.html#afac2db0151b09291638f7a592a3d0e94":[4,0,2,7,92],
"gb_8h.html#afd45c10f4566ca284cdab4044c5645b3":[4,0,2,7,91],
@@ -244,10 +249,5 @@ var NAVTREEINDEX1 =
"globals_b.html":[4,1,0,2],
"globals_c.html":[4,1,0,3],
"globals_d.html":[4,1,0,4],
-"globals_defs.html":[4,1,4],
-"globals_defs.html":[4,1,4,0],
-"globals_defs_a.html":[4,1,4,1],
-"globals_defs_b.html":[4,1,4,2],
-"globals_defs_c.html":[4,1,4,3],
-"globals_defs_d.html":[4,1,4,4]
+"globals_defs.html":[4,1,4]
};
diff --git a/docs/api/navtreeindex2.js b/docs/api/navtreeindex2.js
index cae1ff9c..7967aa96 100644
--- a/docs/api/navtreeindex2.js
+++ b/docs/api/navtreeindex2.js
@@ -1,5 +1,10 @@
var NAVTREEINDEX2 =
{
+"globals_defs.html":[4,1,4,0],
+"globals_defs_a.html":[4,1,4,1],
+"globals_defs_b.html":[4,1,4,2],
+"globals_defs_c.html":[4,1,4,3],
+"globals_defs_d.html":[4,1,4,4],
"globals_defs_e.html":[4,1,4,5],
"globals_defs_f.html":[4,1,4,6],
"globals_defs_g.html":[4,1,4,7],
@@ -112,10 +117,10 @@ var NAVTREEINDEX2 =
"hardware_8h_source.html":[4,0,2,9],
"index.html":[],
"index.html":[0],
-"index.html#autotoc_md152":[0,0],
-"index.html#autotoc_md153":[0,1],
-"index.html#autotoc_md154":[0,2],
-"index.html#autotoc_md155":[0,3],
+"index.html#autotoc_md157":[0,0],
+"index.html#autotoc_md158":[0,1],
+"index.html#autotoc_md159":[0,2],
+"index.html#autotoc_md160":[0,3],
"limits_8h.html":[4,0,9],
"limits_8h.html#a174a3b1d61499b676a2ad2efc8f224c5":[4,0,9,17],
"limits_8h.html#a1f758438cb1c7bcf55da2431f5e319e6":[4,0,9,8],
@@ -244,10 +249,5 @@ var NAVTREEINDEX2 =
"stdint_8h.html#a022b9b0a3564d786244a4631847c37a3":[4,0,15,31],
"stdint_8h.html#a051084d5ebcabf282d9ca9bb2b891a78":[4,0,15,44],
"stdint_8h.html#a0fbe4a4f8dd857ee04923a901f27465f":[4,0,15,68],
-"stdint_8h.html#a169460a4e2a79138723d68d99372d958":[4,0,15,19],
-"stdint_8h.html#a181807730d4a375f848ba139813ce04f":[4,0,15,5],
-"stdint_8h.html#a1b955596bdc3e4b6ef339f16e468d55f":[4,0,15,48],
-"stdint_8h.html#a1bae72af13d35bac8eb9424db7e27bf1":[4,0,15,60],
-"stdint_8h.html#a1c0bb513299dbdffa1cce4277593b3ce":[4,0,15,61],
-"stdint_8h.html#a1f5fe9445d0ad0bee21bab1de4cc3e58":[4,0,15,36]
+"stdint_8h.html#a169460a4e2a79138723d68d99372d958":[4,0,15,19]
};
diff --git a/docs/api/navtreeindex3.js b/docs/api/navtreeindex3.js
index 4effeb97..5fa9aa49 100644
--- a/docs/api/navtreeindex3.js
+++ b/docs/api/navtreeindex3.js
@@ -1,5 +1,10 @@
var NAVTREEINDEX3 =
{
+"stdint_8h.html#a181807730d4a375f848ba139813ce04f":[4,0,15,5],
+"stdint_8h.html#a1b955596bdc3e4b6ef339f16e468d55f":[4,0,15,48],
+"stdint_8h.html#a1bae72af13d35bac8eb9424db7e27bf1":[4,0,15,60],
+"stdint_8h.html#a1c0bb513299dbdffa1cce4277593b3ce":[4,0,15,61],
+"stdint_8h.html#a1f5fe9445d0ad0bee21bab1de4cc3e58":[4,0,15,36],
"stdint_8h.html#a1f91bfd5820c2f27af3d260fc75813e1":[4,0,15,10],
"stdint_8h.html#a21402dabb3274e5161a34a27ccff50db":[4,0,15,64],
"stdint_8h.html#a21649560c6e8dce6de2fb6a95f1bf802":[4,0,15,71],
diff --git a/docs/api/search/all_16.js b/docs/api/search/all_16.js
index a077fbd6..b7820107 100644
--- a/docs/api/search/all_16.js
+++ b/docs/api/search/all_16.js
@@ -36,91 +36,92 @@ var searchData=
['set_5fsprite_5fpalette_5fentry_464',['set_sprite_palette_entry',['../cgb_8h.html#a64f00b81348b63f60bdd2cb7649b09eb',1,'cgb.h']]],
['set_5fsprite_5fprop_465',['set_sprite_prop',['../gb_8h.html#aea162a4e034d163bfd4f32a10cce4ba4',1,'gb.h']]],
['set_5fsprite_5ftile_466',['set_sprite_tile',['../gb_8h.html#aae19a6086cc17811759b01a6e0a3cda4',1,'gb.h']]],
- ['set_5ftiles_467',['set_tiles',['../gb_8h.html#a07d12377d67cebb9aafc0622b2054f95',1,'gb.h']]],
- ['set_5fvram_5fbyte_468',['set_vram_byte',['../gb_8h.html#afac2db0151b09291638f7a592a3d0e94',1,'gb.h']]],
- ['set_5fwin_5f1bit_5fdata_469',['set_win_1bit_data',['../gb_8h.html#a95789b39dedda60b25e5ad4ef5cd778c',1,'gb.h']]],
- ['set_5fwin_5fdata_470',['set_win_data',['../gb_8h.html#ae7851349abd442026b49d499d6e43d79',1,'gb.h']]],
- ['set_5fwin_5fsubmap_471',['set_win_submap',['../gb_8h.html#a5f7178a952abc675a743686745a90892',1,'gb.h']]],
- ['set_5fwin_5ftile_5fxy_472',['set_win_tile_xy',['../gb_8h.html#a2ed77943cb162dc597a8813d6f0f4a98',1,'gb.h']]],
- ['set_5fwin_5ftiles_473',['set_win_tiles',['../gb_8h.html#a1174ffce8b86b8df15c1704284fde687',1,'gb.h']]],
- ['setchar_474',['setchar',['../console_8h.html#a39cc3b71f4262838512c8589e755bbd3',1,'console.h']]],
- ['setjmp_475',['setjmp',['../setjmp_8h.html#a27d1a255c7e0d69afec2367bb85b60b0',1,'setjmp.h']]],
- ['setjmp_2eh_476',['setjmp.h',['../setjmp_8h.html',1,'']]],
- ['sfont_5fhandle_477',['sfont_handle',['../structsfont__handle.html',1,'']]],
- ['sgb_2eh_478',['sgb.h',['../sgb_8h.html',1,'']]],
- ['sgb_5fatrc_5fen_479',['SGB_ATRC_EN',['../sgb_8h.html#a3d81b1e455d60d760ee58e2685953775',1,'sgb.h']]],
- ['sgb_5fattr_5fblk_480',['SGB_ATTR_BLK',['../sgb_8h.html#a6437bd5982922fffdbc7c5d8c643e357',1,'sgb.h']]],
- ['sgb_5fattr_5fchr_481',['SGB_ATTR_CHR',['../sgb_8h.html#a41981a213b67bdc45bf8ed78f07e7bba',1,'sgb.h']]],
- ['sgb_5fattr_5fdiv_482',['SGB_ATTR_DIV',['../sgb_8h.html#adcb3f50616813637283f88bfd4d53e22',1,'sgb.h']]],
- ['sgb_5fattr_5flin_483',['SGB_ATTR_LIN',['../sgb_8h.html#ade5ba9723a9964e55cff72108149037a',1,'sgb.h']]],
- ['sgb_5fattr_5fset_484',['SGB_ATTR_SET',['../sgb_8h.html#abf8d94c42e97e1ce640340657df70640',1,'sgb.h']]],
- ['sgb_5fattr_5ftrn_485',['SGB_ATTR_TRN',['../sgb_8h.html#a1762d2df2599cf864400bac4934a5d61',1,'sgb.h']]],
- ['sgb_5fcheck_486',['sgb_check',['../sgb_8h.html#af8c1bb504e5e626e7dce578ee43c805b',1,'sgb.h']]],
- ['sgb_5fchr_5ftrn_487',['SGB_CHR_TRN',['../sgb_8h.html#af4d8b611dfdda33039038375ee95f424',1,'sgb.h']]],
- ['sgb_5fdata_5fsnd_488',['SGB_DATA_SND',['../sgb_8h.html#ae4fe10a0c9eca38d126f3a8701e3c9a2',1,'sgb.h']]],
- ['sgb_5fdata_5ftrn_489',['SGB_DATA_TRN',['../sgb_8h.html#a862a450451cfccf138311089b85292fc',1,'sgb.h']]],
- ['sgb_5ficon_5fen_490',['SGB_ICON_EN',['../sgb_8h.html#a46440df1df1597852a286d56c1a68a48',1,'sgb.h']]],
- ['sgb_5fjump_491',['SGB_JUMP',['../sgb_8h.html#aac4217b88053614f70af5b1f32e72870',1,'sgb.h']]],
- ['sgb_5fmask_5fen_492',['SGB_MASK_EN',['../sgb_8h.html#a20477d5772564b63de2d151e062dd5a7',1,'sgb.h']]],
- ['sgb_5fmlt_5freq_493',['SGB_MLT_REQ',['../sgb_8h.html#a70aad9e5786ca8a4753c47583e88f8a2',1,'sgb.h']]],
- ['sgb_5fobj_5ftrn_494',['SGB_OBJ_TRN',['../sgb_8h.html#a3b76bf1e9ac81da97c533fa3ab12096c',1,'sgb.h']]],
- ['sgb_5fpal_5f01_495',['SGB_PAL_01',['../sgb_8h.html#a70bdb512d109fbcaeb95efa32e9dcaf5',1,'sgb.h']]],
- ['sgb_5fpal_5f03_496',['SGB_PAL_03',['../sgb_8h.html#af9e1ca804555fad619db3f38b62a49e8',1,'sgb.h']]],
- ['sgb_5fpal_5f12_497',['SGB_PAL_12',['../sgb_8h.html#a8d633d52d4a7adfaef516953d5e8552a',1,'sgb.h']]],
- ['sgb_5fpal_5f23_498',['SGB_PAL_23',['../sgb_8h.html#acaa2f1ac9949189896582fc5ad0823b1',1,'sgb.h']]],
- ['sgb_5fpal_5fset_499',['SGB_PAL_SET',['../sgb_8h.html#ad9023ed1d8dd4a2eebc55a376207f3d2',1,'sgb.h']]],
- ['sgb_5fpal_5ftrn_500',['SGB_PAL_TRN',['../sgb_8h.html#ac490ce8566f869727e8b00fabb1c9fc6',1,'sgb.h']]],
- ['sgb_5fpct_5ftrn_501',['SGB_PCT_TRN',['../sgb_8h.html#ac0bf9d5dc54d711fd14f44bf58eaa5db',1,'sgb.h']]],
- ['sgb_5fsou_5ftrn_502',['SGB_SOU_TRN',['../sgb_8h.html#a82a976ea6a32ae0078a27e3c06143bcf',1,'sgb.h']]],
- ['sgb_5fsound_503',['SGB_SOUND',['../sgb_8h.html#a42e0fbc58e65874e0a76d7f33a322ce8',1,'sgb.h']]],
- ['sgb_5ftest_5fen_504',['SGB_TEST_EN',['../sgb_8h.html#a8e644a43af63932283e9c78a472881dc',1,'sgb.h']]],
- ['sgb_5ftransfer_505',['sgb_transfer',['../sgb_8h.html#aefdcea25c8e4b979dd9ff6f9853a5dc5',1,'sgb.h']]],
- ['shadow_5foam_506',['shadow_OAM',['../gb_8h.html#a3619f9cb1e3c92238a033ead79a0c551',1,'gb.h']]],
- ['show_5fbkg_507',['SHOW_BKG',['../gb_8h.html#a8e3f36aa68ac036695816757f2a1322c',1,'gb.h']]],
- ['show_5fsprites_508',['SHOW_SPRITES',['../gb_8h.html#a495bc9f405f916f02ad5d97e6e730134',1,'gb.h']]],
- ['show_5fwin_509',['SHOW_WIN',['../gb_8h.html#ab19da2ab719bb8897bc0843a84af28f8',1,'gb.h']]],
- ['shrt_5fmax_510',['SHRT_MAX',['../limits_8h.html#a1f758438cb1c7bcf55da2431f5e319e6',1,'limits.h']]],
- ['shrt_5fmin_511',['SHRT_MIN',['../limits_8h.html#ae59de266aceffa1c258ac13f45fe0d18',1,'limits.h']]],
- ['sig_5fatomic_5fmax_512',['SIG_ATOMIC_MAX',['../stdint_8h.html#a1f5fe9445d0ad0bee21bab1de4cc3e58',1,'stdint.h']]],
- ['sig_5fatomic_5fmin_513',['SIG_ATOMIC_MIN',['../stdint_8h.html#a21e605b9ac3a03b6de93cdf5a69e129f',1,'stdint.h']]],
- ['signed_514',['SIGNED',['../drawing_8h.html#a4dec4d9b2bace4f5bc6e6337f4086837',1,'drawing.h']]],
- ['sio_5fiflag_515',['SIO_IFLAG',['../gb_8h.html#ad90564458646c5646b3880b93db3443e',1,'gb.h']]],
- ['size_516',['size',['../structsmalloc__hunk.html#a8b15039895492addf48d26ff38ec95ab',1,'smalloc_hunk']]],
- ['size_5fmax_517',['SIZE_MAX',['../stdint_8h.html#a3c75bb398badb69c7577b21486f9963f',1,'stdint.h']]],
- ['size_5ft_518',['size_t',['../asm_2gbz80_2types_8h.html#a7619b847aeded8a6d14cbfa212b2cdfb',1,'size_t(): types.h'],['../stddef_8h.html#a7c94ea6f8948649f8d181ae55911eeaf',1,'size_t(): stddef.h']]],
- ['smalloc_5fhunk_519',['smalloc_hunk',['../structsmalloc__hunk.html',1,'']]],
- ['solid_520',['SOLID',['../drawing_8h.html#aa8abfd58ea514228abd69d8f6330e91d',1,'drawing.h']]],
- ['sp_5fsize_521',['SP_SIZE',['../setjmp_8h.html#aebec2c4d6fc67c86fbb297bd79efb27c',1,'setjmp.h']]],
- ['sprintf_522',['sprintf',['../stdio_8h.html#a6c8d9c5b5b6a760b5b2787f0f96b690e',1,'stdio.h']]],
- ['sprites_5f8x16_523',['SPRITES_8x16',['../gb_8h.html#af91d252f07f4764996154820f970c101',1,'gb.h']]],
- ['sprites_5f8x8_524',['SPRITES_8x8',['../gb_8h.html#aa87bec0d134136fdb727f52cb773b792',1,'gb.h']]],
- ['spx_5fsize_525',['SPX_SIZE',['../setjmp_8h.html#ad27470e8d39238686f96b46d5b9deb40',1,'setjmp.h']]],
- ['stat_5freg_526',['STAT_REG',['../hardware_8h.html#ad40ebf3b29add46cdd310a7e0802bc6b',1,'hardware.h']]],
- ['status_527',['status',['../structsmalloc__hunk.html#a204a0318f8d6d87cf68be18463318812',1,'smalloc_hunk']]],
- ['stdarg_2eh_528',['stdarg.h',['../asm_2gbz80_2stdarg_8h.html',1,'(Global Namespace)'],['../stdarg_8h.html',1,'(Global Namespace)']]],
- ['stdatomic_2eh_529',['stdatomic.h',['../stdatomic_8h.html',1,'']]],
- ['stdbool_2eh_530',['stdbool.h',['../stdbool_8h.html',1,'']]],
- ['stddef_2eh_531',['stddef.h',['../stddef_8h.html',1,'']]],
- ['stdint_2eh_532',['stdint.h',['../stdint_8h.html',1,'']]],
- ['stdio_2eh_533',['stdio.h',['../stdio_8h.html',1,'']]],
- ['stdlib_2eh_534',['stdlib.h',['../stdlib_8h.html',1,'']]],
- ['stdnoreturn_2eh_535',['stdnoreturn.h',['../stdnoreturn_8h.html',1,'']]],
- ['strcat_536',['strcat',['../string_8h.html#a13c88f5a8475fd7de5d81553cb29724a',1,'string.h']]],
- ['strcmp_537',['strcmp',['../string_8h.html#aa89031476b4f6ee827f9163d09d68043',1,'string.h']]],
- ['strcpy_538',['strcpy',['../string_8h.html#ad724f30223364304479b0fc714435e78',1,'string.h']]],
- ['string_2eh_539',['string.h',['../string_8h.html',1,'']]],
- ['strlen_540',['strlen',['../string_8h.html#a8fd73083ebdcca16ad810cd6041466f2',1,'string.h']]],
- ['strncat_541',['strncat',['../string_8h.html#a168580a0ddcb7fe754a711309966c99d',1,'string.h']]],
- ['strncmp_542',['strncmp',['../string_8h.html#a861dba2d93de82f087707bb795f5c602',1,'string.h']]],
- ['strncpy_543',['strncpy',['../string_8h.html#a796a9459c4f362e51c00307044c40ed5',1,'string.h']]],
- ['svbk_5freg_544',['SVBK_REG',['../hardware_8h.html#aa128832cecec4e609517fe3daf044e5e',1,'hardware.h']]],
- ['switch_5f16_5f8_5fmode_5fmbc1_545',['SWITCH_16_8_MODE_MBC1',['../gb_8h.html#a0c689c5a814f1c347c4d98f28ed6c7d6',1,'gb.h']]],
- ['switch_5f4_5f32_5fmode_5fmbc1_546',['SWITCH_4_32_MODE_MBC1',['../gb_8h.html#aa5d64e386a00b373f22ffdc5a152c7ba',1,'gb.h']]],
- ['switch_5fdata_547',['switch_data',['../drawing_8h.html#ad252f1952b09c3ec66bf2759b4e2dea9',1,'drawing.h']]],
- ['switch_5fram_5fmbc1_548',['SWITCH_RAM_MBC1',['../gb_8h.html#a38ea3e4dfe02b8eae70df27f39d4a951',1,'gb.h']]],
- ['switch_5fram_5fmbc5_549',['SWITCH_RAM_MBC5',['../gb_8h.html#a361d5055a7ae880fc1c9d6e0d1164fd6',1,'gb.h']]],
- ['switch_5from_5fmbc1_550',['SWITCH_ROM_MBC1',['../gb_8h.html#a19558f5bbc9fea767f945001ae9cd13f',1,'gb.h']]],
- ['switch_5from_5fmbc5_551',['SWITCH_ROM_MBC5',['../gb_8h.html#a92d040284342702026eb19dab59b586e',1,'gb.h']]],
- ['switch_5from_5fmbc5_5f8m_552',['SWITCH_ROM_MBC5_8M',['../gb_8h.html#a6c15ebc660abd3a978137493ab63ffe9',1,'gb.h']]],
- ['sys_5ftime_553',['sys_time',['../gb_8h.html#a320fd91d5aa12ba9d1435ab908420998',1,'gb.h']]]
+ ['set_5ftile_5fdata_467',['set_tile_data',['../gb_8h.html#a85710bd8f8b011e052477c90bc54f780',1,'gb.h']]],
+ ['set_5ftiles_468',['set_tiles',['../gb_8h.html#a07d12377d67cebb9aafc0622b2054f95',1,'gb.h']]],
+ ['set_5fvram_5fbyte_469',['set_vram_byte',['../gb_8h.html#afac2db0151b09291638f7a592a3d0e94',1,'gb.h']]],
+ ['set_5fwin_5f1bit_5fdata_470',['set_win_1bit_data',['../gb_8h.html#a95789b39dedda60b25e5ad4ef5cd778c',1,'gb.h']]],
+ ['set_5fwin_5fdata_471',['set_win_data',['../gb_8h.html#ae7851349abd442026b49d499d6e43d79',1,'gb.h']]],
+ ['set_5fwin_5fsubmap_472',['set_win_submap',['../gb_8h.html#a5f7178a952abc675a743686745a90892',1,'gb.h']]],
+ ['set_5fwin_5ftile_5fxy_473',['set_win_tile_xy',['../gb_8h.html#a2ed77943cb162dc597a8813d6f0f4a98',1,'gb.h']]],
+ ['set_5fwin_5ftiles_474',['set_win_tiles',['../gb_8h.html#a1174ffce8b86b8df15c1704284fde687',1,'gb.h']]],
+ ['setchar_475',['setchar',['../console_8h.html#a39cc3b71f4262838512c8589e755bbd3',1,'console.h']]],
+ ['setjmp_476',['setjmp',['../setjmp_8h.html#a27d1a255c7e0d69afec2367bb85b60b0',1,'setjmp.h']]],
+ ['setjmp_2eh_477',['setjmp.h',['../setjmp_8h.html',1,'']]],
+ ['sfont_5fhandle_478',['sfont_handle',['../structsfont__handle.html',1,'']]],
+ ['sgb_2eh_479',['sgb.h',['../sgb_8h.html',1,'']]],
+ ['sgb_5fatrc_5fen_480',['SGB_ATRC_EN',['../sgb_8h.html#a3d81b1e455d60d760ee58e2685953775',1,'sgb.h']]],
+ ['sgb_5fattr_5fblk_481',['SGB_ATTR_BLK',['../sgb_8h.html#a6437bd5982922fffdbc7c5d8c643e357',1,'sgb.h']]],
+ ['sgb_5fattr_5fchr_482',['SGB_ATTR_CHR',['../sgb_8h.html#a41981a213b67bdc45bf8ed78f07e7bba',1,'sgb.h']]],
+ ['sgb_5fattr_5fdiv_483',['SGB_ATTR_DIV',['../sgb_8h.html#adcb3f50616813637283f88bfd4d53e22',1,'sgb.h']]],
+ ['sgb_5fattr_5flin_484',['SGB_ATTR_LIN',['../sgb_8h.html#ade5ba9723a9964e55cff72108149037a',1,'sgb.h']]],
+ ['sgb_5fattr_5fset_485',['SGB_ATTR_SET',['../sgb_8h.html#abf8d94c42e97e1ce640340657df70640',1,'sgb.h']]],
+ ['sgb_5fattr_5ftrn_486',['SGB_ATTR_TRN',['../sgb_8h.html#a1762d2df2599cf864400bac4934a5d61',1,'sgb.h']]],
+ ['sgb_5fcheck_487',['sgb_check',['../sgb_8h.html#af8c1bb504e5e626e7dce578ee43c805b',1,'sgb.h']]],
+ ['sgb_5fchr_5ftrn_488',['SGB_CHR_TRN',['../sgb_8h.html#af4d8b611dfdda33039038375ee95f424',1,'sgb.h']]],
+ ['sgb_5fdata_5fsnd_489',['SGB_DATA_SND',['../sgb_8h.html#ae4fe10a0c9eca38d126f3a8701e3c9a2',1,'sgb.h']]],
+ ['sgb_5fdata_5ftrn_490',['SGB_DATA_TRN',['../sgb_8h.html#a862a450451cfccf138311089b85292fc',1,'sgb.h']]],
+ ['sgb_5ficon_5fen_491',['SGB_ICON_EN',['../sgb_8h.html#a46440df1df1597852a286d56c1a68a48',1,'sgb.h']]],
+ ['sgb_5fjump_492',['SGB_JUMP',['../sgb_8h.html#aac4217b88053614f70af5b1f32e72870',1,'sgb.h']]],
+ ['sgb_5fmask_5fen_493',['SGB_MASK_EN',['../sgb_8h.html#a20477d5772564b63de2d151e062dd5a7',1,'sgb.h']]],
+ ['sgb_5fmlt_5freq_494',['SGB_MLT_REQ',['../sgb_8h.html#a70aad9e5786ca8a4753c47583e88f8a2',1,'sgb.h']]],
+ ['sgb_5fobj_5ftrn_495',['SGB_OBJ_TRN',['../sgb_8h.html#a3b76bf1e9ac81da97c533fa3ab12096c',1,'sgb.h']]],
+ ['sgb_5fpal_5f01_496',['SGB_PAL_01',['../sgb_8h.html#a70bdb512d109fbcaeb95efa32e9dcaf5',1,'sgb.h']]],
+ ['sgb_5fpal_5f03_497',['SGB_PAL_03',['../sgb_8h.html#af9e1ca804555fad619db3f38b62a49e8',1,'sgb.h']]],
+ ['sgb_5fpal_5f12_498',['SGB_PAL_12',['../sgb_8h.html#a8d633d52d4a7adfaef516953d5e8552a',1,'sgb.h']]],
+ ['sgb_5fpal_5f23_499',['SGB_PAL_23',['../sgb_8h.html#acaa2f1ac9949189896582fc5ad0823b1',1,'sgb.h']]],
+ ['sgb_5fpal_5fset_500',['SGB_PAL_SET',['../sgb_8h.html#ad9023ed1d8dd4a2eebc55a376207f3d2',1,'sgb.h']]],
+ ['sgb_5fpal_5ftrn_501',['SGB_PAL_TRN',['../sgb_8h.html#ac490ce8566f869727e8b00fabb1c9fc6',1,'sgb.h']]],
+ ['sgb_5fpct_5ftrn_502',['SGB_PCT_TRN',['../sgb_8h.html#ac0bf9d5dc54d711fd14f44bf58eaa5db',1,'sgb.h']]],
+ ['sgb_5fsou_5ftrn_503',['SGB_SOU_TRN',['../sgb_8h.html#a82a976ea6a32ae0078a27e3c06143bcf',1,'sgb.h']]],
+ ['sgb_5fsound_504',['SGB_SOUND',['../sgb_8h.html#a42e0fbc58e65874e0a76d7f33a322ce8',1,'sgb.h']]],
+ ['sgb_5ftest_5fen_505',['SGB_TEST_EN',['../sgb_8h.html#a8e644a43af63932283e9c78a472881dc',1,'sgb.h']]],
+ ['sgb_5ftransfer_506',['sgb_transfer',['../sgb_8h.html#aefdcea25c8e4b979dd9ff6f9853a5dc5',1,'sgb.h']]],
+ ['shadow_5foam_507',['shadow_OAM',['../gb_8h.html#a3619f9cb1e3c92238a033ead79a0c551',1,'gb.h']]],
+ ['show_5fbkg_508',['SHOW_BKG',['../gb_8h.html#a8e3f36aa68ac036695816757f2a1322c',1,'gb.h']]],
+ ['show_5fsprites_509',['SHOW_SPRITES',['../gb_8h.html#a495bc9f405f916f02ad5d97e6e730134',1,'gb.h']]],
+ ['show_5fwin_510',['SHOW_WIN',['../gb_8h.html#ab19da2ab719bb8897bc0843a84af28f8',1,'gb.h']]],
+ ['shrt_5fmax_511',['SHRT_MAX',['../limits_8h.html#a1f758438cb1c7bcf55da2431f5e319e6',1,'limits.h']]],
+ ['shrt_5fmin_512',['SHRT_MIN',['../limits_8h.html#ae59de266aceffa1c258ac13f45fe0d18',1,'limits.h']]],
+ ['sig_5fatomic_5fmax_513',['SIG_ATOMIC_MAX',['../stdint_8h.html#a1f5fe9445d0ad0bee21bab1de4cc3e58',1,'stdint.h']]],
+ ['sig_5fatomic_5fmin_514',['SIG_ATOMIC_MIN',['../stdint_8h.html#a21e605b9ac3a03b6de93cdf5a69e129f',1,'stdint.h']]],
+ ['signed_515',['SIGNED',['../drawing_8h.html#a4dec4d9b2bace4f5bc6e6337f4086837',1,'drawing.h']]],
+ ['sio_5fiflag_516',['SIO_IFLAG',['../gb_8h.html#ad90564458646c5646b3880b93db3443e',1,'gb.h']]],
+ ['size_517',['size',['../structsmalloc__hunk.html#a8b15039895492addf48d26ff38ec95ab',1,'smalloc_hunk']]],
+ ['size_5fmax_518',['SIZE_MAX',['../stdint_8h.html#a3c75bb398badb69c7577b21486f9963f',1,'stdint.h']]],
+ ['size_5ft_519',['size_t',['../asm_2gbz80_2types_8h.html#a7619b847aeded8a6d14cbfa212b2cdfb',1,'size_t(): types.h'],['../stddef_8h.html#a7c94ea6f8948649f8d181ae55911eeaf',1,'size_t(): stddef.h']]],
+ ['smalloc_5fhunk_520',['smalloc_hunk',['../structsmalloc__hunk.html',1,'']]],
+ ['solid_521',['SOLID',['../drawing_8h.html#aa8abfd58ea514228abd69d8f6330e91d',1,'drawing.h']]],
+ ['sp_5fsize_522',['SP_SIZE',['../setjmp_8h.html#aebec2c4d6fc67c86fbb297bd79efb27c',1,'setjmp.h']]],
+ ['sprintf_523',['sprintf',['../stdio_8h.html#a6c8d9c5b5b6a760b5b2787f0f96b690e',1,'stdio.h']]],
+ ['sprites_5f8x16_524',['SPRITES_8x16',['../gb_8h.html#af91d252f07f4764996154820f970c101',1,'gb.h']]],
+ ['sprites_5f8x8_525',['SPRITES_8x8',['../gb_8h.html#aa87bec0d134136fdb727f52cb773b792',1,'gb.h']]],
+ ['spx_5fsize_526',['SPX_SIZE',['../setjmp_8h.html#ad27470e8d39238686f96b46d5b9deb40',1,'setjmp.h']]],
+ ['stat_5freg_527',['STAT_REG',['../hardware_8h.html#ad40ebf3b29add46cdd310a7e0802bc6b',1,'hardware.h']]],
+ ['status_528',['status',['../structsmalloc__hunk.html#a204a0318f8d6d87cf68be18463318812',1,'smalloc_hunk']]],
+ ['stdarg_2eh_529',['stdarg.h',['../asm_2gbz80_2stdarg_8h.html',1,'(Global Namespace)'],['../stdarg_8h.html',1,'(Global Namespace)']]],
+ ['stdatomic_2eh_530',['stdatomic.h',['../stdatomic_8h.html',1,'']]],
+ ['stdbool_2eh_531',['stdbool.h',['../stdbool_8h.html',1,'']]],
+ ['stddef_2eh_532',['stddef.h',['../stddef_8h.html',1,'']]],
+ ['stdint_2eh_533',['stdint.h',['../stdint_8h.html',1,'']]],
+ ['stdio_2eh_534',['stdio.h',['../stdio_8h.html',1,'']]],
+ ['stdlib_2eh_535',['stdlib.h',['../stdlib_8h.html',1,'']]],
+ ['stdnoreturn_2eh_536',['stdnoreturn.h',['../stdnoreturn_8h.html',1,'']]],
+ ['strcat_537',['strcat',['../string_8h.html#a13c88f5a8475fd7de5d81553cb29724a',1,'string.h']]],
+ ['strcmp_538',['strcmp',['../string_8h.html#aa89031476b4f6ee827f9163d09d68043',1,'string.h']]],
+ ['strcpy_539',['strcpy',['../string_8h.html#ad724f30223364304479b0fc714435e78',1,'string.h']]],
+ ['string_2eh_540',['string.h',['../string_8h.html',1,'']]],
+ ['strlen_541',['strlen',['../string_8h.html#a8fd73083ebdcca16ad810cd6041466f2',1,'string.h']]],
+ ['strncat_542',['strncat',['../string_8h.html#a168580a0ddcb7fe754a711309966c99d',1,'string.h']]],
+ ['strncmp_543',['strncmp',['../string_8h.html#a861dba2d93de82f087707bb795f5c602',1,'string.h']]],
+ ['strncpy_544',['strncpy',['../string_8h.html#a796a9459c4f362e51c00307044c40ed5',1,'string.h']]],
+ ['svbk_5freg_545',['SVBK_REG',['../hardware_8h.html#aa128832cecec4e609517fe3daf044e5e',1,'hardware.h']]],
+ ['switch_5f16_5f8_5fmode_5fmbc1_546',['SWITCH_16_8_MODE_MBC1',['../gb_8h.html#a0c689c5a814f1c347c4d98f28ed6c7d6',1,'gb.h']]],
+ ['switch_5f4_5f32_5fmode_5fmbc1_547',['SWITCH_4_32_MODE_MBC1',['../gb_8h.html#aa5d64e386a00b373f22ffdc5a152c7ba',1,'gb.h']]],
+ ['switch_5fdata_548',['switch_data',['../drawing_8h.html#ad252f1952b09c3ec66bf2759b4e2dea9',1,'drawing.h']]],
+ ['switch_5fram_5fmbc1_549',['SWITCH_RAM_MBC1',['../gb_8h.html#a38ea3e4dfe02b8eae70df27f39d4a951',1,'gb.h']]],
+ ['switch_5fram_5fmbc5_550',['SWITCH_RAM_MBC5',['../gb_8h.html#a361d5055a7ae880fc1c9d6e0d1164fd6',1,'gb.h']]],
+ ['switch_5from_5fmbc1_551',['SWITCH_ROM_MBC1',['../gb_8h.html#a19558f5bbc9fea767f945001ae9cd13f',1,'gb.h']]],
+ ['switch_5from_5fmbc5_552',['SWITCH_ROM_MBC5',['../gb_8h.html#a92d040284342702026eb19dab59b586e',1,'gb.h']]],
+ ['switch_5from_5fmbc5_5f8m_553',['SWITCH_ROM_MBC5_8M',['../gb_8h.html#a6c15ebc660abd3a978137493ab63ffe9',1,'gb.h']]],
+ ['sys_5ftime_554',['sys_time',['../gb_8h.html#a320fd91d5aa12ba9d1435ab908420998',1,'gb.h']]]
];
diff --git a/docs/api/search/all_17.js b/docs/api/search/all_17.js
index 6da58459..decd62a7 100644
--- a/docs/api/search/all_17.js
+++ b/docs/api/search/all_17.js
@@ -1,40 +1,40 @@
var searchData=
[
- ['toolchain_20settings_554',['Toolchain settings',['../docs_toolchain_settings.html',1,'index']]],
- ['tac_5freg_555',['TAC_REG',['../hardware_8h.html#a659173ac2c8da7fd04bc77973eb95256',1,'hardware.h']]],
- ['tile_556',['tile',['../struct_o_a_m__item__t.html#abe231d7583c7769e481c66ca8c6e8a10',1,'OAM_item_t']]],
- ['tim_5fiflag_557',['TIM_IFLAG',['../gb_8h.html#a604256210ec5b90b68185e1a18efab49',1,'gb.h']]],
- ['tima_5freg_558',['TIMA_REG',['../hardware_8h.html#a9d295bb437953de5ebcb3c12d65743aa',1,'hardware.h']]],
- ['time_559',['time',['../time_8h.html#ae7841e681c8c9d59818568d39553642c',1,'time.h']]],
- ['time_2eh_560',['time.h',['../time_8h.html',1,'']]],
- ['time_5ft_561',['time_t',['../time_8h.html#ab3806eb1b3b24a99fcc7a2a8c6411e77',1,'time.h']]],
- ['tma_5freg_562',['TMA_REG',['../hardware_8h.html#a39e5a5b9afd2c2ca78de4aba7ccd071c',1,'hardware.h']]],
- ['to_5ffar_5fptr_563',['to_far_ptr',['../far__ptr_8h.html#a374dd0c7e00bec635f1dd24d5cbe0d35',1,'to_far_ptr(void *ofs, int seg): far_ptr.h'],['../far__ptr_8h.html#a0c227677a96f9bf7e84a90922f2f8708',1,'TO_FAR_PTR(): far_ptr.h']]],
- ['todo_20list_564',['Todo List',['../todo.html',1,'']]],
- ['tolower_565',['tolower',['../ctype_8h.html#a207391fc2c5fa7786d5e0b9ef8ba5e80',1,'ctype.h']]],
- ['toupper_566',['toupper',['../ctype_8h.html#a811b7a0d5194feaccfacf8a7f02bb9c3',1,'ctype.h']]],
- ['true_567',['TRUE',['../types_8h.html#aa8cecfc5c5c054d2875c03e77b7be15d',1,'TRUE(): types.h'],['../stdbool_8h.html#a41f9c5fb8b08eb5dc3edce4dcb37fee7',1,'true(): stdbool.h']]],
- ['typeof_2eh_568',['typeof.h',['../typeof_8h.html',1,'']]],
- ['typeof_5farray_569',['TYPEOF_ARRAY',['../typeof_8h.html#ac627e9a5f9b283cb8904d73c941f1896',1,'typeof.h']]],
- ['typeof_5fbit_570',['TYPEOF_BIT',['../typeof_8h.html#a5b91f9d826e3c5c6873bc86cdce3d517',1,'typeof.h']]],
- ['typeof_5fbitfield_571',['TYPEOF_BITFIELD',['../typeof_8h.html#a5b9f605bb8dcac27ddfab4e9a8c9a2ca',1,'typeof.h']]],
- ['typeof_5fchar_572',['TYPEOF_CHAR',['../typeof_8h.html#ae042a4e85033237ee9fbc1af3cac7025',1,'typeof.h']]],
- ['typeof_5fcpointer_573',['TYPEOF_CPOINTER',['../typeof_8h.html#a6131cee0fe0abf1cf2fcfcec830535d4',1,'typeof.h']]],
- ['typeof_5feeppointer_574',['TYPEOF_EEPPOINTER',['../typeof_8h.html#a73d0c1f1fc515b199acb5631f8a16898',1,'typeof.h']]],
- ['typeof_5ffixed16x16_575',['TYPEOF_FIXED16X16',['../typeof_8h.html#a709c014873866243abc0275099f676f5',1,'typeof.h']]],
- ['typeof_5ffloat_576',['TYPEOF_FLOAT',['../typeof_8h.html#a3d694a422fb7a54f15ddf1c9749567f7',1,'typeof.h']]],
- ['typeof_5ffpointer_577',['TYPEOF_FPOINTER',['../typeof_8h.html#a5301fd3500fb9f9454a17f9d4c5d0e8c',1,'typeof.h']]],
- ['typeof_5ffunction_578',['TYPEOF_FUNCTION',['../typeof_8h.html#a3adf36b394d11d9b35f45ad8c4544670',1,'typeof.h']]],
- ['typeof_5fgpointer_579',['TYPEOF_GPOINTER',['../typeof_8h.html#adbec06ba3e6f0e2dcbefd788978f9ad6',1,'typeof.h']]],
- ['typeof_5fint_580',['TYPEOF_INT',['../typeof_8h.html#a4bb94b94304a21b7bd462be44f9d197a',1,'typeof.h']]],
- ['typeof_5fipointer_581',['TYPEOF_IPOINTER',['../typeof_8h.html#aa56dfc698692fb3f2d64c1a4b192f9c0',1,'typeof.h']]],
- ['typeof_5flong_582',['TYPEOF_LONG',['../typeof_8h.html#ab4833544b1f4060806106baa0eb916e6',1,'typeof.h']]],
- ['typeof_5fpointer_583',['TYPEOF_POINTER',['../typeof_8h.html#a2541fdaacae83bbcc99dcedf464c7c94',1,'typeof.h']]],
- ['typeof_5fppointer_584',['TYPEOF_PPOINTER',['../typeof_8h.html#ad38c6e5ceee5c5fe3703690fc32b23ae',1,'typeof.h']]],
- ['typeof_5fsbit_585',['TYPEOF_SBIT',['../typeof_8h.html#a09fcac98c1e69b32ea223eada74e30bd',1,'typeof.h']]],
- ['typeof_5fsfr_586',['TYPEOF_SFR',['../typeof_8h.html#aae32132bbca6df6423182122d95b00cd',1,'typeof.h']]],
- ['typeof_5fshort_587',['TYPEOF_SHORT',['../typeof_8h.html#a58af351d7955729a79e425a88bf86bab',1,'typeof.h']]],
- ['typeof_5fstruct_588',['TYPEOF_STRUCT',['../typeof_8h.html#a4f9ce6ed9178ad58f706e74cd8c24e1f',1,'typeof.h']]],
- ['typeof_5fvoid_589',['TYPEOF_VOID',['../typeof_8h.html#a03582306431a63d84cc721132ed683c8',1,'typeof.h']]],
- ['types_2eh_590',['types.h',['../asm_2gbz80_2types_8h.html',1,'(Global Namespace)'],['../asm_2types_8h.html',1,'(Global Namespace)'],['../types_8h.html',1,'(Global Namespace)']]]
+ ['toolchain_20settings_555',['Toolchain settings',['../docs_toolchain_settings.html',1,'index']]],
+ ['tac_5freg_556',['TAC_REG',['../hardware_8h.html#a659173ac2c8da7fd04bc77973eb95256',1,'hardware.h']]],
+ ['tile_557',['tile',['../struct_o_a_m__item__t.html#abe231d7583c7769e481c66ca8c6e8a10',1,'OAM_item_t']]],
+ ['tim_5fiflag_558',['TIM_IFLAG',['../gb_8h.html#a604256210ec5b90b68185e1a18efab49',1,'gb.h']]],
+ ['tima_5freg_559',['TIMA_REG',['../hardware_8h.html#a9d295bb437953de5ebcb3c12d65743aa',1,'hardware.h']]],
+ ['time_560',['time',['../time_8h.html#ae7841e681c8c9d59818568d39553642c',1,'time.h']]],
+ ['time_2eh_561',['time.h',['../time_8h.html',1,'']]],
+ ['time_5ft_562',['time_t',['../time_8h.html#ab3806eb1b3b24a99fcc7a2a8c6411e77',1,'time.h']]],
+ ['tma_5freg_563',['TMA_REG',['../hardware_8h.html#a39e5a5b9afd2c2ca78de4aba7ccd071c',1,'hardware.h']]],
+ ['to_5ffar_5fptr_564',['to_far_ptr',['../far__ptr_8h.html#a374dd0c7e00bec635f1dd24d5cbe0d35',1,'to_far_ptr(void *ofs, int seg): far_ptr.h'],['../far__ptr_8h.html#a0c227677a96f9bf7e84a90922f2f8708',1,'TO_FAR_PTR(): far_ptr.h']]],
+ ['todo_20list_565',['Todo List',['../todo.html',1,'']]],
+ ['tolower_566',['tolower',['../ctype_8h.html#a207391fc2c5fa7786d5e0b9ef8ba5e80',1,'ctype.h']]],
+ ['toupper_567',['toupper',['../ctype_8h.html#a811b7a0d5194feaccfacf8a7f02bb9c3',1,'ctype.h']]],
+ ['true_568',['TRUE',['../types_8h.html#aa8cecfc5c5c054d2875c03e77b7be15d',1,'TRUE(): types.h'],['../stdbool_8h.html#a41f9c5fb8b08eb5dc3edce4dcb37fee7',1,'true(): stdbool.h']]],
+ ['typeof_2eh_569',['typeof.h',['../typeof_8h.html',1,'']]],
+ ['typeof_5farray_570',['TYPEOF_ARRAY',['../typeof_8h.html#ac627e9a5f9b283cb8904d73c941f1896',1,'typeof.h']]],
+ ['typeof_5fbit_571',['TYPEOF_BIT',['../typeof_8h.html#a5b91f9d826e3c5c6873bc86cdce3d517',1,'typeof.h']]],
+ ['typeof_5fbitfield_572',['TYPEOF_BITFIELD',['../typeof_8h.html#a5b9f605bb8dcac27ddfab4e9a8c9a2ca',1,'typeof.h']]],
+ ['typeof_5fchar_573',['TYPEOF_CHAR',['../typeof_8h.html#ae042a4e85033237ee9fbc1af3cac7025',1,'typeof.h']]],
+ ['typeof_5fcpointer_574',['TYPEOF_CPOINTER',['../typeof_8h.html#a6131cee0fe0abf1cf2fcfcec830535d4',1,'typeof.h']]],
+ ['typeof_5feeppointer_575',['TYPEOF_EEPPOINTER',['../typeof_8h.html#a73d0c1f1fc515b199acb5631f8a16898',1,'typeof.h']]],
+ ['typeof_5ffixed16x16_576',['TYPEOF_FIXED16X16',['../typeof_8h.html#a709c014873866243abc0275099f676f5',1,'typeof.h']]],
+ ['typeof_5ffloat_577',['TYPEOF_FLOAT',['../typeof_8h.html#a3d694a422fb7a54f15ddf1c9749567f7',1,'typeof.h']]],
+ ['typeof_5ffpointer_578',['TYPEOF_FPOINTER',['../typeof_8h.html#a5301fd3500fb9f9454a17f9d4c5d0e8c',1,'typeof.h']]],
+ ['typeof_5ffunction_579',['TYPEOF_FUNCTION',['../typeof_8h.html#a3adf36b394d11d9b35f45ad8c4544670',1,'typeof.h']]],
+ ['typeof_5fgpointer_580',['TYPEOF_GPOINTER',['../typeof_8h.html#adbec06ba3e6f0e2dcbefd788978f9ad6',1,'typeof.h']]],
+ ['typeof_5fint_581',['TYPEOF_INT',['../typeof_8h.html#a4bb94b94304a21b7bd462be44f9d197a',1,'typeof.h']]],
+ ['typeof_5fipointer_582',['TYPEOF_IPOINTER',['../typeof_8h.html#aa56dfc698692fb3f2d64c1a4b192f9c0',1,'typeof.h']]],
+ ['typeof_5flong_583',['TYPEOF_LONG',['../typeof_8h.html#ab4833544b1f4060806106baa0eb916e6',1,'typeof.h']]],
+ ['typeof_5fpointer_584',['TYPEOF_POINTER',['../typeof_8h.html#a2541fdaacae83bbcc99dcedf464c7c94',1,'typeof.h']]],
+ ['typeof_5fppointer_585',['TYPEOF_PPOINTER',['../typeof_8h.html#ad38c6e5ceee5c5fe3703690fc32b23ae',1,'typeof.h']]],
+ ['typeof_5fsbit_586',['TYPEOF_SBIT',['../typeof_8h.html#a09fcac98c1e69b32ea223eada74e30bd',1,'typeof.h']]],
+ ['typeof_5fsfr_587',['TYPEOF_SFR',['../typeof_8h.html#aae32132bbca6df6423182122d95b00cd',1,'typeof.h']]],
+ ['typeof_5fshort_588',['TYPEOF_SHORT',['../typeof_8h.html#a58af351d7955729a79e425a88bf86bab',1,'typeof.h']]],
+ ['typeof_5fstruct_589',['TYPEOF_STRUCT',['../typeof_8h.html#a4f9ce6ed9178ad58f706e74cd8c24e1f',1,'typeof.h']]],
+ ['typeof_5fvoid_590',['TYPEOF_VOID',['../typeof_8h.html#a03582306431a63d84cc721132ed683c8',1,'typeof.h']]],
+ ['types_2eh_591',['types.h',['../asm_2gbz80_2types_8h.html',1,'(Global Namespace)'],['../asm_2types_8h.html',1,'(Global Namespace)'],['../types_8h.html',1,'(Global Namespace)']]]
];
diff --git a/docs/api/search/all_18.js b/docs/api/search/all_18.js
index f44d1da3..4282b211 100644
--- a/docs/api/search/all_18.js
+++ b/docs/api/search/all_18.js
@@ -1,51 +1,51 @@
var searchData=
[
- ['using_20gbdk_591',['Using GBDK',['../docs_using_gbdk.html',1,'index']]],
- ['ubyte_592',['UBYTE',['../asm_2types_8h.html#a280213815420791851f7e59bdc8a3c95',1,'types.h']]],
- ['uchar_5fmax_593',['UCHAR_MAX',['../limits_8h.html#a4066e640ee269d5d8f83ff6643b7af5f',1,'limits.h']]],
- ['udword_594',['UDWORD',['../asm_2types_8h.html#a332730c89876a91d3c98a6c9a764e23e',1,'types.h']]],
- ['uint16_595',['UINT16',['../asm_2gbz80_2types_8h.html#a805c2c164bdd38d72a30c46e84fb568b',1,'types.h']]],
- ['uint16_5fc_596',['UINT16_C',['../stdint_8h.html#af525dddf7f072ee85c953107123ff1f6',1,'stdint.h']]],
- ['uint16_5fmax_597',['UINT16_MAX',['../stdint_8h.html#a3ea490c9b3617d4479bd80ef93cd5602',1,'stdint.h']]],
- ['uint16_5ft_598',['uint16_t',['../stdint_8h.html#adf4d876453337156dde61095e1f20223',1,'stdint.h']]],
- ['uint2bcd_599',['uint2bcd',['../bcd_8h.html#a199d4e29e267c9722768fbcbd7c4cc1d',1,'bcd.h']]],
- ['uint32_600',['UINT32',['../asm_2gbz80_2types_8h.html#a0b39d6d754cb24c708b0f2bdbe88130e',1,'types.h']]],
- ['uint32_5fc_601',['UINT32_C',['../stdint_8h.html#a87b9ec7df1524edf020b074bbae32d6d',1,'stdint.h']]],
- ['uint32_5fmax_602',['UINT32_MAX',['../stdint_8h.html#ab5eb23180f7cc12b7d6c04a8ec067fdd',1,'stdint.h']]],
- ['uint32_5ft_603',['uint32_t',['../stdint_8h.html#a33594304e786b158f3fb30289278f5af',1,'stdint.h']]],
- ['uint8_604',['UINT8',['../asm_2gbz80_2types_8h.html#ab27e9918b538ce9d8ca692479b375b6a',1,'types.h']]],
- ['uint8_5fc_605',['UINT8_C',['../stdint_8h.html#af77373faf472a16283aad2014724192d',1,'stdint.h']]],
- ['uint8_5fmax_606',['UINT8_MAX',['../stdint_8h.html#aeb4e270a084ee26fe73e799861bd0252',1,'stdint.h']]],
- ['uint8_5ft_607',['uint8_t',['../stdint_8h.html#aba7bc1797add20fe3efdf37ced1182c5',1,'stdint.h']]],
- ['uint_5ffast16_5fmax_608',['UINT_FAST16_MAX',['../stdint_8h.html#aed28ca63d9b222f6f1377358fe73a183',1,'stdint.h']]],
- ['uint_5ffast16_5ft_609',['uint_fast16_t',['../stdint_8h.html#a226d967fb6d06433caf43f20dc876aae',1,'stdint.h']]],
- ['uint_5ffast32_5fmax_610',['UINT_FAST32_MAX',['../stdint_8h.html#ad51246a178143208b2db3315efd21c45',1,'stdint.h']]],
- ['uint_5ffast32_5ft_611',['uint_fast32_t',['../stdint_8h.html#a8a5d6c5353ff297fd0797e654772361b',1,'stdint.h']]],
- ['uint_5ffast8_5fmax_612',['UINT_FAST8_MAX',['../stdint_8h.html#a2c6f97ea2d76d0cf6260c84046cdb44e',1,'stdint.h']]],
- ['uint_5ffast8_5ft_613',['uint_fast8_t',['../stdint_8h.html#a2d31063fef649c85396fb28130ef9795',1,'stdint.h']]],
- ['uint_5fleast16_5fmax_614',['UINT_LEAST16_MAX',['../stdint_8h.html#a6ef6a1a518bbf516ca8b0180b11c358f',1,'stdint.h']]],
- ['uint_5fleast16_5ft_615',['uint_least16_t',['../stdint_8h.html#a1bae72af13d35bac8eb9424db7e27bf1',1,'stdint.h']]],
- ['uint_5fleast32_5fmax_616',['UINT_LEAST32_MAX',['../stdint_8h.html#a70cad8bacc9a6db301e1cdc86cc8d571',1,'stdint.h']]],
- ['uint_5fleast32_5ft_617',['uint_least32_t',['../stdint_8h.html#a1c0bb513299dbdffa1cce4277593b3ce',1,'stdint.h']]],
- ['uint_5fleast8_5fmax_618',['UINT_LEAST8_MAX',['../stdint_8h.html#a2a80bde77ee1698d0f42f334adad4f2b',1,'stdint.h']]],
- ['uint_5fleast8_5ft_619',['uint_least8_t',['../stdint_8h.html#ab0fdd2a9dc9606590ecccc0a5d8b5b7c',1,'stdint.h']]],
- ['uint_5fmax_620',['UINT_MAX',['../limits_8h.html#ac998ea02fbd821fc123d60445ce76f38',1,'limits.h']]],
- ['uint_5fmin_621',['UINT_MIN',['../limits_8h.html#a4c5cca78586f61bea3640a1563a43819',1,'limits.h']]],
- ['uintmax_5fc_622',['UINTMAX_C',['../stdint_8h.html#a00d3f5dd8a8cbd9433d74390bfb2ecef',1,'stdint.h']]],
- ['uintmax_5fmax_623',['UINTMAX_MAX',['../stdint_8h.html#aa54fd5210434219e9027bfa0f0e325c8',1,'stdint.h']]],
- ['uintmax_5ft_624',['uintmax_t',['../stdint_8h.html#a21649560c6e8dce6de2fb6a95f1bf802',1,'stdint.h']]],
- ['uintptr_5fmax_625',['UINTPTR_MAX',['../stdint_8h.html#ab2355300ea19395357e62d780f4dd073',1,'stdint.h']]],
- ['uintptr_5ft_626',['uintptr_t',['../stdint_8h.html#a728e973c799f206f0151c8a3bd1e5699',1,'stdint.h']]],
- ['ulong_5fmax_627',['ULONG_MAX',['../limits_8h.html#a41c51926a1997aab3503f9083935e06c',1,'limits.h']]],
- ['ulong_5fmin_628',['ULONG_MIN',['../limits_8h.html#a174a3b1d61499b676a2ad2efc8f224c5',1,'limits.h']]],
- ['ultoa_629',['ultoa',['../stdlib_8h.html#a2b30ca47ee185b69e46c673a475e2f01',1,'stdlib.h']]],
- ['ulword_630',['ULWORD',['../asm_2types_8h.html#a91374712e986ede0145415318d88fbd8',1,'types.h']]],
- ['unsigned_631',['UNSIGNED',['../drawing_8h.html#a08cbc66092284f7da94279f986a0aae9',1,'drawing.h']]],
- ['use_5fc_5fmemcpy_632',['USE_C_MEMCPY',['../provides_8h.html#a9dd4f1ec2939e7beb7ef40e350cbba47',1,'provides.h']]],
- ['use_5fc_5fstrcmp_633',['USE_C_STRCMP',['../provides_8h.html#a809a7bd0afcfb7500b5108a9e976b85c',1,'provides.h']]],
- ['use_5fc_5fstrcpy_634',['USE_C_STRCPY',['../provides_8h.html#ac6678abba8f5929bc8b33f3202e568f0',1,'provides.h']]],
- ['ushrt_5fmax_635',['USHRT_MAX',['../limits_8h.html#a689b119da994dece91d44b5aeac643ed',1,'limits.h']]],
- ['ushrt_5fmin_636',['USHRT_MIN',['../limits_8h.html#a57f617d9cf5cce12e8499f7512ebd948',1,'limits.h']]],
- ['utoa_637',['utoa',['../stdlib_8h.html#a4e7ad09b4f5caf8881ce5e4776fd442c',1,'stdlib.h']]],
- ['uword_638',['UWORD',['../asm_2types_8h.html#a9e551e7c1bd8feb51e8eefd109966f75',1,'types.h']]]
+ ['using_20gbdk_592',['Using GBDK',['../docs_using_gbdk.html',1,'index']]],
+ ['ubyte_593',['UBYTE',['../asm_2types_8h.html#a280213815420791851f7e59bdc8a3c95',1,'types.h']]],
+ ['uchar_5fmax_594',['UCHAR_MAX',['../limits_8h.html#a4066e640ee269d5d8f83ff6643b7af5f',1,'limits.h']]],
+ ['udword_595',['UDWORD',['../asm_2types_8h.html#a332730c89876a91d3c98a6c9a764e23e',1,'types.h']]],
+ ['uint16_596',['UINT16',['../asm_2gbz80_2types_8h.html#a805c2c164bdd38d72a30c46e84fb568b',1,'types.h']]],
+ ['uint16_5fc_597',['UINT16_C',['../stdint_8h.html#af525dddf7f072ee85c953107123ff1f6',1,'stdint.h']]],
+ ['uint16_5fmax_598',['UINT16_MAX',['../stdint_8h.html#a3ea490c9b3617d4479bd80ef93cd5602',1,'stdint.h']]],
+ ['uint16_5ft_599',['uint16_t',['../stdint_8h.html#adf4d876453337156dde61095e1f20223',1,'stdint.h']]],
+ ['uint2bcd_600',['uint2bcd',['../bcd_8h.html#a199d4e29e267c9722768fbcbd7c4cc1d',1,'bcd.h']]],
+ ['uint32_601',['UINT32',['../asm_2gbz80_2types_8h.html#a0b39d6d754cb24c708b0f2bdbe88130e',1,'types.h']]],
+ ['uint32_5fc_602',['UINT32_C',['../stdint_8h.html#a87b9ec7df1524edf020b074bbae32d6d',1,'stdint.h']]],
+ ['uint32_5fmax_603',['UINT32_MAX',['../stdint_8h.html#ab5eb23180f7cc12b7d6c04a8ec067fdd',1,'stdint.h']]],
+ ['uint32_5ft_604',['uint32_t',['../stdint_8h.html#a33594304e786b158f3fb30289278f5af',1,'stdint.h']]],
+ ['uint8_605',['UINT8',['../asm_2gbz80_2types_8h.html#ab27e9918b538ce9d8ca692479b375b6a',1,'types.h']]],
+ ['uint8_5fc_606',['UINT8_C',['../stdint_8h.html#af77373faf472a16283aad2014724192d',1,'stdint.h']]],
+ ['uint8_5fmax_607',['UINT8_MAX',['../stdint_8h.html#aeb4e270a084ee26fe73e799861bd0252',1,'stdint.h']]],
+ ['uint8_5ft_608',['uint8_t',['../stdint_8h.html#aba7bc1797add20fe3efdf37ced1182c5',1,'stdint.h']]],
+ ['uint_5ffast16_5fmax_609',['UINT_FAST16_MAX',['../stdint_8h.html#aed28ca63d9b222f6f1377358fe73a183',1,'stdint.h']]],
+ ['uint_5ffast16_5ft_610',['uint_fast16_t',['../stdint_8h.html#a226d967fb6d06433caf43f20dc876aae',1,'stdint.h']]],
+ ['uint_5ffast32_5fmax_611',['UINT_FAST32_MAX',['../stdint_8h.html#ad51246a178143208b2db3315efd21c45',1,'stdint.h']]],
+ ['uint_5ffast32_5ft_612',['uint_fast32_t',['../stdint_8h.html#a8a5d6c5353ff297fd0797e654772361b',1,'stdint.h']]],
+ ['uint_5ffast8_5fmax_613',['UINT_FAST8_MAX',['../stdint_8h.html#a2c6f97ea2d76d0cf6260c84046cdb44e',1,'stdint.h']]],
+ ['uint_5ffast8_5ft_614',['uint_fast8_t',['../stdint_8h.html#a2d31063fef649c85396fb28130ef9795',1,'stdint.h']]],
+ ['uint_5fleast16_5fmax_615',['UINT_LEAST16_MAX',['../stdint_8h.html#a6ef6a1a518bbf516ca8b0180b11c358f',1,'stdint.h']]],
+ ['uint_5fleast16_5ft_616',['uint_least16_t',['../stdint_8h.html#a1bae72af13d35bac8eb9424db7e27bf1',1,'stdint.h']]],
+ ['uint_5fleast32_5fmax_617',['UINT_LEAST32_MAX',['../stdint_8h.html#a70cad8bacc9a6db301e1cdc86cc8d571',1,'stdint.h']]],
+ ['uint_5fleast32_5ft_618',['uint_least32_t',['../stdint_8h.html#a1c0bb513299dbdffa1cce4277593b3ce',1,'stdint.h']]],
+ ['uint_5fleast8_5fmax_619',['UINT_LEAST8_MAX',['../stdint_8h.html#a2a80bde77ee1698d0f42f334adad4f2b',1,'stdint.h']]],
+ ['uint_5fleast8_5ft_620',['uint_least8_t',['../stdint_8h.html#ab0fdd2a9dc9606590ecccc0a5d8b5b7c',1,'stdint.h']]],
+ ['uint_5fmax_621',['UINT_MAX',['../limits_8h.html#ac998ea02fbd821fc123d60445ce76f38',1,'limits.h']]],
+ ['uint_5fmin_622',['UINT_MIN',['../limits_8h.html#a4c5cca78586f61bea3640a1563a43819',1,'limits.h']]],
+ ['uintmax_5fc_623',['UINTMAX_C',['../stdint_8h.html#a00d3f5dd8a8cbd9433d74390bfb2ecef',1,'stdint.h']]],
+ ['uintmax_5fmax_624',['UINTMAX_MAX',['../stdint_8h.html#aa54fd5210434219e9027bfa0f0e325c8',1,'stdint.h']]],
+ ['uintmax_5ft_625',['uintmax_t',['../stdint_8h.html#a21649560c6e8dce6de2fb6a95f1bf802',1,'stdint.h']]],
+ ['uintptr_5fmax_626',['UINTPTR_MAX',['../stdint_8h.html#ab2355300ea19395357e62d780f4dd073',1,'stdint.h']]],
+ ['uintptr_5ft_627',['uintptr_t',['../stdint_8h.html#a728e973c799f206f0151c8a3bd1e5699',1,'stdint.h']]],
+ ['ulong_5fmax_628',['ULONG_MAX',['../limits_8h.html#a41c51926a1997aab3503f9083935e06c',1,'limits.h']]],
+ ['ulong_5fmin_629',['ULONG_MIN',['../limits_8h.html#a174a3b1d61499b676a2ad2efc8f224c5',1,'limits.h']]],
+ ['ultoa_630',['ultoa',['../stdlib_8h.html#a2b30ca47ee185b69e46c673a475e2f01',1,'stdlib.h']]],
+ ['ulword_631',['ULWORD',['../asm_2types_8h.html#a91374712e986ede0145415318d88fbd8',1,'types.h']]],
+ ['unsigned_632',['UNSIGNED',['../drawing_8h.html#a08cbc66092284f7da94279f986a0aae9',1,'drawing.h']]],
+ ['use_5fc_5fmemcpy_633',['USE_C_MEMCPY',['../provides_8h.html#a9dd4f1ec2939e7beb7ef40e350cbba47',1,'provides.h']]],
+ ['use_5fc_5fstrcmp_634',['USE_C_STRCMP',['../provides_8h.html#a809a7bd0afcfb7500b5108a9e976b85c',1,'provides.h']]],
+ ['use_5fc_5fstrcpy_635',['USE_C_STRCPY',['../provides_8h.html#ac6678abba8f5929bc8b33f3202e568f0',1,'provides.h']]],
+ ['ushrt_5fmax_636',['USHRT_MAX',['../limits_8h.html#a689b119da994dece91d44b5aeac643ed',1,'limits.h']]],
+ ['ushrt_5fmin_637',['USHRT_MIN',['../limits_8h.html#a57f617d9cf5cce12e8499f7512ebd948',1,'limits.h']]],
+ ['utoa_638',['utoa',['../stdlib_8h.html#a4e7ad09b4f5caf8881ce5e4776fd442c',1,'stdlib.h']]],
+ ['uword_639',['UWORD',['../asm_2types_8h.html#a9e551e7c1bd8feb51e8eefd109966f75',1,'types.h']]]
];
diff --git a/docs/api/search/all_19.js b/docs/api/search/all_19.js
index 13db7a53..4faaa7e3 100644
--- a/docs/api/search/all_19.js
+++ b/docs/api/search/all_19.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['va_5farg_639',['va_arg',['../asm_2gbz80_2stdarg_8h.html#af4d89980b2bdeb5b37bbaa323d108bbc',1,'stdarg.h']]],
- ['va_5fend_640',['va_end',['../asm_2gbz80_2stdarg_8h.html#aa042dbf8cc345b3a522d6f706a78ddbd',1,'stdarg.h']]],
- ['va_5flist_641',['va_list',['../asm_2gbz80_2stdarg_8h.html#a90f5a53cfeaf133c17cd213633060737',1,'stdarg.h']]],
- ['va_5fstart_642',['va_start',['../asm_2gbz80_2stdarg_8h.html#aa385efb7a67df5acc5e06cf3bdc8802f',1,'stdarg.h']]],
- ['vbk_5freg_643',['VBK_REG',['../hardware_8h.html#a5ccae0d556500e1055a0ec8de20c535a',1,'hardware.h']]],
- ['vbl_5fiflag_644',['VBL_IFLAG',['../gb_8h.html#a2ca7720b9a5da9b2173e1f74dba85541',1,'gb.h']]],
- ['vmemset_645',['vmemset',['../gb_8h.html#a8cf949b6e2654b6a8bd9e403a49ee4b3',1,'gb.h']]]
+ ['va_5farg_640',['va_arg',['../asm_2gbz80_2stdarg_8h.html#af4d89980b2bdeb5b37bbaa323d108bbc',1,'stdarg.h']]],
+ ['va_5fend_641',['va_end',['../asm_2gbz80_2stdarg_8h.html#aa042dbf8cc345b3a522d6f706a78ddbd',1,'stdarg.h']]],
+ ['va_5flist_642',['va_list',['../asm_2gbz80_2stdarg_8h.html#a90f5a53cfeaf133c17cd213633060737',1,'stdarg.h']]],
+ ['va_5fstart_643',['va_start',['../asm_2gbz80_2stdarg_8h.html#aa385efb7a67df5acc5e06cf3bdc8802f',1,'stdarg.h']]],
+ ['vbk_5freg_644',['VBK_REG',['../hardware_8h.html#a5ccae0d556500e1055a0ec8de20c535a',1,'hardware.h']]],
+ ['vbl_5fiflag_645',['VBL_IFLAG',['../gb_8h.html#a2ca7720b9a5da9b2173e1f74dba85541',1,'gb.h']]],
+ ['vmemset_646',['vmemset',['../gb_8h.html#a8cf949b6e2654b6a8bd9e403a49ee4b3',1,'gb.h']]]
];
diff --git a/docs/api/search/all_1a.js b/docs/api/search/all_1a.js
index b6907bf0..ae47bc70 100644
--- a/docs/api/search/all_1a.js
+++ b/docs/api/search/all_1a.js
@@ -1,18 +1,18 @@
var searchData=
[
- ['w_646',['w',['../union__fixed.html#ab16f9fd51f817308d109b9b35866f310',1,'_fixed']]],
- ['wait_5fint_5fhandler_647',['wait_int_handler',['../gb_8h.html#af461d38864cfc5720f0d9f4d1113cf07',1,'gb.h']]],
- ['wait_5fvbl_5fdone_648',['wait_vbl_done',['../gb_8h.html#adf6ef63efc4bb4950428015c623bca14',1,'gb.h']]],
- ['waitpad_649',['waitpad',['../gb_8h.html#a393072c2b36f11306510c69aa6efea0f',1,'gb.h']]],
- ['waitpadup_650',['waitpadup',['../gb_8h.html#ae1f1358e53ec1b153f071d1e16d8ab0e',1,'gb.h']]],
- ['wchar_5fmax_651',['WCHAR_MAX',['../stdint_8h.html#a2a823f3ccf2306cfbaa34d8addf66010',1,'stdint.h']]],
- ['wchar_5fmin_652',['WCHAR_MIN',['../stdint_8h.html#a051084d5ebcabf282d9ca9bb2b891a78',1,'stdint.h']]],
- ['wchar_5ft_653',['wchar_t',['../stddef_8h.html#a88ca3e0156f8101475a589ae3cbd98c8',1,'stddef.h']]],
- ['white_654',['WHITE',['../drawing_8h.html#a87b537f5fa5c109d3c05c13d6b18f382',1,'drawing.h']]],
- ['wint_5fmax_655',['WINT_MAX',['../stdint_8h.html#ad3f7b6bb8aa7d619017a91d3b2edc1ee',1,'stdint.h']]],
- ['wint_5fmin_656',['WINT_MIN',['../stdint_8h.html#a5285bc55170ae1701e599decacc7f001',1,'stdint.h']]],
- ['word_657',['WORD',['../asm_2types_8h.html#ac1b71367b1b0eae6718d17b4fd07aecd',1,'types.h']]],
- ['wrtchr_658',['wrtchr',['../drawing_8h.html#a57de178908d5dc3e574e666e4d4cb6a7',1,'drawing.h']]],
- ['wx_5freg_659',['WX_REG',['../hardware_8h.html#a310aa43fbee2fd6b6b419df48acce1e0',1,'hardware.h']]],
- ['wy_5freg_660',['WY_REG',['../hardware_8h.html#a1c8d52607616ef37da335447e4cbe850',1,'hardware.h']]]
+ ['w_647',['w',['../union__fixed.html#ab16f9fd51f817308d109b9b35866f310',1,'_fixed']]],
+ ['wait_5fint_5fhandler_648',['wait_int_handler',['../gb_8h.html#af461d38864cfc5720f0d9f4d1113cf07',1,'gb.h']]],
+ ['wait_5fvbl_5fdone_649',['wait_vbl_done',['../gb_8h.html#adf6ef63efc4bb4950428015c623bca14',1,'gb.h']]],
+ ['waitpad_650',['waitpad',['../gb_8h.html#a393072c2b36f11306510c69aa6efea0f',1,'gb.h']]],
+ ['waitpadup_651',['waitpadup',['../gb_8h.html#ae1f1358e53ec1b153f071d1e16d8ab0e',1,'gb.h']]],
+ ['wchar_5fmax_652',['WCHAR_MAX',['../stdint_8h.html#a2a823f3ccf2306cfbaa34d8addf66010',1,'stdint.h']]],
+ ['wchar_5fmin_653',['WCHAR_MIN',['../stdint_8h.html#a051084d5ebcabf282d9ca9bb2b891a78',1,'stdint.h']]],
+ ['wchar_5ft_654',['wchar_t',['../stddef_8h.html#a88ca3e0156f8101475a589ae3cbd98c8',1,'stddef.h']]],
+ ['white_655',['WHITE',['../drawing_8h.html#a87b537f5fa5c109d3c05c13d6b18f382',1,'drawing.h']]],
+ ['wint_5fmax_656',['WINT_MAX',['../stdint_8h.html#ad3f7b6bb8aa7d619017a91d3b2edc1ee',1,'stdint.h']]],
+ ['wint_5fmin_657',['WINT_MIN',['../stdint_8h.html#a5285bc55170ae1701e599decacc7f001',1,'stdint.h']]],
+ ['word_658',['WORD',['../asm_2types_8h.html#ac1b71367b1b0eae6718d17b4fd07aecd',1,'types.h']]],
+ ['wrtchr_659',['wrtchr',['../drawing_8h.html#a57de178908d5dc3e574e666e4d4cb6a7',1,'drawing.h']]],
+ ['wx_5freg_660',['WX_REG',['../hardware_8h.html#a310aa43fbee2fd6b6b419df48acce1e0',1,'hardware.h']]],
+ ['wy_5freg_661',['WY_REG',['../hardware_8h.html#a1c8d52607616ef37da335447e4cbe850',1,'hardware.h']]]
];
diff --git a/docs/api/search/all_1b.js b/docs/api/search/all_1b.js
index 899fc8e4..42435daf 100644
--- a/docs/api/search/all_1b.js
+++ b/docs/api/search/all_1b.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['x_661',['x',['../struct_o_a_m__item__t.html#a7a0dc012815fd69a75347136e2a050dc',1,'OAM_item_t']]],
- ['xor_662',['XOR',['../drawing_8h.html#a45cd11034d1a7d86c3a88d36f5e7f1ab',1,'drawing.h']]]
+ ['x_662',['x',['../struct_o_a_m__item__t.html#a7a0dc012815fd69a75347136e2a050dc',1,'OAM_item_t']]],
+ ['xor_663',['XOR',['../drawing_8h.html#a45cd11034d1a7d86c3a88d36f5e7f1ab',1,'drawing.h']]]
];
diff --git a/docs/api/search/all_1c.js b/docs/api/search/all_1c.js
index 48100788..fc2a8abd 100644
--- a/docs/api/search/all_1c.js
+++ b/docs/api/search/all_1c.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['y_663',['y',['../struct_o_a_m__item__t.html#a48c4d7253494259403cd4597e8c19ca5',1,'OAM_item_t']]]
+ ['y_664',['y',['../struct_o_a_m__item__t.html#a48c4d7253494259403cd4597e8c19ca5',1,'OAM_item_t']]]
];
diff --git a/docs/api/search/all_7.js b/docs/api/search/all_7.js
index 4dfd1753..8a124e98 100644
--- a/docs/api/search/all_7.js
+++ b/docs/api/search/all_7.js
@@ -7,7 +7,7 @@ var searchData=
['disable_5foam_5fdma_102',['DISABLE_OAM_DMA',['../gb_8h.html#a47607089a434dcda7a8583cfca03b604',1,'gb.h']]],
['disable_5fram_5fmbc1_103',['DISABLE_RAM_MBC1',['../gb_8h.html#a177fadce938422926b186a8e42575d1d',1,'gb.h']]],
['disable_5fram_5fmbc5_104',['DISABLE_RAM_MBC5',['../gb_8h.html#a60191cdfa50ed9b88515f181747eaba2',1,'gb.h']]],
- ['display_5foff_105',['DISPLAY_OFF',['../gb_8h.html#ad2ec9831813c5e7069917aa4455af682',1,'DISPLAY_OFF(): gb.h'],['../gb_8h.html#aed072359b42854fffae4cd29c1f34ea1',1,'display_off(void) NONBANKED __preserves_regs(b: gb.h']]],
+ ['display_5foff_105',['display_off',['../gb_8h.html#aed072359b42854fffae4cd29c1f34ea1',1,'display_off(void) NONBANKED __preserves_regs(b: gb.h'],['../gb_8h.html#ad2ec9831813c5e7069917aa4455af682',1,'DISPLAY_OFF(): gb.h']]],
['display_5fon_106',['DISPLAY_ON',['../gb_8h.html#a5ae6b05b3e1559c97f0d1b2daaaa0ee4',1,'gb.h']]],
['div_5freg_107',['DIV_REG',['../hardware_8h.html#afa1e18e47bf68ce68d7807fff6edf16b',1,'hardware.h']]],
['dkgrey_108',['DKGREY',['../drawing_8h.html#a4dad87d91b9201be3b4ede372f31ae8a',1,'drawing.h']]],
diff --git a/docs/api/search/all_9.js b/docs/api/search/all_9.js
index becc21ca..493a7370 100644
--- a/docs/api/search/all_9.js
+++ b/docs/api/search/all_9.js
@@ -1,7 +1,7 @@
var searchData=
[
['frequently_20asked_20questions_20_28faq_29_125',['Frequently Asked Questions (FAQ)',['../docs_faq.html',1,'index']]],
- ['false_126',['false',['../stdbool_8h.html#a65e9886d74aaee76545e83dd09011727',1,'false(): stdbool.h'],['../types_8h.html#aa93f0eb578d23995850d61f7d61c55c1',1,'FALSE(): types.h']]],
+ ['false_126',['FALSE',['../types_8h.html#aa93f0eb578d23995850d61f7d61c55c1',1,'FALSE(): types.h'],['../stdbool_8h.html#a65e9886d74aaee76545e83dd09011727',1,'false(): stdbool.h']]],
['far_5fcall_127',['FAR_CALL',['../far__ptr_8h.html#a7f4ab1893ea392f8bf042a3b97de4730',1,'far_ptr.h']]],
['far_5ffunc_128',['FAR_FUNC',['../far__ptr_8h.html#a048cfacb5d37ab758a74f44e86c1dbc6',1,'far_ptr.h']]],
['far_5fofs_129',['FAR_OFS',['../far__ptr_8h.html#ab79586d8cc3cb926f363f4d0cf7143d5',1,'far_ptr.h']]],
diff --git a/docs/api/search/all_a.js b/docs/api/search/all_a.js
index b6fcf218..d02f3d43 100644
--- a/docs/api/search/all_a.js
+++ b/docs/api/search/all_a.js
@@ -19,7 +19,7 @@ var searchData=
['get_5fsprite_5fdata_171',['get_sprite_data',['../gb_8h.html#a5ce794b7f0c3361c79c887b500fcaf19',1,'gb.h']]],
['get_5fsprite_5fprop_172',['get_sprite_prop',['../gb_8h.html#a4b4feb80407d4f1e80579ed932821035',1,'gb.h']]],
['get_5fsprite_5ftile_173',['get_sprite_tile',['../gb_8h.html#a54ffb7990fd37939bbe1a8b1e663e439',1,'gb.h']]],
- ['get_5ftiles_174',['get_tiles',['../gb_8h.html#a4c3d68eb3ff5ec0995541e691a6e8259',1,'gb.h']]],
+ ['get_5ftiles_174',['get_tiles',['../gb_8h.html#a9fb6ed396416150a46d47ed12fc8b251',1,'gb.h']]],
['get_5fvram_5fbyte_175',['get_vram_byte',['../gb_8h.html#a35b5f3f6ba20daff6af91876d2ccc2b0',1,'gb.h']]],
['get_5fwin_5fdata_176',['get_win_data',['../gb_8h.html#ae2a527ffae5cad8083726470c3f30475',1,'gb.h']]],
['get_5fwin_5ftile_5fxy_177',['get_win_tile_xy',['../gb_8h.html#a5b64bd185bbab708e6b6bd6ed1b9bfc2',1,'gb.h']]],
diff --git a/docs/api/search/classes_0.js b/docs/api/search/classes_0.js
index 54d954dc..2eb04a22 100644
--- a/docs/api/search/classes_0.js
+++ b/docs/api/search/classes_0.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['_5f_5ffar_5fptr_664',['__far_ptr',['../union____far__ptr.html',1,'']]],
- ['_5ffixed_665',['_fixed',['../union__fixed.html',1,'']]]
+ ['_5f_5ffar_5fptr_665',['__far_ptr',['../union____far__ptr.html',1,'']]],
+ ['_5ffixed_666',['_fixed',['../union__fixed.html',1,'']]]
];
diff --git a/docs/api/search/classes_1.js b/docs/api/search/classes_1.js
index 75dcbaba..346ab21a 100644
--- a/docs/api/search/classes_1.js
+++ b/docs/api/search/classes_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['atomic_5fflag_666',['atomic_flag',['../structatomic__flag.html',1,'']]]
+ ['atomic_5fflag_667',['atomic_flag',['../structatomic__flag.html',1,'']]]
];
diff --git a/docs/api/search/classes_2.js b/docs/api/search/classes_2.js
index 79cf476a..7afe32ea 100644
--- a/docs/api/search/classes_2.js
+++ b/docs/api/search/classes_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['joypads_5ft_667',['joypads_t',['../structjoypads__t.html',1,'']]]
+ ['joypads_5ft_668',['joypads_t',['../structjoypads__t.html',1,'']]]
];
diff --git a/docs/api/search/classes_3.js b/docs/api/search/classes_3.js
index ecbf238c..2d593cee 100644
--- a/docs/api/search/classes_3.js
+++ b/docs/api/search/classes_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['metasprite_5ft_668',['metasprite_t',['../structmetasprite__t.html',1,'']]]
+ ['metasprite_5ft_669',['metasprite_t',['../structmetasprite__t.html',1,'']]]
];
diff --git a/docs/api/search/classes_4.js b/docs/api/search/classes_4.js
index 493db4cd..65f162d6 100644
--- a/docs/api/search/classes_4.js
+++ b/docs/api/search/classes_4.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['oam_5fitem_5ft_669',['OAM_item_t',['../struct_o_a_m__item__t.html',1,'']]]
+ ['oam_5fitem_5ft_670',['OAM_item_t',['../struct_o_a_m__item__t.html',1,'']]]
];
diff --git a/docs/api/search/classes_5.js b/docs/api/search/classes_5.js
index 9869ff2d..b47b0c5b 100644
--- a/docs/api/search/classes_5.js
+++ b/docs/api/search/classes_5.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['sfont_5fhandle_670',['sfont_handle',['../structsfont__handle.html',1,'']]],
- ['smalloc_5fhunk_671',['smalloc_hunk',['../structsmalloc__hunk.html',1,'']]]
+ ['sfont_5fhandle_671',['sfont_handle',['../structsfont__handle.html',1,'']]],
+ ['smalloc_5fhunk_672',['smalloc_hunk',['../structsmalloc__hunk.html',1,'']]]
];
diff --git a/docs/api/search/defines_0.js b/docs/api/search/defines_0.js
index fa11ce2c..44e8d4d1 100644
--- a/docs/api/search/defines_0.js
+++ b/docs/api/search/defines_0.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['_5f_5fbool_5ftrue_5ffalse_5fare_5fdefined_1060',['__bool_true_false_are_defined',['../stdbool_8h.html#a665b0cc9ee2ced31785321d55cde349e',1,'stdbool.h']]],
- ['_5f_5fgbdk_5fversion_1061',['__GBDK_VERSION',['../gb_8h.html#a459449876dfba6299bf055c882d78334',1,'gb.h']]],
- ['_5f_5fptrdiff_5ft_5fdefined_1062',['__PTRDIFF_T_DEFINED',['../stddef_8h.html#a9e3909fa823b8c4e3fc624d77fb946bf',1,'stddef.h']]],
- ['_5f_5freentrant_1063',['__reentrant',['../stdlib_8h.html#a83798998ad669e85a8f75d6490191760',1,'stdlib.h']]],
- ['_5f_5freg_1064',['__REG',['../hardware_8h.html#a0b42e4dadd74c927e8b801b4f42c0e44',1,'hardware.h']]],
- ['_5f_5fsize_5ft_5fdefined_1065',['__SIZE_T_DEFINED',['../asm_2gbz80_2types_8h.html#a8de3167f7b52ff5a2f538858cb5e32d3',1,'__SIZE_T_DEFINED(): types.h'],['../stddef_8h.html#a8de3167f7b52ff5a2f538858cb5e32d3',1,'__SIZE_T_DEFINED(): stddef.h']]],
- ['_5f_5fwchar_5ft_5fdefined_1066',['__WCHAR_T_DEFINED',['../stddef_8h.html#a4aa39aaff620f750e11ece0766b185fd',1,'stddef.h']]]
+ ['_5f_5fbool_5ftrue_5ffalse_5fare_5fdefined_1062',['__bool_true_false_are_defined',['../stdbool_8h.html#a665b0cc9ee2ced31785321d55cde349e',1,'stdbool.h']]],
+ ['_5f_5fgbdk_5fversion_1063',['__GBDK_VERSION',['../gb_8h.html#a459449876dfba6299bf055c882d78334',1,'gb.h']]],
+ ['_5f_5fptrdiff_5ft_5fdefined_1064',['__PTRDIFF_T_DEFINED',['../stddef_8h.html#a9e3909fa823b8c4e3fc624d77fb946bf',1,'stddef.h']]],
+ ['_5f_5freentrant_1065',['__reentrant',['../stdlib_8h.html#a83798998ad669e85a8f75d6490191760',1,'stdlib.h']]],
+ ['_5f_5freg_1066',['__REG',['../hardware_8h.html#a0b42e4dadd74c927e8b801b4f42c0e44',1,'hardware.h']]],
+ ['_5f_5fsize_5ft_5fdefined_1067',['__SIZE_T_DEFINED',['../asm_2gbz80_2types_8h.html#a8de3167f7b52ff5a2f538858cb5e32d3',1,'__SIZE_T_DEFINED(): types.h'],['../stddef_8h.html#a8de3167f7b52ff5a2f538858cb5e32d3',1,'__SIZE_T_DEFINED(): stddef.h']]],
+ ['_5f_5fwchar_5ft_5fdefined_1068',['__WCHAR_T_DEFINED',['../stddef_8h.html#a4aa39aaff620f750e11ece0766b185fd',1,'stddef.h']]]
];
diff --git a/docs/api/search/defines_1.js b/docs/api/search/defines_1.js
index 827b6f02..dbf87644 100644
--- a/docs/api/search/defines_1.js
+++ b/docs/api/search/defines_1.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['and_1067',['AND',['../drawing_8h.html#acd1b97556dfbbac61063a63031d2f91d',1,'drawing.h']]],
- ['assert_1068',['assert',['../assert_8h.html#af576bf8ffa22a44e53018c67095ffbf0',1,'assert.h']]]
+ ['and_1069',['AND',['../drawing_8h.html#acd1b97556dfbbac61063a63031d2f91d',1,'drawing.h']]],
+ ['assert_1070',['assert',['../assert_8h.html#af576bf8ffa22a44e53018c67095ffbf0',1,'assert.h']]]
];
diff --git a/docs/api/search/defines_10.js b/docs/api/search/defines_10.js
index dcfd5932..6b3fef87 100644
--- a/docs/api/search/defines_10.js
+++ b/docs/api/search/defines_10.js
@@ -1,25 +1,25 @@
var searchData=
[
- ['ret_5fsize_1180',['RET_SIZE',['../setjmp_8h.html#a61c5519ad23b4ddbcc77c45352aac913',1,'setjmp.h']]],
- ['rgb_1181',['RGB',['../cgb_8h.html#a4a118ad3ee36468a3fa616977a64864e',1,'cgb.h']]],
- ['rgb_5faqua_1182',['RGB_AQUA',['../cgb_8h.html#ae4fe0c6cfa46b0c4804425f23bb48f4c',1,'cgb.h']]],
- ['rgb_5fblack_1183',['RGB_BLACK',['../cgb_8h.html#ae168f0f9864d4ed4be7807b9783f17f1',1,'cgb.h']]],
- ['rgb_5fblue_1184',['RGB_BLUE',['../cgb_8h.html#a0eff802f1ca228046476209dc01c76ad',1,'cgb.h']]],
- ['rgb_5fbrown_1185',['RGB_BROWN',['../cgb_8h.html#a7c2a437dfb89d663a1c2f0a7a9256474',1,'cgb.h']]],
- ['rgb_5fcyan_1186',['RGB_CYAN',['../cgb_8h.html#a2ce30ac984869b55594447722b9d0579',1,'cgb.h']]],
- ['rgb_5fdarkblue_1187',['RGB_DARKBLUE',['../cgb_8h.html#ad44385fc245bbabf6da787dcc8930385',1,'cgb.h']]],
- ['rgb_5fdarkgray_1188',['RGB_DARKGRAY',['../cgb_8h.html#a29b47e2361025eabcdc3bcbff2308044',1,'cgb.h']]],
- ['rgb_5fdarkgreen_1189',['RGB_DARKGREEN',['../cgb_8h.html#a1ee7a5d8fd635e9132a2820a60f9789d',1,'cgb.h']]],
- ['rgb_5fdarkred_1190',['RGB_DARKRED',['../cgb_8h.html#ae29b6947ac7dca7db513e59f1cfcbf51',1,'cgb.h']]],
- ['rgb_5fdarkyellow_1191',['RGB_DARKYELLOW',['../cgb_8h.html#a2727da9f8c0b09a67375575a00186e2a',1,'cgb.h']]],
- ['rgb_5fgreen_1192',['RGB_GREEN',['../cgb_8h.html#ab6c97468034c02fe204fd37036d9be15',1,'cgb.h']]],
- ['rgb_5flightflesh_1193',['RGB_LIGHTFLESH',['../cgb_8h.html#a90ef6e9a3d95516b1fef15076b1b4999',1,'cgb.h']]],
- ['rgb_5flightgray_1194',['RGB_LIGHTGRAY',['../cgb_8h.html#a80efbf7b13421922fb174f3e6a3e235c',1,'cgb.h']]],
- ['rgb_5forange_1195',['RGB_ORANGE',['../cgb_8h.html#a0a85d8d0da8edc5cce98f48701f903f7',1,'cgb.h']]],
- ['rgb_5fpink_1196',['RGB_PINK',['../cgb_8h.html#a59fb596d3d65cfc4d3cb7e5044b8b10a',1,'cgb.h']]],
- ['rgb_5fpurple_1197',['RGB_PURPLE',['../cgb_8h.html#a9d5a5f880df6bd4b64e6546839d41101',1,'cgb.h']]],
- ['rgb_5fred_1198',['RGB_RED',['../cgb_8h.html#aa039288455af8a3812a35aa1e7b903e4',1,'cgb.h']]],
- ['rgb_5fteal_1199',['RGB_TEAL',['../cgb_8h.html#a9c8c3710151b2258ea8269850498703f',1,'cgb.h']]],
- ['rgb_5fwhite_1200',['RGB_WHITE',['../cgb_8h.html#ac1771f95d9887118764bd8a074e537e1',1,'cgb.h']]],
- ['rgb_5fyellow_1201',['RGB_YELLOW',['../cgb_8h.html#ad74a18fca945f257dc9d1b99f9edbd40',1,'cgb.h']]]
+ ['ret_5fsize_1182',['RET_SIZE',['../setjmp_8h.html#a61c5519ad23b4ddbcc77c45352aac913',1,'setjmp.h']]],
+ ['rgb_1183',['RGB',['../cgb_8h.html#a4a118ad3ee36468a3fa616977a64864e',1,'cgb.h']]],
+ ['rgb_5faqua_1184',['RGB_AQUA',['../cgb_8h.html#ae4fe0c6cfa46b0c4804425f23bb48f4c',1,'cgb.h']]],
+ ['rgb_5fblack_1185',['RGB_BLACK',['../cgb_8h.html#ae168f0f9864d4ed4be7807b9783f17f1',1,'cgb.h']]],
+ ['rgb_5fblue_1186',['RGB_BLUE',['../cgb_8h.html#a0eff802f1ca228046476209dc01c76ad',1,'cgb.h']]],
+ ['rgb_5fbrown_1187',['RGB_BROWN',['../cgb_8h.html#a7c2a437dfb89d663a1c2f0a7a9256474',1,'cgb.h']]],
+ ['rgb_5fcyan_1188',['RGB_CYAN',['../cgb_8h.html#a2ce30ac984869b55594447722b9d0579',1,'cgb.h']]],
+ ['rgb_5fdarkblue_1189',['RGB_DARKBLUE',['../cgb_8h.html#ad44385fc245bbabf6da787dcc8930385',1,'cgb.h']]],
+ ['rgb_5fdarkgray_1190',['RGB_DARKGRAY',['../cgb_8h.html#a29b47e2361025eabcdc3bcbff2308044',1,'cgb.h']]],
+ ['rgb_5fdarkgreen_1191',['RGB_DARKGREEN',['../cgb_8h.html#a1ee7a5d8fd635e9132a2820a60f9789d',1,'cgb.h']]],
+ ['rgb_5fdarkred_1192',['RGB_DARKRED',['../cgb_8h.html#ae29b6947ac7dca7db513e59f1cfcbf51',1,'cgb.h']]],
+ ['rgb_5fdarkyellow_1193',['RGB_DARKYELLOW',['../cgb_8h.html#a2727da9f8c0b09a67375575a00186e2a',1,'cgb.h']]],
+ ['rgb_5fgreen_1194',['RGB_GREEN',['../cgb_8h.html#ab6c97468034c02fe204fd37036d9be15',1,'cgb.h']]],
+ ['rgb_5flightflesh_1195',['RGB_LIGHTFLESH',['../cgb_8h.html#a90ef6e9a3d95516b1fef15076b1b4999',1,'cgb.h']]],
+ ['rgb_5flightgray_1196',['RGB_LIGHTGRAY',['../cgb_8h.html#a80efbf7b13421922fb174f3e6a3e235c',1,'cgb.h']]],
+ ['rgb_5forange_1197',['RGB_ORANGE',['../cgb_8h.html#a0a85d8d0da8edc5cce98f48701f903f7',1,'cgb.h']]],
+ ['rgb_5fpink_1198',['RGB_PINK',['../cgb_8h.html#a59fb596d3d65cfc4d3cb7e5044b8b10a',1,'cgb.h']]],
+ ['rgb_5fpurple_1199',['RGB_PURPLE',['../cgb_8h.html#a9d5a5f880df6bd4b64e6546839d41101',1,'cgb.h']]],
+ ['rgb_5fred_1200',['RGB_RED',['../cgb_8h.html#aa039288455af8a3812a35aa1e7b903e4',1,'cgb.h']]],
+ ['rgb_5fteal_1201',['RGB_TEAL',['../cgb_8h.html#a9c8c3710151b2258ea8269850498703f',1,'cgb.h']]],
+ ['rgb_5fwhite_1202',['RGB_WHITE',['../cgb_8h.html#ac1771f95d9887118764bd8a074e537e1',1,'cgb.h']]],
+ ['rgb_5fyellow_1203',['RGB_YELLOW',['../cgb_8h.html#ad74a18fca945f257dc9d1b99f9edbd40',1,'cgb.h']]]
];
diff --git a/docs/api/search/defines_11.js b/docs/api/search/defines_11.js
index 1fbf72dc..0d2a1f3d 100644
--- a/docs/api/search/defines_11.js
+++ b/docs/api/search/defines_11.js
@@ -1,59 +1,59 @@
var searchData=
[
- ['s_5fflipx_1202',['S_FLIPX',['../gb_8h.html#ae97793b4039609f93b0f7f8bddb18011',1,'gb.h']]],
- ['s_5fflipy_1203',['S_FLIPY',['../gb_8h.html#a4bbb9cd6c38b2317de5256d1d889c63b',1,'gb.h']]],
- ['s_5fpalette_1204',['S_PALETTE',['../gb_8h.html#a54572cf6791463b6d60623837e0bb5a6',1,'gb.h']]],
- ['s_5fpriority_1205',['S_PRIORITY',['../gb_8h.html#a9506d04c2ec7d2442a52054f67d2b32f',1,'gb.h']]],
- ['schar_5fmax_1206',['SCHAR_MAX',['../limits_8h.html#a8c13fdd8c2840edf0cb04a65297037bb',1,'limits.h']]],
- ['schar_5fmin_1207',['SCHAR_MIN',['../limits_8h.html#aa05d197000ad5c143ada0fcd9379b236',1,'limits.h']]],
- ['screenheight_1208',['SCREENHEIGHT',['../gb_8h.html#ae189e98d0ef9263c37869ce1ff3710a5',1,'gb.h']]],
- ['screenwidth_1209',['SCREENWIDTH',['../gb_8h.html#ada0cc738d27aad251151e69cb8d250e1',1,'gb.h']]],
- ['setjmp_1210',['setjmp',['../setjmp_8h.html#a27d1a255c7e0d69afec2367bb85b60b0',1,'setjmp.h']]],
- ['sgb_5fatrc_5fen_1211',['SGB_ATRC_EN',['../sgb_8h.html#a3d81b1e455d60d760ee58e2685953775',1,'sgb.h']]],
- ['sgb_5fattr_5fblk_1212',['SGB_ATTR_BLK',['../sgb_8h.html#a6437bd5982922fffdbc7c5d8c643e357',1,'sgb.h']]],
- ['sgb_5fattr_5fchr_1213',['SGB_ATTR_CHR',['../sgb_8h.html#a41981a213b67bdc45bf8ed78f07e7bba',1,'sgb.h']]],
- ['sgb_5fattr_5fdiv_1214',['SGB_ATTR_DIV',['../sgb_8h.html#adcb3f50616813637283f88bfd4d53e22',1,'sgb.h']]],
- ['sgb_5fattr_5flin_1215',['SGB_ATTR_LIN',['../sgb_8h.html#ade5ba9723a9964e55cff72108149037a',1,'sgb.h']]],
- ['sgb_5fattr_5fset_1216',['SGB_ATTR_SET',['../sgb_8h.html#abf8d94c42e97e1ce640340657df70640',1,'sgb.h']]],
- ['sgb_5fattr_5ftrn_1217',['SGB_ATTR_TRN',['../sgb_8h.html#a1762d2df2599cf864400bac4934a5d61',1,'sgb.h']]],
- ['sgb_5fchr_5ftrn_1218',['SGB_CHR_TRN',['../sgb_8h.html#af4d8b611dfdda33039038375ee95f424',1,'sgb.h']]],
- ['sgb_5fdata_5fsnd_1219',['SGB_DATA_SND',['../sgb_8h.html#ae4fe10a0c9eca38d126f3a8701e3c9a2',1,'sgb.h']]],
- ['sgb_5fdata_5ftrn_1220',['SGB_DATA_TRN',['../sgb_8h.html#a862a450451cfccf138311089b85292fc',1,'sgb.h']]],
- ['sgb_5ficon_5fen_1221',['SGB_ICON_EN',['../sgb_8h.html#a46440df1df1597852a286d56c1a68a48',1,'sgb.h']]],
- ['sgb_5fjump_1222',['SGB_JUMP',['../sgb_8h.html#aac4217b88053614f70af5b1f32e72870',1,'sgb.h']]],
- ['sgb_5fmask_5fen_1223',['SGB_MASK_EN',['../sgb_8h.html#a20477d5772564b63de2d151e062dd5a7',1,'sgb.h']]],
- ['sgb_5fmlt_5freq_1224',['SGB_MLT_REQ',['../sgb_8h.html#a70aad9e5786ca8a4753c47583e88f8a2',1,'sgb.h']]],
- ['sgb_5fobj_5ftrn_1225',['SGB_OBJ_TRN',['../sgb_8h.html#a3b76bf1e9ac81da97c533fa3ab12096c',1,'sgb.h']]],
- ['sgb_5fpal_5f01_1226',['SGB_PAL_01',['../sgb_8h.html#a70bdb512d109fbcaeb95efa32e9dcaf5',1,'sgb.h']]],
- ['sgb_5fpal_5f03_1227',['SGB_PAL_03',['../sgb_8h.html#af9e1ca804555fad619db3f38b62a49e8',1,'sgb.h']]],
- ['sgb_5fpal_5f12_1228',['SGB_PAL_12',['../sgb_8h.html#a8d633d52d4a7adfaef516953d5e8552a',1,'sgb.h']]],
- ['sgb_5fpal_5f23_1229',['SGB_PAL_23',['../sgb_8h.html#acaa2f1ac9949189896582fc5ad0823b1',1,'sgb.h']]],
- ['sgb_5fpal_5fset_1230',['SGB_PAL_SET',['../sgb_8h.html#ad9023ed1d8dd4a2eebc55a376207f3d2',1,'sgb.h']]],
- ['sgb_5fpal_5ftrn_1231',['SGB_PAL_TRN',['../sgb_8h.html#ac490ce8566f869727e8b00fabb1c9fc6',1,'sgb.h']]],
- ['sgb_5fpct_5ftrn_1232',['SGB_PCT_TRN',['../sgb_8h.html#ac0bf9d5dc54d711fd14f44bf58eaa5db',1,'sgb.h']]],
- ['sgb_5fsou_5ftrn_1233',['SGB_SOU_TRN',['../sgb_8h.html#a82a976ea6a32ae0078a27e3c06143bcf',1,'sgb.h']]],
- ['sgb_5fsound_1234',['SGB_SOUND',['../sgb_8h.html#a42e0fbc58e65874e0a76d7f33a322ce8',1,'sgb.h']]],
- ['sgb_5ftest_5fen_1235',['SGB_TEST_EN',['../sgb_8h.html#a8e644a43af63932283e9c78a472881dc',1,'sgb.h']]],
- ['show_5fbkg_1236',['SHOW_BKG',['../gb_8h.html#a8e3f36aa68ac036695816757f2a1322c',1,'gb.h']]],
- ['show_5fsprites_1237',['SHOW_SPRITES',['../gb_8h.html#a495bc9f405f916f02ad5d97e6e730134',1,'gb.h']]],
- ['show_5fwin_1238',['SHOW_WIN',['../gb_8h.html#ab19da2ab719bb8897bc0843a84af28f8',1,'gb.h']]],
- ['shrt_5fmax_1239',['SHRT_MAX',['../limits_8h.html#a1f758438cb1c7bcf55da2431f5e319e6',1,'limits.h']]],
- ['shrt_5fmin_1240',['SHRT_MIN',['../limits_8h.html#ae59de266aceffa1c258ac13f45fe0d18',1,'limits.h']]],
- ['sig_5fatomic_5fmax_1241',['SIG_ATOMIC_MAX',['../stdint_8h.html#a1f5fe9445d0ad0bee21bab1de4cc3e58',1,'stdint.h']]],
- ['sig_5fatomic_5fmin_1242',['SIG_ATOMIC_MIN',['../stdint_8h.html#a21e605b9ac3a03b6de93cdf5a69e129f',1,'stdint.h']]],
- ['signed_1243',['SIGNED',['../drawing_8h.html#a4dec4d9b2bace4f5bc6e6337f4086837',1,'drawing.h']]],
- ['sio_5fiflag_1244',['SIO_IFLAG',['../gb_8h.html#ad90564458646c5646b3880b93db3443e',1,'gb.h']]],
- ['size_5fmax_1245',['SIZE_MAX',['../stdint_8h.html#a3c75bb398badb69c7577b21486f9963f',1,'stdint.h']]],
- ['solid_1246',['SOLID',['../drawing_8h.html#aa8abfd58ea514228abd69d8f6330e91d',1,'drawing.h']]],
- ['sp_5fsize_1247',['SP_SIZE',['../setjmp_8h.html#aebec2c4d6fc67c86fbb297bd79efb27c',1,'setjmp.h']]],
- ['sprites_5f8x16_1248',['SPRITES_8x16',['../gb_8h.html#af91d252f07f4764996154820f970c101',1,'gb.h']]],
- ['sprites_5f8x8_1249',['SPRITES_8x8',['../gb_8h.html#aa87bec0d134136fdb727f52cb773b792',1,'gb.h']]],
- ['spx_5fsize_1250',['SPX_SIZE',['../setjmp_8h.html#ad27470e8d39238686f96b46d5b9deb40',1,'setjmp.h']]],
- ['switch_5f16_5f8_5fmode_5fmbc1_1251',['SWITCH_16_8_MODE_MBC1',['../gb_8h.html#a0c689c5a814f1c347c4d98f28ed6c7d6',1,'gb.h']]],
- ['switch_5f4_5f32_5fmode_5fmbc1_1252',['SWITCH_4_32_MODE_MBC1',['../gb_8h.html#aa5d64e386a00b373f22ffdc5a152c7ba',1,'gb.h']]],
- ['switch_5fram_5fmbc1_1253',['SWITCH_RAM_MBC1',['../gb_8h.html#a38ea3e4dfe02b8eae70df27f39d4a951',1,'gb.h']]],
- ['switch_5fram_5fmbc5_1254',['SWITCH_RAM_MBC5',['../gb_8h.html#a361d5055a7ae880fc1c9d6e0d1164fd6',1,'gb.h']]],
- ['switch_5from_5fmbc1_1255',['SWITCH_ROM_MBC1',['../gb_8h.html#a19558f5bbc9fea767f945001ae9cd13f',1,'gb.h']]],
- ['switch_5from_5fmbc5_1256',['SWITCH_ROM_MBC5',['../gb_8h.html#a92d040284342702026eb19dab59b586e',1,'gb.h']]],
- ['switch_5from_5fmbc5_5f8m_1257',['SWITCH_ROM_MBC5_8M',['../gb_8h.html#a6c15ebc660abd3a978137493ab63ffe9',1,'gb.h']]]
+ ['s_5fflipx_1204',['S_FLIPX',['../gb_8h.html#ae97793b4039609f93b0f7f8bddb18011',1,'gb.h']]],
+ ['s_5fflipy_1205',['S_FLIPY',['../gb_8h.html#a4bbb9cd6c38b2317de5256d1d889c63b',1,'gb.h']]],
+ ['s_5fpalette_1206',['S_PALETTE',['../gb_8h.html#a54572cf6791463b6d60623837e0bb5a6',1,'gb.h']]],
+ ['s_5fpriority_1207',['S_PRIORITY',['../gb_8h.html#a9506d04c2ec7d2442a52054f67d2b32f',1,'gb.h']]],
+ ['schar_5fmax_1208',['SCHAR_MAX',['../limits_8h.html#a8c13fdd8c2840edf0cb04a65297037bb',1,'limits.h']]],
+ ['schar_5fmin_1209',['SCHAR_MIN',['../limits_8h.html#aa05d197000ad5c143ada0fcd9379b236',1,'limits.h']]],
+ ['screenheight_1210',['SCREENHEIGHT',['../gb_8h.html#ae189e98d0ef9263c37869ce1ff3710a5',1,'gb.h']]],
+ ['screenwidth_1211',['SCREENWIDTH',['../gb_8h.html#ada0cc738d27aad251151e69cb8d250e1',1,'gb.h']]],
+ ['setjmp_1212',['setjmp',['../setjmp_8h.html#a27d1a255c7e0d69afec2367bb85b60b0',1,'setjmp.h']]],
+ ['sgb_5fatrc_5fen_1213',['SGB_ATRC_EN',['../sgb_8h.html#a3d81b1e455d60d760ee58e2685953775',1,'sgb.h']]],
+ ['sgb_5fattr_5fblk_1214',['SGB_ATTR_BLK',['../sgb_8h.html#a6437bd5982922fffdbc7c5d8c643e357',1,'sgb.h']]],
+ ['sgb_5fattr_5fchr_1215',['SGB_ATTR_CHR',['../sgb_8h.html#a41981a213b67bdc45bf8ed78f07e7bba',1,'sgb.h']]],
+ ['sgb_5fattr_5fdiv_1216',['SGB_ATTR_DIV',['../sgb_8h.html#adcb3f50616813637283f88bfd4d53e22',1,'sgb.h']]],
+ ['sgb_5fattr_5flin_1217',['SGB_ATTR_LIN',['../sgb_8h.html#ade5ba9723a9964e55cff72108149037a',1,'sgb.h']]],
+ ['sgb_5fattr_5fset_1218',['SGB_ATTR_SET',['../sgb_8h.html#abf8d94c42e97e1ce640340657df70640',1,'sgb.h']]],
+ ['sgb_5fattr_5ftrn_1219',['SGB_ATTR_TRN',['../sgb_8h.html#a1762d2df2599cf864400bac4934a5d61',1,'sgb.h']]],
+ ['sgb_5fchr_5ftrn_1220',['SGB_CHR_TRN',['../sgb_8h.html#af4d8b611dfdda33039038375ee95f424',1,'sgb.h']]],
+ ['sgb_5fdata_5fsnd_1221',['SGB_DATA_SND',['../sgb_8h.html#ae4fe10a0c9eca38d126f3a8701e3c9a2',1,'sgb.h']]],
+ ['sgb_5fdata_5ftrn_1222',['SGB_DATA_TRN',['../sgb_8h.html#a862a450451cfccf138311089b85292fc',1,'sgb.h']]],
+ ['sgb_5ficon_5fen_1223',['SGB_ICON_EN',['../sgb_8h.html#a46440df1df1597852a286d56c1a68a48',1,'sgb.h']]],
+ ['sgb_5fjump_1224',['SGB_JUMP',['../sgb_8h.html#aac4217b88053614f70af5b1f32e72870',1,'sgb.h']]],
+ ['sgb_5fmask_5fen_1225',['SGB_MASK_EN',['../sgb_8h.html#a20477d5772564b63de2d151e062dd5a7',1,'sgb.h']]],
+ ['sgb_5fmlt_5freq_1226',['SGB_MLT_REQ',['../sgb_8h.html#a70aad9e5786ca8a4753c47583e88f8a2',1,'sgb.h']]],
+ ['sgb_5fobj_5ftrn_1227',['SGB_OBJ_TRN',['../sgb_8h.html#a3b76bf1e9ac81da97c533fa3ab12096c',1,'sgb.h']]],
+ ['sgb_5fpal_5f01_1228',['SGB_PAL_01',['../sgb_8h.html#a70bdb512d109fbcaeb95efa32e9dcaf5',1,'sgb.h']]],
+ ['sgb_5fpal_5f03_1229',['SGB_PAL_03',['../sgb_8h.html#af9e1ca804555fad619db3f38b62a49e8',1,'sgb.h']]],
+ ['sgb_5fpal_5f12_1230',['SGB_PAL_12',['../sgb_8h.html#a8d633d52d4a7adfaef516953d5e8552a',1,'sgb.h']]],
+ ['sgb_5fpal_5f23_1231',['SGB_PAL_23',['../sgb_8h.html#acaa2f1ac9949189896582fc5ad0823b1',1,'sgb.h']]],
+ ['sgb_5fpal_5fset_1232',['SGB_PAL_SET',['../sgb_8h.html#ad9023ed1d8dd4a2eebc55a376207f3d2',1,'sgb.h']]],
+ ['sgb_5fpal_5ftrn_1233',['SGB_PAL_TRN',['../sgb_8h.html#ac490ce8566f869727e8b00fabb1c9fc6',1,'sgb.h']]],
+ ['sgb_5fpct_5ftrn_1234',['SGB_PCT_TRN',['../sgb_8h.html#ac0bf9d5dc54d711fd14f44bf58eaa5db',1,'sgb.h']]],
+ ['sgb_5fsou_5ftrn_1235',['SGB_SOU_TRN',['../sgb_8h.html#a82a976ea6a32ae0078a27e3c06143bcf',1,'sgb.h']]],
+ ['sgb_5fsound_1236',['SGB_SOUND',['../sgb_8h.html#a42e0fbc58e65874e0a76d7f33a322ce8',1,'sgb.h']]],
+ ['sgb_5ftest_5fen_1237',['SGB_TEST_EN',['../sgb_8h.html#a8e644a43af63932283e9c78a472881dc',1,'sgb.h']]],
+ ['show_5fbkg_1238',['SHOW_BKG',['../gb_8h.html#a8e3f36aa68ac036695816757f2a1322c',1,'gb.h']]],
+ ['show_5fsprites_1239',['SHOW_SPRITES',['../gb_8h.html#a495bc9f405f916f02ad5d97e6e730134',1,'gb.h']]],
+ ['show_5fwin_1240',['SHOW_WIN',['../gb_8h.html#ab19da2ab719bb8897bc0843a84af28f8',1,'gb.h']]],
+ ['shrt_5fmax_1241',['SHRT_MAX',['../limits_8h.html#a1f758438cb1c7bcf55da2431f5e319e6',1,'limits.h']]],
+ ['shrt_5fmin_1242',['SHRT_MIN',['../limits_8h.html#ae59de266aceffa1c258ac13f45fe0d18',1,'limits.h']]],
+ ['sig_5fatomic_5fmax_1243',['SIG_ATOMIC_MAX',['../stdint_8h.html#a1f5fe9445d0ad0bee21bab1de4cc3e58',1,'stdint.h']]],
+ ['sig_5fatomic_5fmin_1244',['SIG_ATOMIC_MIN',['../stdint_8h.html#a21e605b9ac3a03b6de93cdf5a69e129f',1,'stdint.h']]],
+ ['signed_1245',['SIGNED',['../drawing_8h.html#a4dec4d9b2bace4f5bc6e6337f4086837',1,'drawing.h']]],
+ ['sio_5fiflag_1246',['SIO_IFLAG',['../gb_8h.html#ad90564458646c5646b3880b93db3443e',1,'gb.h']]],
+ ['size_5fmax_1247',['SIZE_MAX',['../stdint_8h.html#a3c75bb398badb69c7577b21486f9963f',1,'stdint.h']]],
+ ['solid_1248',['SOLID',['../drawing_8h.html#aa8abfd58ea514228abd69d8f6330e91d',1,'drawing.h']]],
+ ['sp_5fsize_1249',['SP_SIZE',['../setjmp_8h.html#aebec2c4d6fc67c86fbb297bd79efb27c',1,'setjmp.h']]],
+ ['sprites_5f8x16_1250',['SPRITES_8x16',['../gb_8h.html#af91d252f07f4764996154820f970c101',1,'gb.h']]],
+ ['sprites_5f8x8_1251',['SPRITES_8x8',['../gb_8h.html#aa87bec0d134136fdb727f52cb773b792',1,'gb.h']]],
+ ['spx_5fsize_1252',['SPX_SIZE',['../setjmp_8h.html#ad27470e8d39238686f96b46d5b9deb40',1,'setjmp.h']]],
+ ['switch_5f16_5f8_5fmode_5fmbc1_1253',['SWITCH_16_8_MODE_MBC1',['../gb_8h.html#a0c689c5a814f1c347c4d98f28ed6c7d6',1,'gb.h']]],
+ ['switch_5f4_5f32_5fmode_5fmbc1_1254',['SWITCH_4_32_MODE_MBC1',['../gb_8h.html#aa5d64e386a00b373f22ffdc5a152c7ba',1,'gb.h']]],
+ ['switch_5fram_5fmbc1_1255',['SWITCH_RAM_MBC1',['../gb_8h.html#a38ea3e4dfe02b8eae70df27f39d4a951',1,'gb.h']]],
+ ['switch_5fram_5fmbc5_1256',['SWITCH_RAM_MBC5',['../gb_8h.html#a361d5055a7ae880fc1c9d6e0d1164fd6',1,'gb.h']]],
+ ['switch_5from_5fmbc1_1257',['SWITCH_ROM_MBC1',['../gb_8h.html#a19558f5bbc9fea767f945001ae9cd13f',1,'gb.h']]],
+ ['switch_5from_5fmbc5_1258',['SWITCH_ROM_MBC5',['../gb_8h.html#a92d040284342702026eb19dab59b586e',1,'gb.h']]],
+ ['switch_5from_5fmbc5_5f8m_1259',['SWITCH_ROM_MBC5_8M',['../gb_8h.html#a6c15ebc660abd3a978137493ab63ffe9',1,'gb.h']]]
];
diff --git a/docs/api/search/defines_12.js b/docs/api/search/defines_12.js
index f8799749..57c5984f 100644
--- a/docs/api/search/defines_12.js
+++ b/docs/api/search/defines_12.js
@@ -1,27 +1,27 @@
var searchData=
[
- ['tim_5fiflag_1258',['TIM_IFLAG',['../gb_8h.html#a604256210ec5b90b68185e1a18efab49',1,'gb.h']]],
- ['to_5ffar_5fptr_1259',['TO_FAR_PTR',['../far__ptr_8h.html#a0c227677a96f9bf7e84a90922f2f8708',1,'far_ptr.h']]],
- ['true_1260',['TRUE',['../types_8h.html#aa8cecfc5c5c054d2875c03e77b7be15d',1,'TRUE(): types.h'],['../stdbool_8h.html#a41f9c5fb8b08eb5dc3edce4dcb37fee7',1,'true(): stdbool.h']]],
- ['typeof_5farray_1261',['TYPEOF_ARRAY',['../typeof_8h.html#ac627e9a5f9b283cb8904d73c941f1896',1,'typeof.h']]],
- ['typeof_5fbit_1262',['TYPEOF_BIT',['../typeof_8h.html#a5b91f9d826e3c5c6873bc86cdce3d517',1,'typeof.h']]],
- ['typeof_5fbitfield_1263',['TYPEOF_BITFIELD',['../typeof_8h.html#a5b9f605bb8dcac27ddfab4e9a8c9a2ca',1,'typeof.h']]],
- ['typeof_5fchar_1264',['TYPEOF_CHAR',['../typeof_8h.html#ae042a4e85033237ee9fbc1af3cac7025',1,'typeof.h']]],
- ['typeof_5fcpointer_1265',['TYPEOF_CPOINTER',['../typeof_8h.html#a6131cee0fe0abf1cf2fcfcec830535d4',1,'typeof.h']]],
- ['typeof_5feeppointer_1266',['TYPEOF_EEPPOINTER',['../typeof_8h.html#a73d0c1f1fc515b199acb5631f8a16898',1,'typeof.h']]],
- ['typeof_5ffixed16x16_1267',['TYPEOF_FIXED16X16',['../typeof_8h.html#a709c014873866243abc0275099f676f5',1,'typeof.h']]],
- ['typeof_5ffloat_1268',['TYPEOF_FLOAT',['../typeof_8h.html#a3d694a422fb7a54f15ddf1c9749567f7',1,'typeof.h']]],
- ['typeof_5ffpointer_1269',['TYPEOF_FPOINTER',['../typeof_8h.html#a5301fd3500fb9f9454a17f9d4c5d0e8c',1,'typeof.h']]],
- ['typeof_5ffunction_1270',['TYPEOF_FUNCTION',['../typeof_8h.html#a3adf36b394d11d9b35f45ad8c4544670',1,'typeof.h']]],
- ['typeof_5fgpointer_1271',['TYPEOF_GPOINTER',['../typeof_8h.html#adbec06ba3e6f0e2dcbefd788978f9ad6',1,'typeof.h']]],
- ['typeof_5fint_1272',['TYPEOF_INT',['../typeof_8h.html#a4bb94b94304a21b7bd462be44f9d197a',1,'typeof.h']]],
- ['typeof_5fipointer_1273',['TYPEOF_IPOINTER',['../typeof_8h.html#aa56dfc698692fb3f2d64c1a4b192f9c0',1,'typeof.h']]],
- ['typeof_5flong_1274',['TYPEOF_LONG',['../typeof_8h.html#ab4833544b1f4060806106baa0eb916e6',1,'typeof.h']]],
- ['typeof_5fpointer_1275',['TYPEOF_POINTER',['../typeof_8h.html#a2541fdaacae83bbcc99dcedf464c7c94',1,'typeof.h']]],
- ['typeof_5fppointer_1276',['TYPEOF_PPOINTER',['../typeof_8h.html#ad38c6e5ceee5c5fe3703690fc32b23ae',1,'typeof.h']]],
- ['typeof_5fsbit_1277',['TYPEOF_SBIT',['../typeof_8h.html#a09fcac98c1e69b32ea223eada74e30bd',1,'typeof.h']]],
- ['typeof_5fsfr_1278',['TYPEOF_SFR',['../typeof_8h.html#aae32132bbca6df6423182122d95b00cd',1,'typeof.h']]],
- ['typeof_5fshort_1279',['TYPEOF_SHORT',['../typeof_8h.html#a58af351d7955729a79e425a88bf86bab',1,'typeof.h']]],
- ['typeof_5fstruct_1280',['TYPEOF_STRUCT',['../typeof_8h.html#a4f9ce6ed9178ad58f706e74cd8c24e1f',1,'typeof.h']]],
- ['typeof_5fvoid_1281',['TYPEOF_VOID',['../typeof_8h.html#a03582306431a63d84cc721132ed683c8',1,'typeof.h']]]
+ ['tim_5fiflag_1260',['TIM_IFLAG',['../gb_8h.html#a604256210ec5b90b68185e1a18efab49',1,'gb.h']]],
+ ['to_5ffar_5fptr_1261',['TO_FAR_PTR',['../far__ptr_8h.html#a0c227677a96f9bf7e84a90922f2f8708',1,'far_ptr.h']]],
+ ['true_1262',['TRUE',['../types_8h.html#aa8cecfc5c5c054d2875c03e77b7be15d',1,'TRUE(): types.h'],['../stdbool_8h.html#a41f9c5fb8b08eb5dc3edce4dcb37fee7',1,'true(): stdbool.h']]],
+ ['typeof_5farray_1263',['TYPEOF_ARRAY',['../typeof_8h.html#ac627e9a5f9b283cb8904d73c941f1896',1,'typeof.h']]],
+ ['typeof_5fbit_1264',['TYPEOF_BIT',['../typeof_8h.html#a5b91f9d826e3c5c6873bc86cdce3d517',1,'typeof.h']]],
+ ['typeof_5fbitfield_1265',['TYPEOF_BITFIELD',['../typeof_8h.html#a5b9f605bb8dcac27ddfab4e9a8c9a2ca',1,'typeof.h']]],
+ ['typeof_5fchar_1266',['TYPEOF_CHAR',['../typeof_8h.html#ae042a4e85033237ee9fbc1af3cac7025',1,'typeof.h']]],
+ ['typeof_5fcpointer_1267',['TYPEOF_CPOINTER',['../typeof_8h.html#a6131cee0fe0abf1cf2fcfcec830535d4',1,'typeof.h']]],
+ ['typeof_5feeppointer_1268',['TYPEOF_EEPPOINTER',['../typeof_8h.html#a73d0c1f1fc515b199acb5631f8a16898',1,'typeof.h']]],
+ ['typeof_5ffixed16x16_1269',['TYPEOF_FIXED16X16',['../typeof_8h.html#a709c014873866243abc0275099f676f5',1,'typeof.h']]],
+ ['typeof_5ffloat_1270',['TYPEOF_FLOAT',['../typeof_8h.html#a3d694a422fb7a54f15ddf1c9749567f7',1,'typeof.h']]],
+ ['typeof_5ffpointer_1271',['TYPEOF_FPOINTER',['../typeof_8h.html#a5301fd3500fb9f9454a17f9d4c5d0e8c',1,'typeof.h']]],
+ ['typeof_5ffunction_1272',['TYPEOF_FUNCTION',['../typeof_8h.html#a3adf36b394d11d9b35f45ad8c4544670',1,'typeof.h']]],
+ ['typeof_5fgpointer_1273',['TYPEOF_GPOINTER',['../typeof_8h.html#adbec06ba3e6f0e2dcbefd788978f9ad6',1,'typeof.h']]],
+ ['typeof_5fint_1274',['TYPEOF_INT',['../typeof_8h.html#a4bb94b94304a21b7bd462be44f9d197a',1,'typeof.h']]],
+ ['typeof_5fipointer_1275',['TYPEOF_IPOINTER',['../typeof_8h.html#aa56dfc698692fb3f2d64c1a4b192f9c0',1,'typeof.h']]],
+ ['typeof_5flong_1276',['TYPEOF_LONG',['../typeof_8h.html#ab4833544b1f4060806106baa0eb916e6',1,'typeof.h']]],
+ ['typeof_5fpointer_1277',['TYPEOF_POINTER',['../typeof_8h.html#a2541fdaacae83bbcc99dcedf464c7c94',1,'typeof.h']]],
+ ['typeof_5fppointer_1278',['TYPEOF_PPOINTER',['../typeof_8h.html#ad38c6e5ceee5c5fe3703690fc32b23ae',1,'typeof.h']]],
+ ['typeof_5fsbit_1279',['TYPEOF_SBIT',['../typeof_8h.html#a09fcac98c1e69b32ea223eada74e30bd',1,'typeof.h']]],
+ ['typeof_5fsfr_1280',['TYPEOF_SFR',['../typeof_8h.html#aae32132bbca6df6423182122d95b00cd',1,'typeof.h']]],
+ ['typeof_5fshort_1281',['TYPEOF_SHORT',['../typeof_8h.html#a58af351d7955729a79e425a88bf86bab',1,'typeof.h']]],
+ ['typeof_5fstruct_1282',['TYPEOF_STRUCT',['../typeof_8h.html#a4f9ce6ed9178ad58f706e74cd8c24e1f',1,'typeof.h']]],
+ ['typeof_5fvoid_1283',['TYPEOF_VOID',['../typeof_8h.html#a03582306431a63d84cc721132ed683c8',1,'typeof.h']]]
];
diff --git a/docs/api/search/defines_13.js b/docs/api/search/defines_13.js
index 277cbc9d..3c933569 100644
--- a/docs/api/search/defines_13.js
+++ b/docs/api/search/defines_13.js
@@ -1,29 +1,29 @@
var searchData=
[
- ['uchar_5fmax_1282',['UCHAR_MAX',['../limits_8h.html#a4066e640ee269d5d8f83ff6643b7af5f',1,'limits.h']]],
- ['uint16_5fc_1283',['UINT16_C',['../stdint_8h.html#af525dddf7f072ee85c953107123ff1f6',1,'stdint.h']]],
- ['uint16_5fmax_1284',['UINT16_MAX',['../stdint_8h.html#a3ea490c9b3617d4479bd80ef93cd5602',1,'stdint.h']]],
- ['uint32_5fc_1285',['UINT32_C',['../stdint_8h.html#a87b9ec7df1524edf020b074bbae32d6d',1,'stdint.h']]],
- ['uint32_5fmax_1286',['UINT32_MAX',['../stdint_8h.html#ab5eb23180f7cc12b7d6c04a8ec067fdd',1,'stdint.h']]],
- ['uint8_5fc_1287',['UINT8_C',['../stdint_8h.html#af77373faf472a16283aad2014724192d',1,'stdint.h']]],
- ['uint8_5fmax_1288',['UINT8_MAX',['../stdint_8h.html#aeb4e270a084ee26fe73e799861bd0252',1,'stdint.h']]],
- ['uint_5ffast16_5fmax_1289',['UINT_FAST16_MAX',['../stdint_8h.html#aed28ca63d9b222f6f1377358fe73a183',1,'stdint.h']]],
- ['uint_5ffast32_5fmax_1290',['UINT_FAST32_MAX',['../stdint_8h.html#ad51246a178143208b2db3315efd21c45',1,'stdint.h']]],
- ['uint_5ffast8_5fmax_1291',['UINT_FAST8_MAX',['../stdint_8h.html#a2c6f97ea2d76d0cf6260c84046cdb44e',1,'stdint.h']]],
- ['uint_5fleast16_5fmax_1292',['UINT_LEAST16_MAX',['../stdint_8h.html#a6ef6a1a518bbf516ca8b0180b11c358f',1,'stdint.h']]],
- ['uint_5fleast32_5fmax_1293',['UINT_LEAST32_MAX',['../stdint_8h.html#a70cad8bacc9a6db301e1cdc86cc8d571',1,'stdint.h']]],
- ['uint_5fleast8_5fmax_1294',['UINT_LEAST8_MAX',['../stdint_8h.html#a2a80bde77ee1698d0f42f334adad4f2b',1,'stdint.h']]],
- ['uint_5fmax_1295',['UINT_MAX',['../limits_8h.html#ac998ea02fbd821fc123d60445ce76f38',1,'limits.h']]],
- ['uint_5fmin_1296',['UINT_MIN',['../limits_8h.html#a4c5cca78586f61bea3640a1563a43819',1,'limits.h']]],
- ['uintmax_5fc_1297',['UINTMAX_C',['../stdint_8h.html#a00d3f5dd8a8cbd9433d74390bfb2ecef',1,'stdint.h']]],
- ['uintmax_5fmax_1298',['UINTMAX_MAX',['../stdint_8h.html#aa54fd5210434219e9027bfa0f0e325c8',1,'stdint.h']]],
- ['uintptr_5fmax_1299',['UINTPTR_MAX',['../stdint_8h.html#ab2355300ea19395357e62d780f4dd073',1,'stdint.h']]],
- ['ulong_5fmax_1300',['ULONG_MAX',['../limits_8h.html#a41c51926a1997aab3503f9083935e06c',1,'limits.h']]],
- ['ulong_5fmin_1301',['ULONG_MIN',['../limits_8h.html#a174a3b1d61499b676a2ad2efc8f224c5',1,'limits.h']]],
- ['unsigned_1302',['UNSIGNED',['../drawing_8h.html#a08cbc66092284f7da94279f986a0aae9',1,'drawing.h']]],
- ['use_5fc_5fmemcpy_1303',['USE_C_MEMCPY',['../provides_8h.html#a9dd4f1ec2939e7beb7ef40e350cbba47',1,'provides.h']]],
- ['use_5fc_5fstrcmp_1304',['USE_C_STRCMP',['../provides_8h.html#a809a7bd0afcfb7500b5108a9e976b85c',1,'provides.h']]],
- ['use_5fc_5fstrcpy_1305',['USE_C_STRCPY',['../provides_8h.html#ac6678abba8f5929bc8b33f3202e568f0',1,'provides.h']]],
- ['ushrt_5fmax_1306',['USHRT_MAX',['../limits_8h.html#a689b119da994dece91d44b5aeac643ed',1,'limits.h']]],
- ['ushrt_5fmin_1307',['USHRT_MIN',['../limits_8h.html#a57f617d9cf5cce12e8499f7512ebd948',1,'limits.h']]]
+ ['uchar_5fmax_1284',['UCHAR_MAX',['../limits_8h.html#a4066e640ee269d5d8f83ff6643b7af5f',1,'limits.h']]],
+ ['uint16_5fc_1285',['UINT16_C',['../stdint_8h.html#af525dddf7f072ee85c953107123ff1f6',1,'stdint.h']]],
+ ['uint16_5fmax_1286',['UINT16_MAX',['../stdint_8h.html#a3ea490c9b3617d4479bd80ef93cd5602',1,'stdint.h']]],
+ ['uint32_5fc_1287',['UINT32_C',['../stdint_8h.html#a87b9ec7df1524edf020b074bbae32d6d',1,'stdint.h']]],
+ ['uint32_5fmax_1288',['UINT32_MAX',['../stdint_8h.html#ab5eb23180f7cc12b7d6c04a8ec067fdd',1,'stdint.h']]],
+ ['uint8_5fc_1289',['UINT8_C',['../stdint_8h.html#af77373faf472a16283aad2014724192d',1,'stdint.h']]],
+ ['uint8_5fmax_1290',['UINT8_MAX',['../stdint_8h.html#aeb4e270a084ee26fe73e799861bd0252',1,'stdint.h']]],
+ ['uint_5ffast16_5fmax_1291',['UINT_FAST16_MAX',['../stdint_8h.html#aed28ca63d9b222f6f1377358fe73a183',1,'stdint.h']]],
+ ['uint_5ffast32_5fmax_1292',['UINT_FAST32_MAX',['../stdint_8h.html#ad51246a178143208b2db3315efd21c45',1,'stdint.h']]],
+ ['uint_5ffast8_5fmax_1293',['UINT_FAST8_MAX',['../stdint_8h.html#a2c6f97ea2d76d0cf6260c84046cdb44e',1,'stdint.h']]],
+ ['uint_5fleast16_5fmax_1294',['UINT_LEAST16_MAX',['../stdint_8h.html#a6ef6a1a518bbf516ca8b0180b11c358f',1,'stdint.h']]],
+ ['uint_5fleast32_5fmax_1295',['UINT_LEAST32_MAX',['../stdint_8h.html#a70cad8bacc9a6db301e1cdc86cc8d571',1,'stdint.h']]],
+ ['uint_5fleast8_5fmax_1296',['UINT_LEAST8_MAX',['../stdint_8h.html#a2a80bde77ee1698d0f42f334adad4f2b',1,'stdint.h']]],
+ ['uint_5fmax_1297',['UINT_MAX',['../limits_8h.html#ac998ea02fbd821fc123d60445ce76f38',1,'limits.h']]],
+ ['uint_5fmin_1298',['UINT_MIN',['../limits_8h.html#a4c5cca78586f61bea3640a1563a43819',1,'limits.h']]],
+ ['uintmax_5fc_1299',['UINTMAX_C',['../stdint_8h.html#a00d3f5dd8a8cbd9433d74390bfb2ecef',1,'stdint.h']]],
+ ['uintmax_5fmax_1300',['UINTMAX_MAX',['../stdint_8h.html#aa54fd5210434219e9027bfa0f0e325c8',1,'stdint.h']]],
+ ['uintptr_5fmax_1301',['UINTPTR_MAX',['../stdint_8h.html#ab2355300ea19395357e62d780f4dd073',1,'stdint.h']]],
+ ['ulong_5fmax_1302',['ULONG_MAX',['../limits_8h.html#a41c51926a1997aab3503f9083935e06c',1,'limits.h']]],
+ ['ulong_5fmin_1303',['ULONG_MIN',['../limits_8h.html#a174a3b1d61499b676a2ad2efc8f224c5',1,'limits.h']]],
+ ['unsigned_1304',['UNSIGNED',['../drawing_8h.html#a08cbc66092284f7da94279f986a0aae9',1,'drawing.h']]],
+ ['use_5fc_5fmemcpy_1305',['USE_C_MEMCPY',['../provides_8h.html#a9dd4f1ec2939e7beb7ef40e350cbba47',1,'provides.h']]],
+ ['use_5fc_5fstrcmp_1306',['USE_C_STRCMP',['../provides_8h.html#a809a7bd0afcfb7500b5108a9e976b85c',1,'provides.h']]],
+ ['use_5fc_5fstrcpy_1307',['USE_C_STRCPY',['../provides_8h.html#ac6678abba8f5929bc8b33f3202e568f0',1,'provides.h']]],
+ ['ushrt_5fmax_1308',['USHRT_MAX',['../limits_8h.html#a689b119da994dece91d44b5aeac643ed',1,'limits.h']]],
+ ['ushrt_5fmin_1309',['USHRT_MIN',['../limits_8h.html#a57f617d9cf5cce12e8499f7512ebd948',1,'limits.h']]]
];
diff --git a/docs/api/search/defines_14.js b/docs/api/search/defines_14.js
index 9ff09eae..2aef8a11 100644
--- a/docs/api/search/defines_14.js
+++ b/docs/api/search/defines_14.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['va_5farg_1308',['va_arg',['../asm_2gbz80_2stdarg_8h.html#af4d89980b2bdeb5b37bbaa323d108bbc',1,'stdarg.h']]],
- ['va_5fend_1309',['va_end',['../asm_2gbz80_2stdarg_8h.html#aa042dbf8cc345b3a522d6f706a78ddbd',1,'stdarg.h']]],
- ['va_5fstart_1310',['va_start',['../asm_2gbz80_2stdarg_8h.html#aa385efb7a67df5acc5e06cf3bdc8802f',1,'stdarg.h']]],
- ['vbl_5fiflag_1311',['VBL_IFLAG',['../gb_8h.html#a2ca7720b9a5da9b2173e1f74dba85541',1,'gb.h']]]
+ ['va_5farg_1310',['va_arg',['../asm_2gbz80_2stdarg_8h.html#af4d89980b2bdeb5b37bbaa323d108bbc',1,'stdarg.h']]],
+ ['va_5fend_1311',['va_end',['../asm_2gbz80_2stdarg_8h.html#aa042dbf8cc345b3a522d6f706a78ddbd',1,'stdarg.h']]],
+ ['va_5fstart_1312',['va_start',['../asm_2gbz80_2stdarg_8h.html#aa385efb7a67df5acc5e06cf3bdc8802f',1,'stdarg.h']]],
+ ['vbl_5fiflag_1313',['VBL_IFLAG',['../gb_8h.html#a2ca7720b9a5da9b2173e1f74dba85541',1,'gb.h']]]
];
diff --git a/docs/api/search/defines_15.js b/docs/api/search/defines_15.js
index 06cd2b33..d91d7894 100644
--- a/docs/api/search/defines_15.js
+++ b/docs/api/search/defines_15.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['wchar_5fmax_1312',['WCHAR_MAX',['../stdint_8h.html#a2a823f3ccf2306cfbaa34d8addf66010',1,'stdint.h']]],
- ['wchar_5fmin_1313',['WCHAR_MIN',['../stdint_8h.html#a051084d5ebcabf282d9ca9bb2b891a78',1,'stdint.h']]],
- ['white_1314',['WHITE',['../drawing_8h.html#a87b537f5fa5c109d3c05c13d6b18f382',1,'drawing.h']]],
- ['wint_5fmax_1315',['WINT_MAX',['../stdint_8h.html#ad3f7b6bb8aa7d619017a91d3b2edc1ee',1,'stdint.h']]],
- ['wint_5fmin_1316',['WINT_MIN',['../stdint_8h.html#a5285bc55170ae1701e599decacc7f001',1,'stdint.h']]]
+ ['wchar_5fmax_1314',['WCHAR_MAX',['../stdint_8h.html#a2a823f3ccf2306cfbaa34d8addf66010',1,'stdint.h']]],
+ ['wchar_5fmin_1315',['WCHAR_MIN',['../stdint_8h.html#a051084d5ebcabf282d9ca9bb2b891a78',1,'stdint.h']]],
+ ['white_1316',['WHITE',['../drawing_8h.html#a87b537f5fa5c109d3c05c13d6b18f382',1,'drawing.h']]],
+ ['wint_5fmax_1317',['WINT_MAX',['../stdint_8h.html#ad3f7b6bb8aa7d619017a91d3b2edc1ee',1,'stdint.h']]],
+ ['wint_5fmin_1318',['WINT_MIN',['../stdint_8h.html#a5285bc55170ae1701e599decacc7f001',1,'stdint.h']]]
];
diff --git a/docs/api/search/defines_16.js b/docs/api/search/defines_16.js
index 7dab646b..f3d3a5da 100644
--- a/docs/api/search/defines_16.js
+++ b/docs/api/search/defines_16.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['xor_1317',['XOR',['../drawing_8h.html#a45cd11034d1a7d86c3a88d36f5e7f1ab',1,'drawing.h']]]
+ ['xor_1319',['XOR',['../drawing_8h.html#a45cd11034d1a7d86c3a88d36f5e7f1ab',1,'drawing.h']]]
];
diff --git a/docs/api/search/defines_2.js b/docs/api/search/defines_2.js
index 6513bde3..eaac5c03 100644
--- a/docs/api/search/defines_2.js
+++ b/docs/api/search/defines_2.js
@@ -1,14 +1,14 @@
var searchData=
[
- ['banked_1069',['BANKED',['../asm_2gbz80_2types_8h.html#aa8480aed89a168ec484727f5ac985cd0',1,'types.h']]],
- ['bcd_5fhex_1070',['BCD_HEX',['../bcd_8h.html#a5b336fcb3fc84fe505dc7e14d0ec17a7',1,'bcd.h']]],
- ['bgb_5fmessage_1071',['BGB_MESSAGE',['../bgb__emu_8h.html#aabd48c83af8f69ed624bb8a83347fa39',1,'bgb_emu.h']]],
- ['bgb_5fmessage_5ffmt_1072',['BGB_MESSAGE_FMT',['../bgb__emu_8h.html#aa55fc1a65764d7546ee5e4e3ee0bef90',1,'bgb_emu.h']]],
- ['bgb_5fprofile_5fbegin_1073',['BGB_PROFILE_BEGIN',['../bgb__emu_8h.html#ab5b05deda52856c84f274fb28578b6ee',1,'bgb_emu.h']]],
- ['bgb_5fprofile_5fend_1074',['BGB_PROFILE_END',['../bgb__emu_8h.html#ab43f94064dc523e99c4aefb440e2c3ed',1,'bgb_emu.h']]],
- ['bgb_5ftext_1075',['BGB_TEXT',['../bgb__emu_8h.html#a6afa665bd7d093e7ca2d310cc92b08a9',1,'bgb_emu.h']]],
- ['black_1076',['BLACK',['../drawing_8h.html#a7b3b25cba33b07c303f3060fe41887f6',1,'drawing.h']]],
- ['bool_1077',['bool',['../stdbool_8h.html#abb452686968e48b67397da5f97445f5b',1,'stdbool.h']]],
- ['bp_5fsize_1078',['BP_SIZE',['../setjmp_8h.html#ae02ec77c070126e75761ab85226b62a7',1,'setjmp.h']]],
- ['bpx_5fsize_1079',['BPX_SIZE',['../setjmp_8h.html#a0239bfe1e2b75fa5757c32a90d0c140d',1,'setjmp.h']]]
+ ['banked_1071',['BANKED',['../asm_2gbz80_2types_8h.html#aa8480aed89a168ec484727f5ac985cd0',1,'types.h']]],
+ ['bcd_5fhex_1072',['BCD_HEX',['../bcd_8h.html#a5b336fcb3fc84fe505dc7e14d0ec17a7',1,'bcd.h']]],
+ ['bgb_5fmessage_1073',['BGB_MESSAGE',['../bgb__emu_8h.html#aabd48c83af8f69ed624bb8a83347fa39',1,'bgb_emu.h']]],
+ ['bgb_5fmessage_5ffmt_1074',['BGB_MESSAGE_FMT',['../bgb__emu_8h.html#aa55fc1a65764d7546ee5e4e3ee0bef90',1,'bgb_emu.h']]],
+ ['bgb_5fprofile_5fbegin_1075',['BGB_PROFILE_BEGIN',['../bgb__emu_8h.html#ab5b05deda52856c84f274fb28578b6ee',1,'bgb_emu.h']]],
+ ['bgb_5fprofile_5fend_1076',['BGB_PROFILE_END',['../bgb__emu_8h.html#ab43f94064dc523e99c4aefb440e2c3ed',1,'bgb_emu.h']]],
+ ['bgb_5ftext_1077',['BGB_TEXT',['../bgb__emu_8h.html#a6afa665bd7d093e7ca2d310cc92b08a9',1,'bgb_emu.h']]],
+ ['black_1078',['BLACK',['../drawing_8h.html#a7b3b25cba33b07c303f3060fe41887f6',1,'drawing.h']]],
+ ['bool_1079',['bool',['../stdbool_8h.html#abb452686968e48b67397da5f97445f5b',1,'stdbool.h']]],
+ ['bp_5fsize_1080',['BP_SIZE',['../setjmp_8h.html#ae02ec77c070126e75761ab85226b62a7',1,'setjmp.h']]],
+ ['bpx_5fsize_1081',['BPX_SIZE',['../setjmp_8h.html#a0239bfe1e2b75fa5757c32a90d0c140d',1,'setjmp.h']]]
];
diff --git a/docs/api/search/defines_3.js b/docs/api/search/defines_3.js
index 42bacb74..286423d0 100644
--- a/docs/api/search/defines_3.js
+++ b/docs/api/search/defines_3.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['cgb_5ftype_1080',['CGB_TYPE',['../gb_8h.html#aee435a3a0dde3dbd7b6112dbb456cde8',1,'gb.h']]],
- ['char_5fbit_1081',['CHAR_BIT',['../limits_8h.html#a308d9dd2c0028ddb184b455bbd7865de',1,'limits.h']]],
- ['char_5fmax_1082',['CHAR_MAX',['../limits_8h.html#a778eefd6535a9d4b752fca5dd0af58db',1,'limits.h']]],
- ['char_5fmin_1083',['CHAR_MIN',['../limits_8h.html#a5d707bd32338557ced18c6ac76ca1b3a',1,'limits.h']]],
- ['clocks_5fper_5fsec_1084',['CLOCKS_PER_SEC',['../time_8h.html#a3d9fc3c745d0880902fe3ea3d5d5f71e',1,'time.h']]],
- ['critical_1085',['CRITICAL',['../asm_2gbz80_2types_8h.html#ae0233515480e60d29bcc731469976e02',1,'types.h']]]
+ ['cgb_5ftype_1082',['CGB_TYPE',['../gb_8h.html#aee435a3a0dde3dbd7b6112dbb456cde8',1,'gb.h']]],
+ ['char_5fbit_1083',['CHAR_BIT',['../limits_8h.html#a308d9dd2c0028ddb184b455bbd7865de',1,'limits.h']]],
+ ['char_5fmax_1084',['CHAR_MAX',['../limits_8h.html#a778eefd6535a9d4b752fca5dd0af58db',1,'limits.h']]],
+ ['char_5fmin_1085',['CHAR_MIN',['../limits_8h.html#a5d707bd32338557ced18c6ac76ca1b3a',1,'limits.h']]],
+ ['clocks_5fper_5fsec_1086',['CLOCKS_PER_SEC',['../time_8h.html#a3d9fc3c745d0880902fe3ea3d5d5f71e',1,'time.h']]],
+ ['critical_1087',['CRITICAL',['../asm_2gbz80_2types_8h.html#ae0233515480e60d29bcc731469976e02',1,'types.h']]]
];
diff --git a/docs/api/search/defines_4.js b/docs/api/search/defines_4.js
index 550a45dc..1204ef23 100644
--- a/docs/api/search/defines_4.js
+++ b/docs/api/search/defines_4.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['disable_5foam_5fdma_1086',['DISABLE_OAM_DMA',['../gb_8h.html#a47607089a434dcda7a8583cfca03b604',1,'gb.h']]],
- ['disable_5fram_5fmbc1_1087',['DISABLE_RAM_MBC1',['../gb_8h.html#a177fadce938422926b186a8e42575d1d',1,'gb.h']]],
- ['disable_5fram_5fmbc5_1088',['DISABLE_RAM_MBC5',['../gb_8h.html#a60191cdfa50ed9b88515f181747eaba2',1,'gb.h']]],
- ['display_5foff_1089',['DISPLAY_OFF',['../gb_8h.html#ad2ec9831813c5e7069917aa4455af682',1,'gb.h']]],
- ['display_5fon_1090',['DISPLAY_ON',['../gb_8h.html#a5ae6b05b3e1559c97f0d1b2daaaa0ee4',1,'gb.h']]],
- ['dkgrey_1091',['DKGREY',['../drawing_8h.html#a4dad87d91b9201be3b4ede372f31ae8a',1,'drawing.h']]],
- ['dmg_5ftype_1092',['DMG_TYPE',['../gb_8h.html#a0031c07799247a6d6c1bfa3decac79d0',1,'gb.h']]]
+ ['disable_5foam_5fdma_1088',['DISABLE_OAM_DMA',['../gb_8h.html#a47607089a434dcda7a8583cfca03b604',1,'gb.h']]],
+ ['disable_5fram_5fmbc1_1089',['DISABLE_RAM_MBC1',['../gb_8h.html#a177fadce938422926b186a8e42575d1d',1,'gb.h']]],
+ ['disable_5fram_5fmbc5_1090',['DISABLE_RAM_MBC5',['../gb_8h.html#a60191cdfa50ed9b88515f181747eaba2',1,'gb.h']]],
+ ['display_5foff_1091',['DISPLAY_OFF',['../gb_8h.html#ad2ec9831813c5e7069917aa4455af682',1,'gb.h']]],
+ ['display_5fon_1092',['DISPLAY_ON',['../gb_8h.html#a5ae6b05b3e1559c97f0d1b2daaaa0ee4',1,'gb.h']]],
+ ['dkgrey_1093',['DKGREY',['../drawing_8h.html#a4dad87d91b9201be3b4ede372f31ae8a',1,'drawing.h']]],
+ ['dmg_5ftype_1094',['DMG_TYPE',['../gb_8h.html#a0031c07799247a6d6c1bfa3decac79d0',1,'gb.h']]]
];
diff --git a/docs/api/search/defines_5.js b/docs/api/search/defines_5.js
index 93cf13ed..fe26fc4e 100644
--- a/docs/api/search/defines_5.js
+++ b/docs/api/search/defines_5.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['enable_5foam_5fdma_1093',['ENABLE_OAM_DMA',['../gb_8h.html#a20895d53fe9caacb08ce8b071d57ce53',1,'gb.h']]],
- ['enable_5fram_5fmbc1_1094',['ENABLE_RAM_MBC1',['../gb_8h.html#ae202f64307ec00f6970ef9225e54646c',1,'gb.h']]],
- ['enable_5fram_5fmbc5_1095',['ENABLE_RAM_MBC5',['../gb_8h.html#a3f033f00c8d781637f9a665b06750937',1,'gb.h']]]
+ ['enable_5foam_5fdma_1095',['ENABLE_OAM_DMA',['../gb_8h.html#a20895d53fe9caacb08ce8b071d57ce53',1,'gb.h']]],
+ ['enable_5fram_5fmbc1_1096',['ENABLE_RAM_MBC1',['../gb_8h.html#ae202f64307ec00f6970ef9225e54646c',1,'gb.h']]],
+ ['enable_5fram_5fmbc5_1097',['ENABLE_RAM_MBC5',['../gb_8h.html#a3f033f00c8d781637f9a665b06750937',1,'gb.h']]]
];
diff --git a/docs/api/search/defines_6.js b/docs/api/search/defines_6.js
index 655c24bb..ff6b744d 100644
--- a/docs/api/search/defines_6.js
+++ b/docs/api/search/defines_6.js
@@ -1,12 +1,12 @@
var searchData=
[
- ['false_1096',['false',['../stdbool_8h.html#a65e9886d74aaee76545e83dd09011727',1,'false(): stdbool.h'],['../types_8h.html#aa93f0eb578d23995850d61f7d61c55c1',1,'FALSE(): types.h']]],
- ['far_5fcall_1097',['FAR_CALL',['../far__ptr_8h.html#a7f4ab1893ea392f8bf042a3b97de4730',1,'far_ptr.h']]],
- ['far_5ffunc_1098',['FAR_FUNC',['../far__ptr_8h.html#a048cfacb5d37ab758a74f44e86c1dbc6',1,'far_ptr.h']]],
- ['far_5fofs_1099',['FAR_OFS',['../far__ptr_8h.html#ab79586d8cc3cb926f363f4d0cf7143d5',1,'far_ptr.h']]],
- ['far_5fseg_1100',['FAR_SEG',['../far__ptr_8h.html#a5bebc5322a1bba1c60c8d60e9b58be14',1,'far_ptr.h']]],
- ['font_5f128encoding_1101',['FONT_128ENCODING',['../font_8h.html#a305ee4387ba051bd0e372b8a6dfb6905',1,'font.h']]],
- ['font_5f256encoding_1102',['FONT_256ENCODING',['../font_8h.html#a63b93b85724b26151ddc2f0fc8050bd8',1,'font.h']]],
- ['font_5fcompressed_1103',['FONT_COMPRESSED',['../font_8h.html#a7c5452979723b3535d17e253beb5d604',1,'font.h']]],
- ['font_5fnoencoding_1104',['FONT_NOENCODING',['../font_8h.html#a80d0f581e17313b62dd7824653462b55',1,'font.h']]]
+ ['false_1098',['FALSE',['../types_8h.html#aa93f0eb578d23995850d61f7d61c55c1',1,'FALSE(): types.h'],['../stdbool_8h.html#a65e9886d74aaee76545e83dd09011727',1,'false(): stdbool.h']]],
+ ['far_5fcall_1099',['FAR_CALL',['../far__ptr_8h.html#a7f4ab1893ea392f8bf042a3b97de4730',1,'far_ptr.h']]],
+ ['far_5ffunc_1100',['FAR_FUNC',['../far__ptr_8h.html#a048cfacb5d37ab758a74f44e86c1dbc6',1,'far_ptr.h']]],
+ ['far_5fofs_1101',['FAR_OFS',['../far__ptr_8h.html#ab79586d8cc3cb926f363f4d0cf7143d5',1,'far_ptr.h']]],
+ ['far_5fseg_1102',['FAR_SEG',['../far__ptr_8h.html#a5bebc5322a1bba1c60c8d60e9b58be14',1,'far_ptr.h']]],
+ ['font_5f128encoding_1103',['FONT_128ENCODING',['../font_8h.html#a305ee4387ba051bd0e372b8a6dfb6905',1,'font.h']]],
+ ['font_5f256encoding_1104',['FONT_256ENCODING',['../font_8h.html#a63b93b85724b26151ddc2f0fc8050bd8',1,'font.h']]],
+ ['font_5fcompressed_1105',['FONT_COMPRESSED',['../font_8h.html#a7c5452979723b3535d17e253beb5d604',1,'font.h']]],
+ ['font_5fnoencoding_1106',['FONT_NOENCODING',['../font_8h.html#a80d0f581e17313b62dd7824653462b55',1,'font.h']]]
];
diff --git a/docs/api/search/defines_7.js b/docs/api/search/defines_7.js
index 62ebb15e..5197d96d 100644
--- a/docs/api/search/defines_7.js
+++ b/docs/api/search/defines_7.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['graphics_5fheight_1105',['GRAPHICS_HEIGHT',['../drawing_8h.html#aa9909ac8ecb03cbb763258a8f98f4170',1,'drawing.h']]],
- ['graphics_5fwidth_1106',['GRAPHICS_WIDTH',['../drawing_8h.html#a9a07c448b4d721dbec2715f51727e099',1,'drawing.h']]]
+ ['graphics_5fheight_1107',['GRAPHICS_HEIGHT',['../drawing_8h.html#aa9909ac8ecb03cbb763258a8f98f4170',1,'drawing.h']]],
+ ['graphics_5fwidth_1108',['GRAPHICS_WIDTH',['../drawing_8h.html#a9a07c448b4d721dbec2715f51727e099',1,'drawing.h']]]
];
diff --git a/docs/api/search/defines_8.js b/docs/api/search/defines_8.js
index 549e3b9a..c6fe9838 100644
--- a/docs/api/search/defines_8.js
+++ b/docs/api/search/defines_8.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['hide_5fbkg_1107',['HIDE_BKG',['../gb_8h.html#a6d25f7c43b1cbbb48b95cda7ab2c3141',1,'gb.h']]],
- ['hide_5fsprites_1108',['HIDE_SPRITES',['../gb_8h.html#a69ef98aee664b8abd8d1a3d45f016dda',1,'gb.h']]],
- ['hide_5fwin_1109',['HIDE_WIN',['../gb_8h.html#aedb6e32c42d4b1d25ad11adccd7100c3',1,'gb.h']]]
+ ['hide_5fbkg_1109',['HIDE_BKG',['../gb_8h.html#a6d25f7c43b1cbbb48b95cda7ab2c3141',1,'gb.h']]],
+ ['hide_5fsprites_1110',['HIDE_SPRITES',['../gb_8h.html#a69ef98aee664b8abd8d1a3d45f016dda',1,'gb.h']]],
+ ['hide_5fwin_1111',['HIDE_WIN',['../gb_8h.html#aedb6e32c42d4b1d25ad11adccd7100c3',1,'gb.h']]]
];
diff --git a/docs/api/search/defines_9.js b/docs/api/search/defines_9.js
index ab4104fb..295e9e74 100644
--- a/docs/api/search/defines_9.js
+++ b/docs/api/search/defines_9.js
@@ -1,36 +1,36 @@
var searchData=
[
- ['int16_5fc_1110',['INT16_C',['../stdint_8h.html#ae80ec61658b3f58afc31ee67ccd27805',1,'stdint.h']]],
- ['int16_5fmax_1111',['INT16_MAX',['../stdint_8h.html#ac58f2c111cc9989c86db2a7dc4fd84ca',1,'stdint.h']]],
- ['int16_5fmin_1112',['INT16_MIN',['../stdint_8h.html#ad4e9955955b27624963643eac448118a',1,'stdint.h']]],
- ['int32_5fc_1113',['INT32_C',['../stdint_8h.html#a5391a63e4d2c8c8a39b3c6f8fdbd8763',1,'stdint.h']]],
- ['int32_5fmax_1114',['INT32_MAX',['../stdint_8h.html#a181807730d4a375f848ba139813ce04f',1,'stdint.h']]],
- ['int32_5fmin_1115',['INT32_MIN',['../stdint_8h.html#a688eb21a22db27c2b2bd5836943cdcbe',1,'stdint.h']]],
- ['int8_5fc_1116',['INT8_C',['../stdint_8h.html#a6b76c8f233c61e6ea05b19b59a6e3549',1,'stdint.h']]],
- ['int8_5fmax_1117',['INT8_MAX',['../stdint_8h.html#aaf7f29f45f1a513b4748a4e5014ddf6a',1,'stdint.h']]],
- ['int8_5fmin_1118',['INT8_MIN',['../stdint_8h.html#aadcf2a81af243df333b31efa6461ab8e',1,'stdint.h']]],
- ['int_5ffast16_5fmax_1119',['INT_FAST16_MAX',['../stdint_8h.html#a2fd35d0ea091e04caec504ff0042cf00',1,'stdint.h']]],
- ['int_5ffast16_5fmin_1120',['INT_FAST16_MIN',['../stdint_8h.html#a169460a4e2a79138723d68d99372d958',1,'stdint.h']]],
- ['int_5ffast32_5fmax_1121',['INT_FAST32_MAX',['../stdint_8h.html#ac96fa0f41b19e89f109e4f9913ca6635',1,'stdint.h']]],
- ['int_5ffast32_5fmin_1122',['INT_FAST32_MIN',['../stdint_8h.html#ad93df1652ed0635513d5efe4f1219926',1,'stdint.h']]],
- ['int_5ffast8_5fmax_1123',['INT_FAST8_MAX',['../stdint_8h.html#acbcdb3bee0f5f904da5df8de69a80ca3',1,'stdint.h']]],
- ['int_5ffast8_5fmin_1124',['INT_FAST8_MIN',['../stdint_8h.html#aad8fb982cb19143efd5ee9a1a7a89390',1,'stdint.h']]],
- ['int_5fleast16_5fmax_1125',['INT_LEAST16_MAX',['../stdint_8h.html#a7eb2a8e2a1c65d6c9ad0f86154890baa',1,'stdint.h']]],
- ['int_5fleast16_5fmin_1126',['INT_LEAST16_MIN',['../stdint_8h.html#a1f91bfd5820c2f27af3d260fc75813e1',1,'stdint.h']]],
- ['int_5fleast32_5fmax_1127',['INT_LEAST32_MAX',['../stdint_8h.html#a5618711a0a54f722190a3a1219e278c2',1,'stdint.h']]],
- ['int_5fleast32_5fmin_1128',['INT_LEAST32_MIN',['../stdint_8h.html#a2360a536116dd734820a6b5b3d560ce7',1,'stdint.h']]],
- ['int_5fleast8_5fmax_1129',['INT_LEAST8_MAX',['../stdint_8h.html#aa05109908fb2770f632d2b646b9f85bf',1,'stdint.h']]],
- ['int_5fleast8_5fmin_1130',['INT_LEAST8_MIN',['../stdint_8h.html#a3e986cad833f63f420962ff60eda87e5',1,'stdint.h']]],
- ['int_5fmax_1131',['INT_MAX',['../limits_8h.html#a9ec306f36d50c7375e74f0d1c55a3a67',1,'limits.h']]],
- ['int_5fmin_1132',['INT_MIN',['../limits_8h.html#a21658776274b3d146c674318b635a334',1,'limits.h']]],
- ['interrupt_1133',['INTERRUPT',['../asm_2gbz80_2types_8h.html#ac950c0db046e2f86d15e7ae1f558b017',1,'types.h']]],
- ['intmax_5fc_1134',['INTMAX_C',['../stdint_8h.html#a1b955596bdc3e4b6ef339f16e468d55f',1,'stdint.h']]],
- ['intmax_5fmax_1135',['INTMAX_MAX',['../stdint_8h.html#a022b9b0a3564d786244a4631847c37a3',1,'stdint.h']]],
- ['intmax_5fmin_1136',['INTMAX_MIN',['../stdint_8h.html#a2b0a3edfc672154f606dc3ad26277b61',1,'stdint.h']]],
- ['intptr_5fmax_1137',['INTPTR_MAX',['../stdint_8h.html#a9e5742f2bae4a5283431a3c03499e3a9',1,'stdint.h']]],
- ['intptr_5fmin_1138',['INTPTR_MIN',['../stdint_8h.html#a2aaa6d3aa1d7d1e0e326955aa24db752',1,'stdint.h']]],
- ['io_5ferror_1139',['IO_ERROR',['../gb_8h.html#a5d4c9c7b61a0326a939f9109f96d7423',1,'gb.h']]],
- ['io_5fidle_1140',['IO_IDLE',['../gb_8h.html#a268cc6c704e16f3fa02dd1cf0e17070a',1,'gb.h']]],
- ['io_5freceiving_1141',['IO_RECEIVING',['../gb_8h.html#aee03efddee0f2f6fbcaec789301aaa9b',1,'gb.h']]],
- ['io_5fsending_1142',['IO_SENDING',['../gb_8h.html#ab69a3f7cd2c6b5eb4f518aefee099007',1,'gb.h']]]
+ ['int16_5fc_1112',['INT16_C',['../stdint_8h.html#ae80ec61658b3f58afc31ee67ccd27805',1,'stdint.h']]],
+ ['int16_5fmax_1113',['INT16_MAX',['../stdint_8h.html#ac58f2c111cc9989c86db2a7dc4fd84ca',1,'stdint.h']]],
+ ['int16_5fmin_1114',['INT16_MIN',['../stdint_8h.html#ad4e9955955b27624963643eac448118a',1,'stdint.h']]],
+ ['int32_5fc_1115',['INT32_C',['../stdint_8h.html#a5391a63e4d2c8c8a39b3c6f8fdbd8763',1,'stdint.h']]],
+ ['int32_5fmax_1116',['INT32_MAX',['../stdint_8h.html#a181807730d4a375f848ba139813ce04f',1,'stdint.h']]],
+ ['int32_5fmin_1117',['INT32_MIN',['../stdint_8h.html#a688eb21a22db27c2b2bd5836943cdcbe',1,'stdint.h']]],
+ ['int8_5fc_1118',['INT8_C',['../stdint_8h.html#a6b76c8f233c61e6ea05b19b59a6e3549',1,'stdint.h']]],
+ ['int8_5fmax_1119',['INT8_MAX',['../stdint_8h.html#aaf7f29f45f1a513b4748a4e5014ddf6a',1,'stdint.h']]],
+ ['int8_5fmin_1120',['INT8_MIN',['../stdint_8h.html#aadcf2a81af243df333b31efa6461ab8e',1,'stdint.h']]],
+ ['int_5ffast16_5fmax_1121',['INT_FAST16_MAX',['../stdint_8h.html#a2fd35d0ea091e04caec504ff0042cf00',1,'stdint.h']]],
+ ['int_5ffast16_5fmin_1122',['INT_FAST16_MIN',['../stdint_8h.html#a169460a4e2a79138723d68d99372d958',1,'stdint.h']]],
+ ['int_5ffast32_5fmax_1123',['INT_FAST32_MAX',['../stdint_8h.html#ac96fa0f41b19e89f109e4f9913ca6635',1,'stdint.h']]],
+ ['int_5ffast32_5fmin_1124',['INT_FAST32_MIN',['../stdint_8h.html#ad93df1652ed0635513d5efe4f1219926',1,'stdint.h']]],
+ ['int_5ffast8_5fmax_1125',['INT_FAST8_MAX',['../stdint_8h.html#acbcdb3bee0f5f904da5df8de69a80ca3',1,'stdint.h']]],
+ ['int_5ffast8_5fmin_1126',['INT_FAST8_MIN',['../stdint_8h.html#aad8fb982cb19143efd5ee9a1a7a89390',1,'stdint.h']]],
+ ['int_5fleast16_5fmax_1127',['INT_LEAST16_MAX',['../stdint_8h.html#a7eb2a8e2a1c65d6c9ad0f86154890baa',1,'stdint.h']]],
+ ['int_5fleast16_5fmin_1128',['INT_LEAST16_MIN',['../stdint_8h.html#a1f91bfd5820c2f27af3d260fc75813e1',1,'stdint.h']]],
+ ['int_5fleast32_5fmax_1129',['INT_LEAST32_MAX',['../stdint_8h.html#a5618711a0a54f722190a3a1219e278c2',1,'stdint.h']]],
+ ['int_5fleast32_5fmin_1130',['INT_LEAST32_MIN',['../stdint_8h.html#a2360a536116dd734820a6b5b3d560ce7',1,'stdint.h']]],
+ ['int_5fleast8_5fmax_1131',['INT_LEAST8_MAX',['../stdint_8h.html#aa05109908fb2770f632d2b646b9f85bf',1,'stdint.h']]],
+ ['int_5fleast8_5fmin_1132',['INT_LEAST8_MIN',['../stdint_8h.html#a3e986cad833f63f420962ff60eda87e5',1,'stdint.h']]],
+ ['int_5fmax_1133',['INT_MAX',['../limits_8h.html#a9ec306f36d50c7375e74f0d1c55a3a67',1,'limits.h']]],
+ ['int_5fmin_1134',['INT_MIN',['../limits_8h.html#a21658776274b3d146c674318b635a334',1,'limits.h']]],
+ ['interrupt_1135',['INTERRUPT',['../asm_2gbz80_2types_8h.html#ac950c0db046e2f86d15e7ae1f558b017',1,'types.h']]],
+ ['intmax_5fc_1136',['INTMAX_C',['../stdint_8h.html#a1b955596bdc3e4b6ef339f16e468d55f',1,'stdint.h']]],
+ ['intmax_5fmax_1137',['INTMAX_MAX',['../stdint_8h.html#a022b9b0a3564d786244a4631847c37a3',1,'stdint.h']]],
+ ['intmax_5fmin_1138',['INTMAX_MIN',['../stdint_8h.html#a2b0a3edfc672154f606dc3ad26277b61',1,'stdint.h']]],
+ ['intptr_5fmax_1139',['INTPTR_MAX',['../stdint_8h.html#a9e5742f2bae4a5283431a3c03499e3a9',1,'stdint.h']]],
+ ['intptr_5fmin_1140',['INTPTR_MIN',['../stdint_8h.html#a2aaa6d3aa1d7d1e0e326955aa24db752',1,'stdint.h']]],
+ ['io_5ferror_1141',['IO_ERROR',['../gb_8h.html#a5d4c9c7b61a0326a939f9109f96d7423',1,'gb.h']]],
+ ['io_5fidle_1142',['IO_IDLE',['../gb_8h.html#a268cc6c704e16f3fa02dd1cf0e17070a',1,'gb.h']]],
+ ['io_5freceiving_1143',['IO_RECEIVING',['../gb_8h.html#aee03efddee0f2f6fbcaec789301aaa9b',1,'gb.h']]],
+ ['io_5fsending_1144',['IO_SENDING',['../gb_8h.html#ab69a3f7cd2c6b5eb4f518aefee099007',1,'gb.h']]]
];
diff --git a/docs/api/search/defines_a.js b/docs/api/search/defines_a.js
index 8fcb9f50..8abf39c4 100644
--- a/docs/api/search/defines_a.js
+++ b/docs/api/search/defines_a.js
@@ -1,12 +1,12 @@
var searchData=
[
- ['j_5fa_1143',['J_A',['../gb_8h.html#a31af766e3b598eb7a6b63f55a4988e7a',1,'gb.h']]],
- ['j_5fb_1144',['J_B',['../gb_8h.html#ae47e59a309120f9420993f26816b5e6d',1,'gb.h']]],
- ['j_5fdown_1145',['J_DOWN',['../gb_8h.html#ae032c5c544196e37ec0432f6cfad7904',1,'gb.h']]],
- ['j_5fleft_1146',['J_LEFT',['../gb_8h.html#ac70894fecac30c1ca9917f07373cf81c',1,'gb.h']]],
- ['j_5fright_1147',['J_RIGHT',['../gb_8h.html#a3bad91d11ae09ffcbb3cb0a81873d325',1,'gb.h']]],
- ['j_5fselect_1148',['J_SELECT',['../gb_8h.html#ab416a9d96d1582490828f4bac78a8b5b',1,'gb.h']]],
- ['j_5fstart_1149',['J_START',['../gb_8h.html#ab769c6e20778298be8bc3321476ceb53',1,'gb.h']]],
- ['j_5fup_1150',['J_UP',['../gb_8h.html#a05ca817ab32f6da612c3ae26db5abf02',1,'gb.h']]],
- ['joy_5fiflag_1151',['JOY_IFLAG',['../gb_8h.html#a2f829cf27d6e3e24c875e9b82dfcb280',1,'gb.h']]]
+ ['j_5fa_1145',['J_A',['../gb_8h.html#a31af766e3b598eb7a6b63f55a4988e7a',1,'gb.h']]],
+ ['j_5fb_1146',['J_B',['../gb_8h.html#ae47e59a309120f9420993f26816b5e6d',1,'gb.h']]],
+ ['j_5fdown_1147',['J_DOWN',['../gb_8h.html#ae032c5c544196e37ec0432f6cfad7904',1,'gb.h']]],
+ ['j_5fleft_1148',['J_LEFT',['../gb_8h.html#ac70894fecac30c1ca9917f07373cf81c',1,'gb.h']]],
+ ['j_5fright_1149',['J_RIGHT',['../gb_8h.html#a3bad91d11ae09ffcbb3cb0a81873d325',1,'gb.h']]],
+ ['j_5fselect_1150',['J_SELECT',['../gb_8h.html#ab416a9d96d1582490828f4bac78a8b5b',1,'gb.h']]],
+ ['j_5fstart_1151',['J_START',['../gb_8h.html#ab769c6e20778298be8bc3321476ceb53',1,'gb.h']]],
+ ['j_5fup_1152',['J_UP',['../gb_8h.html#a05ca817ab32f6da612c3ae26db5abf02',1,'gb.h']]],
+ ['joy_5fiflag_1153',['JOY_IFLAG',['../gb_8h.html#a2f829cf27d6e3e24c875e9b82dfcb280',1,'gb.h']]]
];
diff --git a/docs/api/search/defines_b.js b/docs/api/search/defines_b.js
index 85a3a65b..8dd35276 100644
--- a/docs/api/search/defines_b.js
+++ b/docs/api/search/defines_b.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['lcd_5fiflag_1152',['LCD_IFLAG',['../gb_8h.html#a61a9e2910380de6abb34df14ef634eb4',1,'gb.h']]],
- ['long_5fmax_1153',['LONG_MAX',['../limits_8h.html#a50fece4db74f09568b2938db583c5655',1,'limits.h']]],
- ['long_5fmin_1154',['LONG_MIN',['../limits_8h.html#ae8a44c5a7436466221e0f3859d02420f',1,'limits.h']]],
- ['ltgrey_1155',['LTGREY',['../drawing_8h.html#a0ffe2221c8690dc80b5f9553474dd096',1,'drawing.h']]]
+ ['lcd_5fiflag_1154',['LCD_IFLAG',['../gb_8h.html#a61a9e2910380de6abb34df14ef634eb4',1,'gb.h']]],
+ ['long_5fmax_1155',['LONG_MAX',['../limits_8h.html#a50fece4db74f09568b2938db583c5655',1,'limits.h']]],
+ ['long_5fmin_1156',['LONG_MIN',['../limits_8h.html#ae8a44c5a7436466221e0f3859d02420f',1,'limits.h']]],
+ ['ltgrey_1157',['LTGREY',['../drawing_8h.html#a0ffe2221c8690dc80b5f9553474dd096',1,'drawing.h']]]
];
diff --git a/docs/api/search/defines_c.js b/docs/api/search/defines_c.js
index 1b681965..9cd294ba 100644
--- a/docs/api/search/defines_c.js
+++ b/docs/api/search/defines_c.js
@@ -1,20 +1,20 @@
var searchData=
[
- ['m_5fdrawing_1156',['M_DRAWING',['../gb_8h.html#acc9798fc62b5d626c91c8b0f20b522ff',1,'gb.h']]],
- ['m_5ffill_1157',['M_FILL',['../drawing_8h.html#aad3d180e0f12d6a6e5278fe0163f4c3e',1,'drawing.h']]],
- ['m_5fno_5finterp_1158',['M_NO_INTERP',['../gb_8h.html#aca2855edd2d28f66be551a0f7ec23f07',1,'gb.h']]],
- ['m_5fno_5fscroll_1159',['M_NO_SCROLL',['../gb_8h.html#a04382de20738146fe873ddfb0585052b',1,'gb.h']]],
- ['m_5fnofill_1160',['M_NOFILL',['../drawing_8h.html#a91d52443c77ee105bd68cb0b47a8ee49',1,'drawing.h']]],
- ['m_5ftext_5finout_1161',['M_TEXT_INOUT',['../gb_8h.html#a908826e7180f94a5988ceb8633313a2e',1,'gb.h']]],
- ['m_5ftext_5fout_1162',['M_TEXT_OUT',['../gb_8h.html#af0e30d6af308ffe5a025fbe85da40f6f',1,'gb.h']]],
- ['make_5fbcd_1163',['MAKE_BCD',['../bcd_8h.html#a8a3023920aa103a74c7d59007bcc7b6f',1,'bcd.h']]],
- ['malloc_5ffree_1164',['MALLOC_FREE',['../malloc_8h.html#a12ca68b5ad70e18b1bb705bb83181148',1,'malloc.h']]],
- ['malloc_5fmagic_1165',['MALLOC_MAGIC',['../malloc_8h.html#aaa516296171f3e24c0bd2c224c0221a1',1,'malloc.h']]],
- ['malloc_5fused_1166',['MALLOC_USED',['../malloc_8h.html#ad799c724ea5f66caf6eee3f6401cf9f2',1,'malloc.h']]],
- ['maxwndposx_1167',['MAXWNDPOSX',['../gb_8h.html#a6dffb66ec1b1d9bb380a1af52a601ec5',1,'gb.h']]],
- ['maxwndposy_1168',['MAXWNDPOSY',['../gb_8h.html#ad57f2f8c54204687f02801d8ab1bd150',1,'gb.h']]],
- ['metasprite_5fend_1169',['metasprite_end',['../metasprites_8h.html#a9f9f390a57460914e27c7604b7d8379a',1,'metasprites.h']]],
- ['mgb_5ftype_1170',['MGB_TYPE',['../gb_8h.html#ae996ed4fd8bb6b308b9c8708a91df06b',1,'gb.h']]],
- ['minwndposx_1171',['MINWNDPOSX',['../gb_8h.html#a5a796bbf3e4347d914b83568350143a9',1,'gb.h']]],
- ['minwndposy_1172',['MINWNDPOSY',['../gb_8h.html#af3d632ba2d7cef6619df5dfea8730909',1,'gb.h']]]
+ ['m_5fdrawing_1158',['M_DRAWING',['../gb_8h.html#acc9798fc62b5d626c91c8b0f20b522ff',1,'gb.h']]],
+ ['m_5ffill_1159',['M_FILL',['../drawing_8h.html#aad3d180e0f12d6a6e5278fe0163f4c3e',1,'drawing.h']]],
+ ['m_5fno_5finterp_1160',['M_NO_INTERP',['../gb_8h.html#aca2855edd2d28f66be551a0f7ec23f07',1,'gb.h']]],
+ ['m_5fno_5fscroll_1161',['M_NO_SCROLL',['../gb_8h.html#a04382de20738146fe873ddfb0585052b',1,'gb.h']]],
+ ['m_5fnofill_1162',['M_NOFILL',['../drawing_8h.html#a91d52443c77ee105bd68cb0b47a8ee49',1,'drawing.h']]],
+ ['m_5ftext_5finout_1163',['M_TEXT_INOUT',['../gb_8h.html#a908826e7180f94a5988ceb8633313a2e',1,'gb.h']]],
+ ['m_5ftext_5fout_1164',['M_TEXT_OUT',['../gb_8h.html#af0e30d6af308ffe5a025fbe85da40f6f',1,'gb.h']]],
+ ['make_5fbcd_1165',['MAKE_BCD',['../bcd_8h.html#a8a3023920aa103a74c7d59007bcc7b6f',1,'bcd.h']]],
+ ['malloc_5ffree_1166',['MALLOC_FREE',['../malloc_8h.html#a12ca68b5ad70e18b1bb705bb83181148',1,'malloc.h']]],
+ ['malloc_5fmagic_1167',['MALLOC_MAGIC',['../malloc_8h.html#aaa516296171f3e24c0bd2c224c0221a1',1,'malloc.h']]],
+ ['malloc_5fused_1168',['MALLOC_USED',['../malloc_8h.html#ad799c724ea5f66caf6eee3f6401cf9f2',1,'malloc.h']]],
+ ['maxwndposx_1169',['MAXWNDPOSX',['../gb_8h.html#a6dffb66ec1b1d9bb380a1af52a601ec5',1,'gb.h']]],
+ ['maxwndposy_1170',['MAXWNDPOSY',['../gb_8h.html#ad57f2f8c54204687f02801d8ab1bd150',1,'gb.h']]],
+ ['metasprite_5fend_1171',['metasprite_end',['../metasprites_8h.html#a9f9f390a57460914e27c7604b7d8379a',1,'metasprites.h']]],
+ ['mgb_5ftype_1172',['MGB_TYPE',['../gb_8h.html#ae996ed4fd8bb6b308b9c8708a91df06b',1,'gb.h']]],
+ ['minwndposx_1173',['MINWNDPOSX',['../gb_8h.html#a5a796bbf3e4347d914b83568350143a9',1,'gb.h']]],
+ ['minwndposy_1174',['MINWNDPOSY',['../gb_8h.html#af3d632ba2d7cef6619df5dfea8730909',1,'gb.h']]]
];
diff --git a/docs/api/search/defines_d.js b/docs/api/search/defines_d.js
index 2e5fe0de..cb8d6c85 100644
--- a/docs/api/search/defines_d.js
+++ b/docs/api/search/defines_d.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['nonbanked_1173',['NONBANKED',['../asm_2gbz80_2types_8h.html#a7ed081d8dfb6902784b2fc730bbb7f96',1,'types.h']]],
- ['noreturn_1174',['noreturn',['../stdnoreturn_8h.html#a4a453f3a748e55cbdac6fcc79357cfef',1,'stdnoreturn.h']]],
- ['null_1175',['NULL',['../stddef_8h.html#a070d2ce7b6bb7e5c05602aa8c308d0c4',1,'NULL(): stddef.h'],['../types_8h.html#a070d2ce7b6bb7e5c05602aa8c308d0c4',1,'NULL(): types.h']]]
+ ['nonbanked_1175',['NONBANKED',['../asm_2gbz80_2types_8h.html#a7ed081d8dfb6902784b2fc730bbb7f96',1,'types.h']]],
+ ['noreturn_1176',['noreturn',['../stdnoreturn_8h.html#a4a453f3a748e55cbdac6fcc79357cfef',1,'stdnoreturn.h']]],
+ ['null_1177',['NULL',['../stddef_8h.html#a070d2ce7b6bb7e5c05602aa8c308d0c4',1,'NULL(): stddef.h'],['../types_8h.html#a070d2ce7b6bb7e5c05602aa8c308d0c4',1,'NULL(): types.h']]]
];
diff --git a/docs/api/search/defines_e.js b/docs/api/search/defines_e.js
index 8c9c3f42..276a48b1 100644
--- a/docs/api/search/defines_e.js
+++ b/docs/api/search/defines_e.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['offsetof_1176',['offsetof',['../stddef_8h.html#ad89ebe5fe5ad08c683f0871118ea8e2f',1,'stddef.h']]],
- ['or_1177',['OR',['../drawing_8h.html#a3363ca4d6d3cc0230b2804280591c991',1,'drawing.h']]]
+ ['offsetof_1178',['offsetof',['../stddef_8h.html#ad89ebe5fe5ad08c683f0871118ea8e2f',1,'stddef.h']]],
+ ['or_1179',['OR',['../drawing_8h.html#a3363ca4d6d3cc0230b2804280591c991',1,'drawing.h']]]
];
diff --git a/docs/api/search/defines_f.js b/docs/api/search/defines_f.js
index 4d1668a6..6774de31 100644
--- a/docs/api/search/defines_f.js
+++ b/docs/api/search/defines_f.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['ptrdiff_5fmax_1178',['PTRDIFF_MAX',['../stdint_8h.html#add2ef7bffac19cfdd1f4b5495409672f',1,'stdint.h']]],
- ['ptrdiff_5fmin_1179',['PTRDIFF_MIN',['../stdint_8h.html#ad9b88ba2fb858f98b50b38e49875d90e',1,'stdint.h']]]
+ ['ptrdiff_5fmax_1180',['PTRDIFF_MAX',['../stdint_8h.html#add2ef7bffac19cfdd1f4b5495409672f',1,'stdint.h']]],
+ ['ptrdiff_5fmin_1181',['PTRDIFF_MIN',['../stdint_8h.html#ad9b88ba2fb858f98b50b38e49875d90e',1,'stdint.h']]]
];
diff --git a/docs/api/search/files_0.js b/docs/api/search/files_0.js
index 05e7ac9b..2c4e611e 100644
--- a/docs/api/search/files_0.js
+++ b/docs/api/search/files_0.js
@@ -1,12 +1,12 @@
var searchData=
[
- ['01_5fgetting_5fstarted_2emd_672',['01_getting_started.md',['../01__getting__started_8md.html',1,'']]],
- ['02_5flinks_5fand_5ftools_2emd_673',['02_links_and_tools.md',['../02__links__and__tools_8md.html',1,'']]],
- ['03_5fusing_5fgbdk_2emd_674',['03_using_gbdk.md',['../03__using__gbdk_8md.html',1,'']]],
- ['04_5fcoding_5fguidelines_2emd_675',['04_coding_guidelines.md',['../04__coding__guidelines_8md.html',1,'']]],
- ['05_5fbanking_5fmbcs_2emd_676',['05_banking_mbcs.md',['../05__banking__mbcs_8md.html',1,'']]],
- ['06_5ftoolchain_2emd_677',['06_toolchain.md',['../06__toolchain_8md.html',1,'']]],
- ['07_5fsample_5fprograms_2emd_678',['07_sample_programs.md',['../07__sample__programs_8md.html',1,'']]],
- ['08_5ffaq_2emd_679',['08_faq.md',['../08__faq_8md.html',1,'']]],
- ['09_5fmigrating_5fnew_5fversions_2emd_680',['09_migrating_new_versions.md',['../09__migrating__new__versions_8md.html',1,'']]]
+ ['01_5fgetting_5fstarted_2emd_673',['01_getting_started.md',['../01__getting__started_8md.html',1,'']]],
+ ['02_5flinks_5fand_5ftools_2emd_674',['02_links_and_tools.md',['../02__links__and__tools_8md.html',1,'']]],
+ ['03_5fusing_5fgbdk_2emd_675',['03_using_gbdk.md',['../03__using__gbdk_8md.html',1,'']]],
+ ['04_5fcoding_5fguidelines_2emd_676',['04_coding_guidelines.md',['../04__coding__guidelines_8md.html',1,'']]],
+ ['05_5fbanking_5fmbcs_2emd_677',['05_banking_mbcs.md',['../05__banking__mbcs_8md.html',1,'']]],
+ ['06_5ftoolchain_2emd_678',['06_toolchain.md',['../06__toolchain_8md.html',1,'']]],
+ ['07_5fsample_5fprograms_2emd_679',['07_sample_programs.md',['../07__sample__programs_8md.html',1,'']]],
+ ['08_5ffaq_2emd_680',['08_faq.md',['../08__faq_8md.html',1,'']]],
+ ['09_5fmigrating_5fnew_5fversions_2emd_681',['09_migrating_new_versions.md',['../09__migrating__new__versions_8md.html',1,'']]]
];
diff --git a/docs/api/search/files_1.js b/docs/api/search/files_1.js
index c11a1f7f..ca83e831 100644
--- a/docs/api/search/files_1.js
+++ b/docs/api/search/files_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['10_5frelease_5fnotes_2emd_681',['10_release_notes.md',['../10__release__notes_8md.html',1,'']]]
+ ['10_5frelease_5fnotes_2emd_682',['10_release_notes.md',['../10__release__notes_8md.html',1,'']]]
];
diff --git a/docs/api/search/files_2.js b/docs/api/search/files_2.js
index d1fcfa34..180d4c37 100644
--- a/docs/api/search/files_2.js
+++ b/docs/api/search/files_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['20_5ftoolchain_5fsettings_2emd_682',['20_toolchain_settings.md',['../20__toolchain__settings_8md.html',1,'']]]
+ ['20_5ftoolchain_5fsettings_2emd_683',['20_toolchain_settings.md',['../20__toolchain__settings_8md.html',1,'']]]
];
diff --git a/docs/api/search/files_3.js b/docs/api/search/files_3.js
index 38b8cef9..bffe40ad 100644
--- a/docs/api/search/files_3.js
+++ b/docs/api/search/files_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['assert_2eh_683',['assert.h',['../assert_8h.html',1,'']]]
+ ['assert_2eh_684',['assert.h',['../assert_8h.html',1,'']]]
];
diff --git a/docs/api/search/files_4.js b/docs/api/search/files_4.js
index 75ead1b9..4b5221cf 100644
--- a/docs/api/search/files_4.js
+++ b/docs/api/search/files_4.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['bcd_2eh_684',['bcd.h',['../bcd_8h.html',1,'']]],
- ['bgb_5femu_2eh_685',['bgb_emu.h',['../bgb__emu_8h.html',1,'']]]
+ ['bcd_2eh_685',['bcd.h',['../bcd_8h.html',1,'']]],
+ ['bgb_5femu_2eh_686',['bgb_emu.h',['../bgb__emu_8h.html',1,'']]]
];
diff --git a/docs/api/search/files_5.js b/docs/api/search/files_5.js
index 92d68df1..4535489f 100644
--- a/docs/api/search/files_5.js
+++ b/docs/api/search/files_5.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['cgb_2eh_686',['cgb.h',['../cgb_8h.html',1,'']]],
- ['console_2eh_687',['console.h',['../console_8h.html',1,'']]],
- ['crash_5fhandler_2eh_688',['crash_handler.h',['../crash__handler_8h.html',1,'']]],
- ['ctype_2eh_689',['ctype.h',['../ctype_8h.html',1,'']]]
+ ['cgb_2eh_687',['cgb.h',['../cgb_8h.html',1,'']]],
+ ['console_2eh_688',['console.h',['../console_8h.html',1,'']]],
+ ['crash_5fhandler_2eh_689',['crash_handler.h',['../crash__handler_8h.html',1,'']]],
+ ['ctype_2eh_690',['ctype.h',['../ctype_8h.html',1,'']]]
];
diff --git a/docs/api/search/files_6.js b/docs/api/search/files_6.js
index 7b2a2850..10cb92c5 100644
--- a/docs/api/search/files_6.js
+++ b/docs/api/search/files_6.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['docs_5findex_2emd_690',['docs_index.md',['../docs__index_8md.html',1,'']]],
- ['drawing_2eh_691',['drawing.h',['../drawing_8h.html',1,'']]]
+ ['docs_5findex_2emd_691',['docs_index.md',['../docs__index_8md.html',1,'']]],
+ ['drawing_2eh_692',['drawing.h',['../drawing_8h.html',1,'']]]
];
diff --git a/docs/api/search/files_7.js b/docs/api/search/files_7.js
index d7faf0ea..389fcd9f 100644
--- a/docs/api/search/files_7.js
+++ b/docs/api/search/files_7.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['far_5fptr_2eh_692',['far_ptr.h',['../far__ptr_8h.html',1,'']]],
- ['font_2eh_693',['font.h',['../font_8h.html',1,'']]]
+ ['far_5fptr_2eh_693',['far_ptr.h',['../far__ptr_8h.html',1,'']]],
+ ['font_2eh_694',['font.h',['../font_8h.html',1,'']]]
];
diff --git a/docs/api/search/files_8.js b/docs/api/search/files_8.js
index bd06a5c4..15b08408 100644
--- a/docs/api/search/files_8.js
+++ b/docs/api/search/files_8.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['gb_2eh_694',['gb.h',['../gb_8h.html',1,'']]],
- ['gbdecompress_2eh_695',['gbdecompress.h',['../gbdecompress_8h.html',1,'']]],
- ['gbdk_2dlib_2eh_696',['gbdk-lib.h',['../gbdk-lib_8h.html',1,'']]]
+ ['gb_2eh_695',['gb.h',['../gb_8h.html',1,'']]],
+ ['gbdecompress_2eh_696',['gbdecompress.h',['../gbdecompress_8h.html',1,'']]],
+ ['gbdk_2dlib_2eh_697',['gbdk-lib.h',['../gbdk-lib_8h.html',1,'']]]
];
diff --git a/docs/api/search/files_9.js b/docs/api/search/files_9.js
index 6d8f6a8b..b393cdb5 100644
--- a/docs/api/search/files_9.js
+++ b/docs/api/search/files_9.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['hardware_2eh_697',['hardware.h',['../hardware_8h.html',1,'']]]
+ ['hardware_2eh_698',['hardware.h',['../hardware_8h.html',1,'']]]
];
diff --git a/docs/api/search/files_a.js b/docs/api/search/files_a.js
index f00b4102..6f490059 100644
--- a/docs/api/search/files_a.js
+++ b/docs/api/search/files_a.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['limits_2eh_698',['limits.h',['../limits_8h.html',1,'']]]
+ ['limits_2eh_699',['limits.h',['../limits_8h.html',1,'']]]
];
diff --git a/docs/api/search/files_b.js b/docs/api/search/files_b.js
index a5161615..b23346ea 100644
--- a/docs/api/search/files_b.js
+++ b/docs/api/search/files_b.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['malloc_2eh_699',['malloc.h',['../malloc_8h.html',1,'']]],
- ['metasprites_2eh_700',['metasprites.h',['../metasprites_8h.html',1,'']]]
+ ['malloc_2eh_700',['malloc.h',['../malloc_8h.html',1,'']]],
+ ['metasprites_2eh_701',['metasprites.h',['../metasprites_8h.html',1,'']]]
];
diff --git a/docs/api/search/files_c.js b/docs/api/search/files_c.js
index a8f97fec..9fc287b6 100644
--- a/docs/api/search/files_c.js
+++ b/docs/api/search/files_c.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['provides_2eh_701',['provides.h',['../provides_8h.html',1,'']]]
+ ['provides_2eh_702',['provides.h',['../provides_8h.html',1,'']]]
];
diff --git a/docs/api/search/files_d.js b/docs/api/search/files_d.js
index cd25a2af..308c83d4 100644
--- a/docs/api/search/files_d.js
+++ b/docs/api/search/files_d.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['rand_2eh_702',['rand.h',['../rand_8h.html',1,'']]]
+ ['rand_2eh_703',['rand.h',['../rand_8h.html',1,'']]]
];
diff --git a/docs/api/search/files_e.js b/docs/api/search/files_e.js
index b0dd9a82..9c874ab6 100644
--- a/docs/api/search/files_e.js
+++ b/docs/api/search/files_e.js
@@ -1,15 +1,15 @@
var searchData=
[
- ['sample_2eh_703',['sample.h',['../sample_8h.html',1,'']]],
- ['setjmp_2eh_704',['setjmp.h',['../setjmp_8h.html',1,'']]],
- ['sgb_2eh_705',['sgb.h',['../sgb_8h.html',1,'']]],
- ['stdarg_2eh_706',['stdarg.h',['../asm_2gbz80_2stdarg_8h.html',1,'(Global Namespace)'],['../stdarg_8h.html',1,'(Global Namespace)']]],
- ['stdatomic_2eh_707',['stdatomic.h',['../stdatomic_8h.html',1,'']]],
- ['stdbool_2eh_708',['stdbool.h',['../stdbool_8h.html',1,'']]],
- ['stddef_2eh_709',['stddef.h',['../stddef_8h.html',1,'']]],
- ['stdint_2eh_710',['stdint.h',['../stdint_8h.html',1,'']]],
- ['stdio_2eh_711',['stdio.h',['../stdio_8h.html',1,'']]],
- ['stdlib_2eh_712',['stdlib.h',['../stdlib_8h.html',1,'']]],
- ['stdnoreturn_2eh_713',['stdnoreturn.h',['../stdnoreturn_8h.html',1,'']]],
- ['string_2eh_714',['string.h',['../string_8h.html',1,'']]]
+ ['sample_2eh_704',['sample.h',['../sample_8h.html',1,'']]],
+ ['setjmp_2eh_705',['setjmp.h',['../setjmp_8h.html',1,'']]],
+ ['sgb_2eh_706',['sgb.h',['../sgb_8h.html',1,'']]],
+ ['stdarg_2eh_707',['stdarg.h',['../asm_2gbz80_2stdarg_8h.html',1,'(Global Namespace)'],['../stdarg_8h.html',1,'(Global Namespace)']]],
+ ['stdatomic_2eh_708',['stdatomic.h',['../stdatomic_8h.html',1,'']]],
+ ['stdbool_2eh_709',['stdbool.h',['../stdbool_8h.html',1,'']]],
+ ['stddef_2eh_710',['stddef.h',['../stddef_8h.html',1,'']]],
+ ['stdint_2eh_711',['stdint.h',['../stdint_8h.html',1,'']]],
+ ['stdio_2eh_712',['stdio.h',['../stdio_8h.html',1,'']]],
+ ['stdlib_2eh_713',['stdlib.h',['../stdlib_8h.html',1,'']]],
+ ['stdnoreturn_2eh_714',['stdnoreturn.h',['../stdnoreturn_8h.html',1,'']]],
+ ['string_2eh_715',['string.h',['../string_8h.html',1,'']]]
];
diff --git a/docs/api/search/files_f.js b/docs/api/search/files_f.js
index cf3d72c0..c30381ac 100644
--- a/docs/api/search/files_f.js
+++ b/docs/api/search/files_f.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['time_2eh_715',['time.h',['../time_8h.html',1,'']]],
- ['typeof_2eh_716',['typeof.h',['../typeof_8h.html',1,'']]],
- ['types_2eh_717',['types.h',['../asm_2gbz80_2types_8h.html',1,'(Global Namespace)'],['../asm_2types_8h.html',1,'(Global Namespace)'],['../types_8h.html',1,'(Global Namespace)']]]
+ ['time_2eh_716',['time.h',['../time_8h.html',1,'']]],
+ ['typeof_2eh_717',['typeof.h',['../typeof_8h.html',1,'']]],
+ ['types_2eh_718',['types.h',['../asm_2gbz80_2types_8h.html',1,'(Global Namespace)'],['../asm_2types_8h.html',1,'(Global Namespace)'],['../types_8h.html',1,'(Global Namespace)']]]
];
diff --git a/docs/api/search/functions_0.js b/docs/api/search/functions_0.js
index 0e762588..b2d2f332 100644
--- a/docs/api/search/functions_0.js
+++ b/docs/api/search/functions_0.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['_5f_5fassert_718',['__assert',['../assert_8h.html#ad21a069a92c53643b2e3eaaa73a742fd',1,'assert.h']]],
- ['_5f_5fcall_5f_5fbanked_719',['__call__banked',['../far__ptr_8h.html#aa45a2312a2584abb8733a052f66b4a90',1,'far_ptr.h']]],
- ['_5f_5fhandlecrash_720',['__HandleCrash',['../crash__handler_8h.html#a95aa98ab16e49eac55dcdfe42f4610cc',1,'crash_handler.h']]],
- ['_5f_5fsetjmp_721',['__setjmp',['../setjmp_8h.html#a299cf119e588646778caab18b90a41a5',1,'setjmp.h']]]
+ ['_5f_5fassert_719',['__assert',['../assert_8h.html#ad21a069a92c53643b2e3eaaa73a742fd',1,'assert.h']]],
+ ['_5f_5fcall_5f_5fbanked_720',['__call__banked',['../far__ptr_8h.html#aa45a2312a2584abb8733a052f66b4a90',1,'far_ptr.h']]],
+ ['_5f_5fhandlecrash_721',['__HandleCrash',['../crash__handler_8h.html#a95aa98ab16e49eac55dcdfe42f4610cc',1,'crash_handler.h']]],
+ ['_5f_5fsetjmp_722',['__setjmp',['../setjmp_8h.html#a299cf119e588646778caab18b90a41a5',1,'setjmp.h']]]
];
diff --git a/docs/api/search/functions_1.js b/docs/api/search/functions_1.js
index 60ef2143..4398e688 100644
--- a/docs/api/search/functions_1.js
+++ b/docs/api/search/functions_1.js
@@ -1,14 +1,14 @@
var searchData=
[
- ['abs_722',['abs',['../stdlib_8h.html#af15d7205d8d10c4820f997ce5c526279',1,'stdlib.h']]],
- ['add_5fjoy_723',['add_JOY',['../gb_8h.html#a81f1a67549d3a26dcca22367141eb21b',1,'gb.h']]],
- ['add_5flcd_724',['add_LCD',['../gb_8h.html#a6cc76ea12ac894c4947f85fa1999117c',1,'gb.h']]],
- ['add_5fsio_725',['add_SIO',['../gb_8h.html#a024fc35ef0ad258d67c8f9dfb0751ee7',1,'gb.h']]],
- ['add_5ftim_726',['add_TIM',['../gb_8h.html#a411914e5dc5f28ce0afa7cf692a18af1',1,'gb.h']]],
- ['add_5fvbl_727',['add_VBL',['../gb_8h.html#a2412b9f97cb59acfcb2383eb9f204ddf',1,'gb.h']]],
- ['arand_728',['arand',['../rand_8h.html#a3b69bdab83b46c324126a7ccdf9db973',1,'rand.h']]],
- ['atoi_729',['atoi',['../stdlib_8h.html#a30670a60464f77af17dfb353353d6df8',1,'stdlib.h']]],
- ['atol_730',['atol',['../stdlib_8h.html#a825c37450147a643edbcb1a435518307',1,'stdlib.h']]],
- ['atomic_5fflag_5fclear_731',['atomic_flag_clear',['../stdatomic_8h.html#a281cc77096d886b0cf2c6ab7dfbe900c',1,'stdatomic.h']]],
- ['atomic_5fflag_5ftest_5fand_5fset_732',['atomic_flag_test_and_set',['../stdatomic_8h.html#afbdfcef48a9fd85fa85549afbd3abdeb',1,'stdatomic.h']]]
+ ['abs_723',['abs',['../stdlib_8h.html#af15d7205d8d10c4820f997ce5c526279',1,'stdlib.h']]],
+ ['add_5fjoy_724',['add_JOY',['../gb_8h.html#a81f1a67549d3a26dcca22367141eb21b',1,'gb.h']]],
+ ['add_5flcd_725',['add_LCD',['../gb_8h.html#a6cc76ea12ac894c4947f85fa1999117c',1,'gb.h']]],
+ ['add_5fsio_726',['add_SIO',['../gb_8h.html#a024fc35ef0ad258d67c8f9dfb0751ee7',1,'gb.h']]],
+ ['add_5ftim_727',['add_TIM',['../gb_8h.html#a411914e5dc5f28ce0afa7cf692a18af1',1,'gb.h']]],
+ ['add_5fvbl_728',['add_VBL',['../gb_8h.html#a2412b9f97cb59acfcb2383eb9f204ddf',1,'gb.h']]],
+ ['arand_729',['arand',['../rand_8h.html#a3b69bdab83b46c324126a7ccdf9db973',1,'rand.h']]],
+ ['atoi_730',['atoi',['../stdlib_8h.html#a30670a60464f77af17dfb353353d6df8',1,'stdlib.h']]],
+ ['atol_731',['atol',['../stdlib_8h.html#a825c37450147a643edbcb1a435518307',1,'stdlib.h']]],
+ ['atomic_5fflag_5fclear_732',['atomic_flag_clear',['../stdatomic_8h.html#a281cc77096d886b0cf2c6ab7dfbe900c',1,'stdatomic.h']]],
+ ['atomic_5fflag_5ftest_5fand_5fset_733',['atomic_flag_test_and_set',['../stdatomic_8h.html#afbdfcef48a9fd85fa85549afbd3abdeb',1,'stdatomic.h']]]
];
diff --git a/docs/api/search/functions_10.js b/docs/api/search/functions_10.js
index a3345aa2..75107907 100644
--- a/docs/api/search/functions_10.js
+++ b/docs/api/search/functions_10.js
@@ -1,14 +1,14 @@
var searchData=
[
- ['rand_831',['rand',['../rand_8h.html#ae311e489ffa4743107bdea8db211e7fe',1,'rand.h']]],
- ['randw_832',['randw',['../rand_8h.html#aff9512d128c4e1435f2b83116da663b3',1,'rand.h']]],
- ['realloc_833',['realloc',['../stdlib_8h.html#a1a6b5e8d2f1c37e5b43e4345586075be',1,'stdlib.h']]],
- ['receive_5fbyte_834',['receive_byte',['../gb_8h.html#a34d6500215984e8f9a986523a2f2dadd',1,'gb.h']]],
- ['remove_5fjoy_835',['remove_JOY',['../gb_8h.html#ae4510032b28f9f4cdaaa96b0b892cf57',1,'gb.h']]],
- ['remove_5flcd_836',['remove_LCD',['../gb_8h.html#a4c5db32641410613d785911bafd09ac7',1,'gb.h']]],
- ['remove_5fsio_837',['remove_SIO',['../gb_8h.html#a18857adb60025a986dbb44ee289b7a7c',1,'gb.h']]],
- ['remove_5ftim_838',['remove_TIM',['../gb_8h.html#a1ad25695f4885f15325a82ec935e8579',1,'gb.h']]],
- ['remove_5fvbl_839',['remove_VBL',['../gb_8h.html#a3b3171b2e81e23b7d1bc402275a9ac71',1,'gb.h']]],
- ['reset_840',['reset',['../gb_8h.html#af4a728ba51de424a0bed286ac65d3242',1,'gb.h']]],
- ['reverse_841',['reverse',['../string_8h.html#af71f9ead43b3760680da8ab1bd3f783b',1,'string.h']]]
+ ['rand_832',['rand',['../rand_8h.html#ae311e489ffa4743107bdea8db211e7fe',1,'rand.h']]],
+ ['randw_833',['randw',['../rand_8h.html#aff9512d128c4e1435f2b83116da663b3',1,'rand.h']]],
+ ['realloc_834',['realloc',['../stdlib_8h.html#a1a6b5e8d2f1c37e5b43e4345586075be',1,'stdlib.h']]],
+ ['receive_5fbyte_835',['receive_byte',['../gb_8h.html#a34d6500215984e8f9a986523a2f2dadd',1,'gb.h']]],
+ ['remove_5fjoy_836',['remove_JOY',['../gb_8h.html#ae4510032b28f9f4cdaaa96b0b892cf57',1,'gb.h']]],
+ ['remove_5flcd_837',['remove_LCD',['../gb_8h.html#a4c5db32641410613d785911bafd09ac7',1,'gb.h']]],
+ ['remove_5fsio_838',['remove_SIO',['../gb_8h.html#a18857adb60025a986dbb44ee289b7a7c',1,'gb.h']]],
+ ['remove_5ftim_839',['remove_TIM',['../gb_8h.html#a1ad25695f4885f15325a82ec935e8579',1,'gb.h']]],
+ ['remove_5fvbl_840',['remove_VBL',['../gb_8h.html#a3b3171b2e81e23b7d1bc402275a9ac71',1,'gb.h']]],
+ ['reset_841',['reset',['../gb_8h.html#af4a728ba51de424a0bed286ac65d3242',1,'gb.h']]],
+ ['reverse_842',['reverse',['../string_8h.html#af71f9ead43b3760680da8ab1bd3f783b',1,'string.h']]]
];
diff --git a/docs/api/search/functions_11.js b/docs/api/search/functions_11.js
index 2723825c..593fc729 100644
--- a/docs/api/search/functions_11.js
+++ b/docs/api/search/functions_11.js
@@ -1,42 +1,43 @@
var searchData=
[
- ['scroll_5fbkg_842',['scroll_bkg',['../gb_8h.html#a2f00009081050122c11e6625ecaf0584',1,'gb.h']]],
- ['scroll_5fsprite_843',['scroll_sprite',['../gb_8h.html#abf6f5422a3c98cf440736f1491e1aa4c',1,'gb.h']]],
- ['scroll_5fwin_844',['scroll_win',['../gb_8h.html#a7aa0d057d5eeb3e24e61460056750d05',1,'gb.h']]],
- ['send_5fbyte_845',['send_byte',['../gb_8h.html#a1259cf3a23fd2166a9d1a2e93942e30e',1,'gb.h']]],
- ['set_5fbkg_5f1bit_5fdata_846',['set_bkg_1bit_data',['../gb_8h.html#a3044331abf61612eb333b6f409f5d571',1,'gb.h']]],
- ['set_5fbkg_5fdata_847',['set_bkg_data',['../gb_8h.html#a48579cba9ac2d81ff7214cf3ff25563d',1,'gb.h']]],
- ['set_5fbkg_5fpalette_848',['set_bkg_palette',['../cgb_8h.html#a5744e7df7116e07a69713b494053675e',1,'cgb.h']]],
- ['set_5fbkg_5fpalette_5fentry_849',['set_bkg_palette_entry',['../cgb_8h.html#a1d751a36ceb28413e2300e1025378c8d',1,'cgb.h']]],
- ['set_5fbkg_5fsubmap_850',['set_bkg_submap',['../gb_8h.html#a9369a5771b340680f4af3386ac4e19b2',1,'gb.h']]],
- ['set_5fbkg_5ftile_5fxy_851',['set_bkg_tile_xy',['../gb_8h.html#abda5458df92e4c57b1ca96ab16a17e13',1,'gb.h']]],
- ['set_5fbkg_5ftiles_852',['set_bkg_tiles',['../gb_8h.html#aa7c0f923acfd198ec970bb2e96110f2c',1,'gb.h']]],
- ['set_5fdata_853',['set_data',['../gb_8h.html#a326a27330c5f711fcf0b5448cfa07bda',1,'gb.h']]],
- ['set_5finterrupts_854',['set_interrupts',['../gb_8h.html#ae33fc234393ba50e8f30cbef403ded19',1,'gb.h']]],
- ['set_5fshadow_5foam_5faddress_855',['SET_SHADOW_OAM_ADDRESS',['../gb_8h.html#a7e0cdfd6b9a2ae1b7f30384f132d8687',1,'gb.h']]],
- ['set_5fsprite_5f1bit_5fdata_856',['set_sprite_1bit_data',['../gb_8h.html#aa7261f0405b5e0b888c344f5ee6a698e',1,'gb.h']]],
- ['set_5fsprite_5fdata_857',['set_sprite_data',['../gb_8h.html#a494532517bd7f26c55a87c96391611d5',1,'gb.h']]],
- ['set_5fsprite_5fpalette_858',['set_sprite_palette',['../cgb_8h.html#ace9a3e5d7a44d89906bfe20a722c1d14',1,'cgb.h']]],
- ['set_5fsprite_5fpalette_5fentry_859',['set_sprite_palette_entry',['../cgb_8h.html#a64f00b81348b63f60bdd2cb7649b09eb',1,'cgb.h']]],
- ['set_5fsprite_5fprop_860',['set_sprite_prop',['../gb_8h.html#aea162a4e034d163bfd4f32a10cce4ba4',1,'gb.h']]],
- ['set_5fsprite_5ftile_861',['set_sprite_tile',['../gb_8h.html#aae19a6086cc17811759b01a6e0a3cda4',1,'gb.h']]],
- ['set_5ftiles_862',['set_tiles',['../gb_8h.html#a07d12377d67cebb9aafc0622b2054f95',1,'gb.h']]],
- ['set_5fvram_5fbyte_863',['set_vram_byte',['../gb_8h.html#afac2db0151b09291638f7a592a3d0e94',1,'gb.h']]],
- ['set_5fwin_5f1bit_5fdata_864',['set_win_1bit_data',['../gb_8h.html#a95789b39dedda60b25e5ad4ef5cd778c',1,'gb.h']]],
- ['set_5fwin_5fdata_865',['set_win_data',['../gb_8h.html#ae7851349abd442026b49d499d6e43d79',1,'gb.h']]],
- ['set_5fwin_5fsubmap_866',['set_win_submap',['../gb_8h.html#a5f7178a952abc675a743686745a90892',1,'gb.h']]],
- ['set_5fwin_5ftile_5fxy_867',['set_win_tile_xy',['../gb_8h.html#a2ed77943cb162dc597a8813d6f0f4a98',1,'gb.h']]],
- ['set_5fwin_5ftiles_868',['set_win_tiles',['../gb_8h.html#a1174ffce8b86b8df15c1704284fde687',1,'gb.h']]],
- ['setchar_869',['setchar',['../console_8h.html#a39cc3b71f4262838512c8589e755bbd3',1,'console.h']]],
- ['sgb_5fcheck_870',['sgb_check',['../sgb_8h.html#af8c1bb504e5e626e7dce578ee43c805b',1,'sgb.h']]],
- ['sgb_5ftransfer_871',['sgb_transfer',['../sgb_8h.html#aefdcea25c8e4b979dd9ff6f9853a5dc5',1,'sgb.h']]],
- ['sprintf_872',['sprintf',['../stdio_8h.html#a6c8d9c5b5b6a760b5b2787f0f96b690e',1,'stdio.h']]],
- ['strcat_873',['strcat',['../string_8h.html#a13c88f5a8475fd7de5d81553cb29724a',1,'string.h']]],
- ['strcmp_874',['strcmp',['../string_8h.html#aa89031476b4f6ee827f9163d09d68043',1,'string.h']]],
- ['strcpy_875',['strcpy',['../string_8h.html#ad724f30223364304479b0fc714435e78',1,'string.h']]],
- ['strlen_876',['strlen',['../string_8h.html#a8fd73083ebdcca16ad810cd6041466f2',1,'string.h']]],
- ['strncat_877',['strncat',['../string_8h.html#a168580a0ddcb7fe754a711309966c99d',1,'string.h']]],
- ['strncmp_878',['strncmp',['../string_8h.html#a861dba2d93de82f087707bb795f5c602',1,'string.h']]],
- ['strncpy_879',['strncpy',['../string_8h.html#a796a9459c4f362e51c00307044c40ed5',1,'string.h']]],
- ['switch_5fdata_880',['switch_data',['../drawing_8h.html#ad252f1952b09c3ec66bf2759b4e2dea9',1,'drawing.h']]]
+ ['scroll_5fbkg_843',['scroll_bkg',['../gb_8h.html#a2f00009081050122c11e6625ecaf0584',1,'gb.h']]],
+ ['scroll_5fsprite_844',['scroll_sprite',['../gb_8h.html#abf6f5422a3c98cf440736f1491e1aa4c',1,'gb.h']]],
+ ['scroll_5fwin_845',['scroll_win',['../gb_8h.html#a7aa0d057d5eeb3e24e61460056750d05',1,'gb.h']]],
+ ['send_5fbyte_846',['send_byte',['../gb_8h.html#a1259cf3a23fd2166a9d1a2e93942e30e',1,'gb.h']]],
+ ['set_5fbkg_5f1bit_5fdata_847',['set_bkg_1bit_data',['../gb_8h.html#a3044331abf61612eb333b6f409f5d571',1,'gb.h']]],
+ ['set_5fbkg_5fdata_848',['set_bkg_data',['../gb_8h.html#a48579cba9ac2d81ff7214cf3ff25563d',1,'gb.h']]],
+ ['set_5fbkg_5fpalette_849',['set_bkg_palette',['../cgb_8h.html#a5744e7df7116e07a69713b494053675e',1,'cgb.h']]],
+ ['set_5fbkg_5fpalette_5fentry_850',['set_bkg_palette_entry',['../cgb_8h.html#a1d751a36ceb28413e2300e1025378c8d',1,'cgb.h']]],
+ ['set_5fbkg_5fsubmap_851',['set_bkg_submap',['../gb_8h.html#a9369a5771b340680f4af3386ac4e19b2',1,'gb.h']]],
+ ['set_5fbkg_5ftile_5fxy_852',['set_bkg_tile_xy',['../gb_8h.html#abda5458df92e4c57b1ca96ab16a17e13',1,'gb.h']]],
+ ['set_5fbkg_5ftiles_853',['set_bkg_tiles',['../gb_8h.html#aa7c0f923acfd198ec970bb2e96110f2c',1,'gb.h']]],
+ ['set_5fdata_854',['set_data',['../gb_8h.html#a326a27330c5f711fcf0b5448cfa07bda',1,'gb.h']]],
+ ['set_5finterrupts_855',['set_interrupts',['../gb_8h.html#ae33fc234393ba50e8f30cbef403ded19',1,'gb.h']]],
+ ['set_5fshadow_5foam_5faddress_856',['SET_SHADOW_OAM_ADDRESS',['../gb_8h.html#a7e0cdfd6b9a2ae1b7f30384f132d8687',1,'gb.h']]],
+ ['set_5fsprite_5f1bit_5fdata_857',['set_sprite_1bit_data',['../gb_8h.html#aa7261f0405b5e0b888c344f5ee6a698e',1,'gb.h']]],
+ ['set_5fsprite_5fdata_858',['set_sprite_data',['../gb_8h.html#a494532517bd7f26c55a87c96391611d5',1,'gb.h']]],
+ ['set_5fsprite_5fpalette_859',['set_sprite_palette',['../cgb_8h.html#ace9a3e5d7a44d89906bfe20a722c1d14',1,'cgb.h']]],
+ ['set_5fsprite_5fpalette_5fentry_860',['set_sprite_palette_entry',['../cgb_8h.html#a64f00b81348b63f60bdd2cb7649b09eb',1,'cgb.h']]],
+ ['set_5fsprite_5fprop_861',['set_sprite_prop',['../gb_8h.html#aea162a4e034d163bfd4f32a10cce4ba4',1,'gb.h']]],
+ ['set_5fsprite_5ftile_862',['set_sprite_tile',['../gb_8h.html#aae19a6086cc17811759b01a6e0a3cda4',1,'gb.h']]],
+ ['set_5ftile_5fdata_863',['set_tile_data',['../gb_8h.html#a85710bd8f8b011e052477c90bc54f780',1,'gb.h']]],
+ ['set_5ftiles_864',['set_tiles',['../gb_8h.html#a07d12377d67cebb9aafc0622b2054f95',1,'gb.h']]],
+ ['set_5fvram_5fbyte_865',['set_vram_byte',['../gb_8h.html#afac2db0151b09291638f7a592a3d0e94',1,'gb.h']]],
+ ['set_5fwin_5f1bit_5fdata_866',['set_win_1bit_data',['../gb_8h.html#a95789b39dedda60b25e5ad4ef5cd778c',1,'gb.h']]],
+ ['set_5fwin_5fdata_867',['set_win_data',['../gb_8h.html#ae7851349abd442026b49d499d6e43d79',1,'gb.h']]],
+ ['set_5fwin_5fsubmap_868',['set_win_submap',['../gb_8h.html#a5f7178a952abc675a743686745a90892',1,'gb.h']]],
+ ['set_5fwin_5ftile_5fxy_869',['set_win_tile_xy',['../gb_8h.html#a2ed77943cb162dc597a8813d6f0f4a98',1,'gb.h']]],
+ ['set_5fwin_5ftiles_870',['set_win_tiles',['../gb_8h.html#a1174ffce8b86b8df15c1704284fde687',1,'gb.h']]],
+ ['setchar_871',['setchar',['../console_8h.html#a39cc3b71f4262838512c8589e755bbd3',1,'console.h']]],
+ ['sgb_5fcheck_872',['sgb_check',['../sgb_8h.html#af8c1bb504e5e626e7dce578ee43c805b',1,'sgb.h']]],
+ ['sgb_5ftransfer_873',['sgb_transfer',['../sgb_8h.html#aefdcea25c8e4b979dd9ff6f9853a5dc5',1,'sgb.h']]],
+ ['sprintf_874',['sprintf',['../stdio_8h.html#a6c8d9c5b5b6a760b5b2787f0f96b690e',1,'stdio.h']]],
+ ['strcat_875',['strcat',['../string_8h.html#a13c88f5a8475fd7de5d81553cb29724a',1,'string.h']]],
+ ['strcmp_876',['strcmp',['../string_8h.html#aa89031476b4f6ee827f9163d09d68043',1,'string.h']]],
+ ['strcpy_877',['strcpy',['../string_8h.html#ad724f30223364304479b0fc714435e78',1,'string.h']]],
+ ['strlen_878',['strlen',['../string_8h.html#a8fd73083ebdcca16ad810cd6041466f2',1,'string.h']]],
+ ['strncat_879',['strncat',['../string_8h.html#a168580a0ddcb7fe754a711309966c99d',1,'string.h']]],
+ ['strncmp_880',['strncmp',['../string_8h.html#a861dba2d93de82f087707bb795f5c602',1,'string.h']]],
+ ['strncpy_881',['strncpy',['../string_8h.html#a796a9459c4f362e51c00307044c40ed5',1,'string.h']]],
+ ['switch_5fdata_882',['switch_data',['../drawing_8h.html#ad252f1952b09c3ec66bf2759b4e2dea9',1,'drawing.h']]]
];
diff --git a/docs/api/search/functions_12.js b/docs/api/search/functions_12.js
index f45718b9..a2ae9f86 100644
--- a/docs/api/search/functions_12.js
+++ b/docs/api/search/functions_12.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['time_881',['time',['../time_8h.html#ae7841e681c8c9d59818568d39553642c',1,'time.h']]],
- ['to_5ffar_5fptr_882',['to_far_ptr',['../far__ptr_8h.html#a374dd0c7e00bec635f1dd24d5cbe0d35',1,'far_ptr.h']]],
- ['tolower_883',['tolower',['../ctype_8h.html#a207391fc2c5fa7786d5e0b9ef8ba5e80',1,'ctype.h']]],
- ['toupper_884',['toupper',['../ctype_8h.html#a811b7a0d5194feaccfacf8a7f02bb9c3',1,'ctype.h']]]
+ ['time_883',['time',['../time_8h.html#ae7841e681c8c9d59818568d39553642c',1,'time.h']]],
+ ['to_5ffar_5fptr_884',['to_far_ptr',['../far__ptr_8h.html#a374dd0c7e00bec635f1dd24d5cbe0d35',1,'far_ptr.h']]],
+ ['tolower_885',['tolower',['../ctype_8h.html#a207391fc2c5fa7786d5e0b9ef8ba5e80',1,'ctype.h']]],
+ ['toupper_886',['toupper',['../ctype_8h.html#a811b7a0d5194feaccfacf8a7f02bb9c3',1,'ctype.h']]]
];
diff --git a/docs/api/search/functions_13.js b/docs/api/search/functions_13.js
index 8b623cc2..b1ec0d4a 100644
--- a/docs/api/search/functions_13.js
+++ b/docs/api/search/functions_13.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['uint2bcd_885',['uint2bcd',['../bcd_8h.html#a199d4e29e267c9722768fbcbd7c4cc1d',1,'bcd.h']]],
- ['ultoa_886',['ultoa',['../stdlib_8h.html#a2b30ca47ee185b69e46c673a475e2f01',1,'stdlib.h']]],
- ['utoa_887',['utoa',['../stdlib_8h.html#a4e7ad09b4f5caf8881ce5e4776fd442c',1,'stdlib.h']]]
+ ['uint2bcd_887',['uint2bcd',['../bcd_8h.html#a199d4e29e267c9722768fbcbd7c4cc1d',1,'bcd.h']]],
+ ['ultoa_888',['ultoa',['../stdlib_8h.html#a2b30ca47ee185b69e46c673a475e2f01',1,'stdlib.h']]],
+ ['utoa_889',['utoa',['../stdlib_8h.html#a4e7ad09b4f5caf8881ce5e4776fd442c',1,'stdlib.h']]]
];
diff --git a/docs/api/search/functions_14.js b/docs/api/search/functions_14.js
index 4e7acb9a..b3d219c3 100644
--- a/docs/api/search/functions_14.js
+++ b/docs/api/search/functions_14.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['vmemset_888',['vmemset',['../gb_8h.html#a8cf949b6e2654b6a8bd9e403a49ee4b3',1,'gb.h']]]
+ ['vmemset_890',['vmemset',['../gb_8h.html#a8cf949b6e2654b6a8bd9e403a49ee4b3',1,'gb.h']]]
];
diff --git a/docs/api/search/functions_15.js b/docs/api/search/functions_15.js
index 723cc882..67f66717 100644
--- a/docs/api/search/functions_15.js
+++ b/docs/api/search/functions_15.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['wait_5fint_5fhandler_889',['wait_int_handler',['../gb_8h.html#af461d38864cfc5720f0d9f4d1113cf07',1,'gb.h']]],
- ['wait_5fvbl_5fdone_890',['wait_vbl_done',['../gb_8h.html#adf6ef63efc4bb4950428015c623bca14',1,'gb.h']]],
- ['waitpad_891',['waitpad',['../gb_8h.html#a393072c2b36f11306510c69aa6efea0f',1,'gb.h']]],
- ['waitpadup_892',['waitpadup',['../gb_8h.html#ae1f1358e53ec1b153f071d1e16d8ab0e',1,'gb.h']]],
- ['wrtchr_893',['wrtchr',['../drawing_8h.html#a57de178908d5dc3e574e666e4d4cb6a7',1,'drawing.h']]]
+ ['wait_5fint_5fhandler_891',['wait_int_handler',['../gb_8h.html#af461d38864cfc5720f0d9f4d1113cf07',1,'gb.h']]],
+ ['wait_5fvbl_5fdone_892',['wait_vbl_done',['../gb_8h.html#adf6ef63efc4bb4950428015c623bca14',1,'gb.h']]],
+ ['waitpad_893',['waitpad',['../gb_8h.html#a393072c2b36f11306510c69aa6efea0f',1,'gb.h']]],
+ ['waitpadup_894',['waitpadup',['../gb_8h.html#ae1f1358e53ec1b153f071d1e16d8ab0e',1,'gb.h']]],
+ ['wrtchr_895',['wrtchr',['../drawing_8h.html#a57de178908d5dc3e574e666e4d4cb6a7',1,'drawing.h']]]
];
diff --git a/docs/api/search/functions_2.js b/docs/api/search/functions_2.js
index 9264f000..731f657c 100644
--- a/docs/api/search/functions_2.js
+++ b/docs/api/search/functions_2.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['bcd2text_733',['bcd2text',['../bcd_8h.html#ad2804ad5d0c4376e7c5636e83f140889',1,'bcd.h']]],
- ['bcd_5fadd_734',['bcd_add',['../bcd_8h.html#afa80f8e7a7af38bf7527d8e87860a40c',1,'bcd.h']]],
- ['bcd_5fsub_735',['bcd_sub',['../bcd_8h.html#a52b446b9dd70d54bed395bf38c53e82f',1,'bcd.h']]],
- ['bgb_5fprofiler_5fmessage_736',['BGB_profiler_message',['../bgb__emu_8h.html#a219a24aebe0bddc535ba4abc81cee30c',1,'bgb_emu.h']]],
- ['box_737',['box',['../drawing_8h.html#a4e792560f4216fac5be9ff2a5235a2aa',1,'drawing.h']]],
- ['bsearch_738',['bsearch',['../stdlib_8h.html#ab0ace018fe7dfa1720930d2dce0c45e3',1,'stdlib.h']]]
+ ['bcd2text_734',['bcd2text',['../bcd_8h.html#ad2804ad5d0c4376e7c5636e83f140889',1,'bcd.h']]],
+ ['bcd_5fadd_735',['bcd_add',['../bcd_8h.html#afa80f8e7a7af38bf7527d8e87860a40c',1,'bcd.h']]],
+ ['bcd_5fsub_736',['bcd_sub',['../bcd_8h.html#a52b446b9dd70d54bed395bf38c53e82f',1,'bcd.h']]],
+ ['bgb_5fprofiler_5fmessage_737',['BGB_profiler_message',['../bgb__emu_8h.html#a219a24aebe0bddc535ba4abc81cee30c',1,'bgb_emu.h']]],
+ ['box_738',['box',['../drawing_8h.html#a4e792560f4216fac5be9ff2a5235a2aa',1,'drawing.h']]],
+ ['bsearch_739',['bsearch',['../stdlib_8h.html#ab0ace018fe7dfa1720930d2dce0c45e3',1,'stdlib.h']]]
];
diff --git a/docs/api/search/functions_3.js b/docs/api/search/functions_3.js
index d5178e2b..cf0707ad 100644
--- a/docs/api/search/functions_3.js
+++ b/docs/api/search/functions_3.js
@@ -1,11 +1,11 @@
var searchData=
[
- ['calloc_739',['calloc',['../stdlib_8h.html#a62b7798461bd461da64c5f9d35feddf7',1,'stdlib.h']]],
- ['cgb_5fcompatibility_740',['cgb_compatibility',['../cgb_8h.html#a6b334e5e452d0650aded17199be1514a',1,'cgb.h']]],
- ['circle_741',['circle',['../drawing_8h.html#ae867228cd30ff62fe83d184ce6d6fda8',1,'drawing.h']]],
- ['clock_742',['clock',['../time_8h.html#aec80425d74a9644112e61b235fc9ffa9',1,'time.h']]],
- ['cls_743',['cls',['../console_8h.html#a4826277cc150ddc0f4de4bd464a34909',1,'console.h']]],
- ['color_744',['color',['../drawing_8h.html#ac9f0e5e503be3fe11f09b28252187c55',1,'drawing.h']]],
- ['cpu_5ffast_745',['cpu_fast',['../cgb_8h.html#a871b5b1aba74ab8764f72b73bc090adb',1,'cgb.h']]],
- ['cpu_5fslow_746',['cpu_slow',['../cgb_8h.html#a476d06d0fe64d7c5a1ec05b8ee859a56',1,'cgb.h']]]
+ ['calloc_740',['calloc',['../stdlib_8h.html#a62b7798461bd461da64c5f9d35feddf7',1,'stdlib.h']]],
+ ['cgb_5fcompatibility_741',['cgb_compatibility',['../cgb_8h.html#a6b334e5e452d0650aded17199be1514a',1,'cgb.h']]],
+ ['circle_742',['circle',['../drawing_8h.html#ae867228cd30ff62fe83d184ce6d6fda8',1,'drawing.h']]],
+ ['clock_743',['clock',['../time_8h.html#aec80425d74a9644112e61b235fc9ffa9',1,'time.h']]],
+ ['cls_744',['cls',['../console_8h.html#a4826277cc150ddc0f4de4bd464a34909',1,'console.h']]],
+ ['color_745',['color',['../drawing_8h.html#ac9f0e5e503be3fe11f09b28252187c55',1,'drawing.h']]],
+ ['cpu_5ffast_746',['cpu_fast',['../cgb_8h.html#a871b5b1aba74ab8764f72b73bc090adb',1,'cgb.h']]],
+ ['cpu_5fslow_747',['cpu_slow',['../cgb_8h.html#a476d06d0fe64d7c5a1ec05b8ee859a56',1,'cgb.h']]]
];
diff --git a/docs/api/search/functions_4.js b/docs/api/search/functions_4.js
index 2be1110d..fbb78b8d 100644
--- a/docs/api/search/functions_4.js
+++ b/docs/api/search/functions_4.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['debug_747',['debug',['../malloc_8h.html#a0d4cef44ecf687909f2c744d8420f7f0',1,'malloc.h']]],
- ['delay_748',['delay',['../gb_8h.html#acd271e2c976761568d2f95900a213212',1,'gb.h']]],
- ['disable_5finterrupts_749',['disable_interrupts',['../gb_8h.html#ad8d2df514d3b5d3d08db3671f0d5af14',1,'gb.h']]],
- ['display_5foff_750',['display_off',['../gb_8h.html#aed072359b42854fffae4cd29c1f34ea1',1,'gb.h']]],
- ['draw_5fimage_751',['draw_image',['../drawing_8h.html#ab6a6e4de3149941100edc6c7ed5236cf',1,'drawing.h']]]
+ ['debug_748',['debug',['../malloc_8h.html#a0d4cef44ecf687909f2c744d8420f7f0',1,'malloc.h']]],
+ ['delay_749',['delay',['../gb_8h.html#acd271e2c976761568d2f95900a213212',1,'gb.h']]],
+ ['disable_5finterrupts_750',['disable_interrupts',['../gb_8h.html#ad8d2df514d3b5d3d08db3671f0d5af14',1,'gb.h']]],
+ ['display_5foff_751',['display_off',['../gb_8h.html#aed072359b42854fffae4cd29c1f34ea1',1,'gb.h']]],
+ ['draw_5fimage_752',['draw_image',['../drawing_8h.html#ab6a6e4de3149941100edc6c7ed5236cf',1,'drawing.h']]]
];
diff --git a/docs/api/search/functions_5.js b/docs/api/search/functions_5.js
index 38736835..4c610d03 100644
--- a/docs/api/search/functions_5.js
+++ b/docs/api/search/functions_5.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['enable_5finterrupts_752',['enable_interrupts',['../gb_8h.html#a97039b6477537c37f83e74561de78c1b',1,'gb.h']]],
- ['exit_753',['exit',['../stdlib_8h.html#ae43e0ef9173e48d70e3b1f99007b420c',1,'stdlib.h']]]
+ ['enable_5finterrupts_753',['enable_interrupts',['../gb_8h.html#a97039b6477537c37f83e74561de78c1b',1,'gb.h']]],
+ ['exit_754',['exit',['../stdlib_8h.html#ae43e0ef9173e48d70e3b1f99007b420c',1,'stdlib.h']]]
];
diff --git a/docs/api/search/functions_6.js b/docs/api/search/functions_6.js
index 5e173de1..8aa7446f 100644
--- a/docs/api/search/functions_6.js
+++ b/docs/api/search/functions_6.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['fill_5fbkg_5frect_754',['fill_bkg_rect',['../gb_8h.html#a1af6b32a1760e56fad768352db7c4530',1,'gb.h']]],
- ['fill_5fwin_5frect_755',['fill_win_rect',['../gb_8h.html#a1bfd48083278d723d0c49f487720cdd0',1,'gb.h']]],
- ['font_5finit_756',['font_init',['../font_8h.html#a61b6448050030c4367eafd836598e515',1,'font.h']]],
- ['font_5fload_757',['font_load',['../font_8h.html#aae1084aacf5cfceb40d9ce8f34a3870a',1,'font.h']]],
- ['font_5fset_758',['font_set',['../font_8h.html#a2f1eb1f81be1a153bc11b1ea368fe614',1,'font.h']]],
- ['free_759',['free',['../stdlib_8h.html#afbedc913aa4651b3c3b4b3aecd9b4711',1,'stdlib.h']]]
+ ['fill_5fbkg_5frect_755',['fill_bkg_rect',['../gb_8h.html#a1af6b32a1760e56fad768352db7c4530',1,'gb.h']]],
+ ['fill_5fwin_5frect_756',['fill_win_rect',['../gb_8h.html#a1bfd48083278d723d0c49f487720cdd0',1,'gb.h']]],
+ ['font_5finit_757',['font_init',['../font_8h.html#a61b6448050030c4367eafd836598e515',1,'font.h']]],
+ ['font_5fload_758',['font_load',['../font_8h.html#aae1084aacf5cfceb40d9ce8f34a3870a',1,'font.h']]],
+ ['font_5fset_759',['font_set',['../font_8h.html#a2f1eb1f81be1a153bc11b1ea368fe614',1,'font.h']]],
+ ['free_760',['free',['../stdlib_8h.html#afbedc913aa4651b3c3b4b3aecd9b4711',1,'stdlib.h']]]
];
diff --git a/docs/api/search/functions_7.js b/docs/api/search/functions_7.js
index 4badfeaa..b3a6bf4c 100644
--- a/docs/api/search/functions_7.js
+++ b/docs/api/search/functions_7.js
@@ -1,31 +1,31 @@
var searchData=
[
- ['gb_5fdecompress_760',['gb_decompress',['../gbdecompress_8h.html#a197fa96ce7ac20d44d0c1a40e38283db',1,'gbdecompress.h']]],
- ['gb_5fdecompress_5fbkg_5fdata_761',['gb_decompress_bkg_data',['../gbdecompress_8h.html#ac3194ad258cca32cc3eb813d24ae1b0c',1,'gbdecompress.h']]],
- ['gb_5fdecompress_5fsprite_5fdata_762',['gb_decompress_sprite_data',['../gbdecompress_8h.html#a19f6e310adcb6ab4826fa89c305b6865',1,'gbdecompress.h']]],
- ['gb_5fdecompress_5fwin_5fdata_763',['gb_decompress_win_data',['../gbdecompress_8h.html#a487d505119f770cdb138cb300174a719',1,'gbdecompress.h']]],
- ['get_5fbkg_5fdata_764',['get_bkg_data',['../gb_8h.html#a2a236e483749590877d9207e9430e6ce',1,'gb.h']]],
- ['get_5fbkg_5ftile_5fxy_765',['get_bkg_tile_xy',['../gb_8h.html#a255decf12ae0b61bd5811c9ed74e7ce5',1,'gb.h']]],
- ['get_5fbkg_5ftiles_766',['get_bkg_tiles',['../gb_8h.html#a93b0cf6697ab892eda6231d26bf17fc9',1,'gb.h']]],
- ['get_5fbkg_5fxy_5faddr_767',['get_bkg_xy_addr',['../gb_8h.html#a57ff7363a20c654a39736e33d4d08f60',1,'gb.h']]],
- ['get_5fdata_768',['get_data',['../gb_8h.html#a4a6bb50835ab2e9294bf17ea32a1e4cd',1,'gb.h']]],
- ['get_5fmode_769',['get_mode',['../gb_8h.html#a60baa1622feae07982562dcbc243751e',1,'gb.h']]],
- ['get_5fsprite_5fdata_770',['get_sprite_data',['../gb_8h.html#a5ce794b7f0c3361c79c887b500fcaf19',1,'gb.h']]],
- ['get_5fsprite_5fprop_771',['get_sprite_prop',['../gb_8h.html#a4b4feb80407d4f1e80579ed932821035',1,'gb.h']]],
- ['get_5fsprite_5ftile_772',['get_sprite_tile',['../gb_8h.html#a54ffb7990fd37939bbe1a8b1e663e439',1,'gb.h']]],
- ['get_5ftiles_773',['get_tiles',['../gb_8h.html#a4c3d68eb3ff5ec0995541e691a6e8259',1,'gb.h']]],
- ['get_5fvram_5fbyte_774',['get_vram_byte',['../gb_8h.html#a35b5f3f6ba20daff6af91876d2ccc2b0',1,'gb.h']]],
- ['get_5fwin_5fdata_775',['get_win_data',['../gb_8h.html#ae2a527ffae5cad8083726470c3f30475',1,'gb.h']]],
- ['get_5fwin_5ftile_5fxy_776',['get_win_tile_xy',['../gb_8h.html#a5b64bd185bbab708e6b6bd6ed1b9bfc2',1,'gb.h']]],
- ['get_5fwin_5ftiles_777',['get_win_tiles',['../gb_8h.html#aebd45a328b90ddda0154d5fb41b8bbc1',1,'gb.h']]],
- ['get_5fwin_5fxy_5faddr_778',['get_win_xy_addr',['../gb_8h.html#aac2ff7566ff975530a04e6d90e760e26',1,'gb.h']]],
- ['getchar_779',['getchar',['../stdio_8h.html#a326ca91ffb1187c28f9d8ee680094e51',1,'stdio.h']]],
- ['getpix_780',['getpix',['../drawing_8h.html#aaf7ed5593d7fb811f00cd241e3d97c10',1,'drawing.h']]],
- ['gets_781',['gets',['../stdio_8h.html#aab85b30d68ce9d9e0475e0f51bf610b1',1,'stdio.h']]],
- ['gotogxy_782',['gotogxy',['../drawing_8h.html#a2dee47d4ad7d830605a63bbf5edeeed1',1,'drawing.h']]],
- ['gotoxy_783',['gotoxy',['../console_8h.html#a3cd0543b4adebf0bfb5c93a6d0a6f1a2',1,'console.h']]],
- ['gprint_784',['gprint',['../drawing_8h.html#aef65e5faa0adb82768fca06aafbe50e8',1,'drawing.h']]],
- ['gprintf_785',['gprintf',['../drawing_8h.html#a20f022d3050cc0409b1558c02a3b47c0',1,'drawing.h']]],
- ['gprintln_786',['gprintln',['../drawing_8h.html#a9869295972fdbad75ecfa9d4bff2ff21',1,'drawing.h']]],
- ['gprintn_787',['gprintn',['../drawing_8h.html#a99bdf955788d991c90c0a1a80ca26e7d',1,'drawing.h']]]
+ ['gb_5fdecompress_761',['gb_decompress',['../gbdecompress_8h.html#a197fa96ce7ac20d44d0c1a40e38283db',1,'gbdecompress.h']]],
+ ['gb_5fdecompress_5fbkg_5fdata_762',['gb_decompress_bkg_data',['../gbdecompress_8h.html#ac3194ad258cca32cc3eb813d24ae1b0c',1,'gbdecompress.h']]],
+ ['gb_5fdecompress_5fsprite_5fdata_763',['gb_decompress_sprite_data',['../gbdecompress_8h.html#a19f6e310adcb6ab4826fa89c305b6865',1,'gbdecompress.h']]],
+ ['gb_5fdecompress_5fwin_5fdata_764',['gb_decompress_win_data',['../gbdecompress_8h.html#a487d505119f770cdb138cb300174a719',1,'gbdecompress.h']]],
+ ['get_5fbkg_5fdata_765',['get_bkg_data',['../gb_8h.html#a2a236e483749590877d9207e9430e6ce',1,'gb.h']]],
+ ['get_5fbkg_5ftile_5fxy_766',['get_bkg_tile_xy',['../gb_8h.html#a255decf12ae0b61bd5811c9ed74e7ce5',1,'gb.h']]],
+ ['get_5fbkg_5ftiles_767',['get_bkg_tiles',['../gb_8h.html#a93b0cf6697ab892eda6231d26bf17fc9',1,'gb.h']]],
+ ['get_5fbkg_5fxy_5faddr_768',['get_bkg_xy_addr',['../gb_8h.html#a57ff7363a20c654a39736e33d4d08f60',1,'gb.h']]],
+ ['get_5fdata_769',['get_data',['../gb_8h.html#a4a6bb50835ab2e9294bf17ea32a1e4cd',1,'gb.h']]],
+ ['get_5fmode_770',['get_mode',['../gb_8h.html#a60baa1622feae07982562dcbc243751e',1,'gb.h']]],
+ ['get_5fsprite_5fdata_771',['get_sprite_data',['../gb_8h.html#a5ce794b7f0c3361c79c887b500fcaf19',1,'gb.h']]],
+ ['get_5fsprite_5fprop_772',['get_sprite_prop',['../gb_8h.html#a4b4feb80407d4f1e80579ed932821035',1,'gb.h']]],
+ ['get_5fsprite_5ftile_773',['get_sprite_tile',['../gb_8h.html#a54ffb7990fd37939bbe1a8b1e663e439',1,'gb.h']]],
+ ['get_5ftiles_774',['get_tiles',['../gb_8h.html#a9fb6ed396416150a46d47ed12fc8b251',1,'gb.h']]],
+ ['get_5fvram_5fbyte_775',['get_vram_byte',['../gb_8h.html#a35b5f3f6ba20daff6af91876d2ccc2b0',1,'gb.h']]],
+ ['get_5fwin_5fdata_776',['get_win_data',['../gb_8h.html#ae2a527ffae5cad8083726470c3f30475',1,'gb.h']]],
+ ['get_5fwin_5ftile_5fxy_777',['get_win_tile_xy',['../gb_8h.html#a5b64bd185bbab708e6b6bd6ed1b9bfc2',1,'gb.h']]],
+ ['get_5fwin_5ftiles_778',['get_win_tiles',['../gb_8h.html#aebd45a328b90ddda0154d5fb41b8bbc1',1,'gb.h']]],
+ ['get_5fwin_5fxy_5faddr_779',['get_win_xy_addr',['../gb_8h.html#aac2ff7566ff975530a04e6d90e760e26',1,'gb.h']]],
+ ['getchar_780',['getchar',['../stdio_8h.html#a326ca91ffb1187c28f9d8ee680094e51',1,'stdio.h']]],
+ ['getpix_781',['getpix',['../drawing_8h.html#aaf7ed5593d7fb811f00cd241e3d97c10',1,'drawing.h']]],
+ ['gets_782',['gets',['../stdio_8h.html#aab85b30d68ce9d9e0475e0f51bf610b1',1,'stdio.h']]],
+ ['gotogxy_783',['gotogxy',['../drawing_8h.html#a2dee47d4ad7d830605a63bbf5edeeed1',1,'drawing.h']]],
+ ['gotoxy_784',['gotoxy',['../console_8h.html#a3cd0543b4adebf0bfb5c93a6d0a6f1a2',1,'console.h']]],
+ ['gprint_785',['gprint',['../drawing_8h.html#aef65e5faa0adb82768fca06aafbe50e8',1,'drawing.h']]],
+ ['gprintf_786',['gprintf',['../drawing_8h.html#a20f022d3050cc0409b1558c02a3b47c0',1,'drawing.h']]],
+ ['gprintln_787',['gprintln',['../drawing_8h.html#a9869295972fdbad75ecfa9d4bff2ff21',1,'drawing.h']]],
+ ['gprintn_788',['gprintn',['../drawing_8h.html#a99bdf955788d991c90c0a1a80ca26e7d',1,'drawing.h']]]
];
diff --git a/docs/api/search/functions_8.js b/docs/api/search/functions_8.js
index e42c340a..1a242cfd 100644
--- a/docs/api/search/functions_8.js
+++ b/docs/api/search/functions_8.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['hide_5fmetasprite_788',['hide_metasprite',['../metasprites_8h.html#a7849b2b1e588dc7c01150fa5222e1316',1,'metasprites.h']]],
- ['hide_5fsprite_789',['hide_sprite',['../gb_8h.html#a548f19d30b2ad3edb826d045c7be6bad',1,'gb.h']]],
- ['hiramcpy_790',['hiramcpy',['../gb_8h.html#afd45c10f4566ca284cdab4044c5645b3',1,'gb.h']]]
+ ['hide_5fmetasprite_789',['hide_metasprite',['../metasprites_8h.html#a7849b2b1e588dc7c01150fa5222e1316',1,'metasprites.h']]],
+ ['hide_5fsprite_790',['hide_sprite',['../gb_8h.html#a548f19d30b2ad3edb826d045c7be6bad',1,'gb.h']]],
+ ['hiramcpy_791',['hiramcpy',['../gb_8h.html#afd45c10f4566ca284cdab4044c5645b3',1,'gb.h']]]
];
diff --git a/docs/api/search/functions_9.js b/docs/api/search/functions_9.js
index 3d0fc25f..520fcb48 100644
--- a/docs/api/search/functions_9.js
+++ b/docs/api/search/functions_9.js
@@ -1,13 +1,13 @@
var searchData=
[
- ['init_5fbkg_791',['init_bkg',['../gb_8h.html#a8520286e663067a3f6869db4ff1b74c3',1,'gb.h']]],
- ['init_5fwin_792',['init_win',['../gb_8h.html#a2b4665e62849b60b579803b076661fe4',1,'gb.h']]],
- ['initarand_793',['initarand',['../rand_8h.html#a605cafcd59528d887c1975a4e693d637',1,'rand.h']]],
- ['initrand_794',['initrand',['../rand_8h.html#ac0884b6de9f86e2413bd10de438da25c',1,'rand.h']]],
- ['isalpha_795',['isalpha',['../ctype_8h.html#ab9ed40800d3e18a39bd07e31de16af20',1,'ctype.h']]],
- ['isdigit_796',['isdigit',['../ctype_8h.html#afe7b3895d13be3e313967576c095aa98',1,'ctype.h']]],
- ['islower_797',['islower',['../ctype_8h.html#ad208457578e6758bf8e9043a49cdd9c1',1,'ctype.h']]],
- ['isspace_798',['isspace',['../ctype_8h.html#a5c851b201a80a43fd4e648b008e37100',1,'ctype.h']]],
- ['isupper_799',['isupper',['../ctype_8h.html#ae71a491d659acc84ca7e72ee88df0b2e',1,'ctype.h']]],
- ['itoa_800',['itoa',['../stdlib_8h.html#a531adf3b279a6966ab15cdf31d151c75',1,'stdlib.h']]]
+ ['init_5fbkg_792',['init_bkg',['../gb_8h.html#a8520286e663067a3f6869db4ff1b74c3',1,'gb.h']]],
+ ['init_5fwin_793',['init_win',['../gb_8h.html#a2b4665e62849b60b579803b076661fe4',1,'gb.h']]],
+ ['initarand_794',['initarand',['../rand_8h.html#a605cafcd59528d887c1975a4e693d637',1,'rand.h']]],
+ ['initrand_795',['initrand',['../rand_8h.html#ac0884b6de9f86e2413bd10de438da25c',1,'rand.h']]],
+ ['isalpha_796',['isalpha',['../ctype_8h.html#ab9ed40800d3e18a39bd07e31de16af20',1,'ctype.h']]],
+ ['isdigit_797',['isdigit',['../ctype_8h.html#afe7b3895d13be3e313967576c095aa98',1,'ctype.h']]],
+ ['islower_798',['islower',['../ctype_8h.html#ad208457578e6758bf8e9043a49cdd9c1',1,'ctype.h']]],
+ ['isspace_799',['isspace',['../ctype_8h.html#a5c851b201a80a43fd4e648b008e37100',1,'ctype.h']]],
+ ['isupper_800',['isupper',['../ctype_8h.html#ae71a491d659acc84ca7e72ee88df0b2e',1,'ctype.h']]],
+ ['itoa_801',['itoa',['../stdlib_8h.html#a531adf3b279a6966ab15cdf31d151c75',1,'stdlib.h']]]
];
diff --git a/docs/api/search/functions_a.js b/docs/api/search/functions_a.js
index 5aaf090b..c7ba7c2d 100644
--- a/docs/api/search/functions_a.js
+++ b/docs/api/search/functions_a.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['joypad_801',['joypad',['../gb_8h.html#a81654fb8ed020754dfaf20e4a98a7784',1,'gb.h']]],
- ['joypad_5fex_802',['joypad_ex',['../gb_8h.html#a1db30aa7479be2276312f3c981553906',1,'gb.h']]],
- ['joypad_5finit_803',['joypad_init',['../gb_8h.html#a69553962c85a34c7c8f7c3edbcc41688',1,'gb.h']]]
+ ['joypad_802',['joypad',['../gb_8h.html#a81654fb8ed020754dfaf20e4a98a7784',1,'gb.h']]],
+ ['joypad_5fex_803',['joypad_ex',['../gb_8h.html#a1db30aa7479be2276312f3c981553906',1,'gb.h']]],
+ ['joypad_5finit_804',['joypad_init',['../gb_8h.html#a69553962c85a34c7c8f7c3edbcc41688',1,'gb.h']]]
];
diff --git a/docs/api/search/functions_b.js b/docs/api/search/functions_b.js
index a32a4a2c..115cb82b 100644
--- a/docs/api/search/functions_b.js
+++ b/docs/api/search/functions_b.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['labs_804',['labs',['../stdlib_8h.html#a1de0f30e08cf806ce72025c63b00fba0',1,'stdlib.h']]],
- ['line_805',['line',['../drawing_8h.html#a41d053b8f3a0be6f0de400dc2f0e0fd9',1,'drawing.h']]],
- ['longjmp_806',['longjmp',['../setjmp_8h.html#aaf56e20169cc5a6d5c1a968e24d04623',1,'setjmp.h']]],
- ['ltoa_807',['ltoa',['../stdlib_8h.html#a10784c4be1fa220e438e0a26c2e45bb3',1,'stdlib.h']]]
+ ['labs_805',['labs',['../stdlib_8h.html#a1de0f30e08cf806ce72025c63b00fba0',1,'stdlib.h']]],
+ ['line_806',['line',['../drawing_8h.html#a41d053b8f3a0be6f0de400dc2f0e0fd9',1,'drawing.h']]],
+ ['longjmp_807',['longjmp',['../setjmp_8h.html#aaf56e20169cc5a6d5c1a968e24d04623',1,'setjmp.h']]],
+ ['ltoa_808',['ltoa',['../stdlib_8h.html#a10784c4be1fa220e438e0a26c2e45bb3',1,'stdlib.h']]]
];
diff --git a/docs/api/search/functions_c.js b/docs/api/search/functions_c.js
index bd5a74e1..758227cc 100644
--- a/docs/api/search/functions_c.js
+++ b/docs/api/search/functions_c.js
@@ -1,16 +1,16 @@
var searchData=
[
- ['malloc_808',['malloc',['../stdlib_8h.html#a7ac38fce3243a7dcf448301ee9ffd392',1,'stdlib.h']]],
- ['malloc_5fgc_809',['malloc_gc',['../malloc_8h.html#a5381c84316659ee9aee28b781ea72043',1,'malloc.h']]],
- ['memcpy_810',['memcpy',['../string_8h.html#a1bb96f23101e1f8c053a36d59a01d3f8',1,'string.h']]],
- ['memmove_811',['memmove',['../string_8h.html#a802c986820d3866639922b6bc9484f90',1,'string.h']]],
- ['memset_812',['memset',['../string_8h.html#a23e7549e1468d21419457759150fa767',1,'string.h']]],
- ['mode_813',['mode',['../gb_8h.html#ac269dc3e0ff2d5dc7c0c0fd90e9b1608',1,'gb.h']]],
- ['move_5fbkg_814',['move_bkg',['../gb_8h.html#a6c87db0b71ad17d5b242d18ed3df667b',1,'gb.h']]],
- ['move_5fmetasprite_815',['move_metasprite',['../metasprites_8h.html#ab994d938fa79cd7265b51953f5485b14',1,'metasprites.h']]],
- ['move_5fmetasprite_5fhflip_816',['move_metasprite_hflip',['../metasprites_8h.html#a3c4eba6433da9892a05213bdf83090e4',1,'metasprites.h']]],
- ['move_5fmetasprite_5fhvflip_817',['move_metasprite_hvflip',['../metasprites_8h.html#a27b6e7dc523c565c69b180b2e9beec94',1,'metasprites.h']]],
- ['move_5fmetasprite_5fvflip_818',['move_metasprite_vflip',['../metasprites_8h.html#a068687efbf101e8c59dbfaa4348fbfa6',1,'metasprites.h']]],
- ['move_5fsprite_819',['move_sprite',['../gb_8h.html#aae11e78e2a24e467e72893056f319d51',1,'gb.h']]],
- ['move_5fwin_820',['move_win',['../gb_8h.html#a2faff6aef9e272b15a1912a4f911e385',1,'gb.h']]]
+ ['malloc_809',['malloc',['../stdlib_8h.html#a7ac38fce3243a7dcf448301ee9ffd392',1,'stdlib.h']]],
+ ['malloc_5fgc_810',['malloc_gc',['../malloc_8h.html#a5381c84316659ee9aee28b781ea72043',1,'malloc.h']]],
+ ['memcpy_811',['memcpy',['../string_8h.html#a1bb96f23101e1f8c053a36d59a01d3f8',1,'string.h']]],
+ ['memmove_812',['memmove',['../string_8h.html#a802c986820d3866639922b6bc9484f90',1,'string.h']]],
+ ['memset_813',['memset',['../string_8h.html#a23e7549e1468d21419457759150fa767',1,'string.h']]],
+ ['mode_814',['mode',['../gb_8h.html#ac269dc3e0ff2d5dc7c0c0fd90e9b1608',1,'gb.h']]],
+ ['move_5fbkg_815',['move_bkg',['../gb_8h.html#a6c87db0b71ad17d5b242d18ed3df667b',1,'gb.h']]],
+ ['move_5fmetasprite_816',['move_metasprite',['../metasprites_8h.html#ab994d938fa79cd7265b51953f5485b14',1,'metasprites.h']]],
+ ['move_5fmetasprite_5fhflip_817',['move_metasprite_hflip',['../metasprites_8h.html#a3c4eba6433da9892a05213bdf83090e4',1,'metasprites.h']]],
+ ['move_5fmetasprite_5fhvflip_818',['move_metasprite_hvflip',['../metasprites_8h.html#a27b6e7dc523c565c69b180b2e9beec94',1,'metasprites.h']]],
+ ['move_5fmetasprite_5fvflip_819',['move_metasprite_vflip',['../metasprites_8h.html#a068687efbf101e8c59dbfaa4348fbfa6',1,'metasprites.h']]],
+ ['move_5fsprite_820',['move_sprite',['../gb_8h.html#aae11e78e2a24e467e72893056f319d51',1,'gb.h']]],
+ ['move_5fwin_821',['move_win',['../gb_8h.html#a2faff6aef9e272b15a1912a4f911e385',1,'gb.h']]]
];
diff --git a/docs/api/search/functions_d.js b/docs/api/search/functions_d.js
index 8134e720..6871519e 100644
--- a/docs/api/search/functions_d.js
+++ b/docs/api/search/functions_d.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['nowait_5fint_5fhandler_821',['nowait_int_handler',['../gb_8h.html#a115eb30ec86f6af039a27918ffe4cf8c',1,'gb.h']]]
+ ['nowait_5fint_5fhandler_822',['nowait_int_handler',['../gb_8h.html#a115eb30ec86f6af039a27918ffe4cf8c',1,'gb.h']]]
];
diff --git a/docs/api/search/functions_e.js b/docs/api/search/functions_e.js
index e32d2e5d..738d9065 100644
--- a/docs/api/search/functions_e.js
+++ b/docs/api/search/functions_e.js
@@ -1,11 +1,11 @@
var searchData=
[
- ['play_5fsample_822',['play_sample',['../sample_8h.html#acd2b881426ae608c513e5914e7bcd6a6',1,'sample.h']]],
- ['plot_823',['plot',['../drawing_8h.html#ac3271bc637bab1205ed066f439ebc955',1,'drawing.h']]],
- ['plot_5fpoint_824',['plot_point',['../drawing_8h.html#a0fdc56b95bb27e97685c71639dd96209',1,'drawing.h']]],
- ['posx_825',['posx',['../console_8h.html#a87f5702d0e74f791414576f7636b4b74',1,'console.h']]],
- ['posy_826',['posy',['../console_8h.html#a87894e0e2afb574907e2b11ef26e01cb',1,'console.h']]],
- ['printf_827',['printf',['../stdio_8h.html#a79c1db3e4a2aaa60d5afa76f7d984d0b',1,'stdio.h']]],
- ['putchar_828',['putchar',['../stdio_8h.html#a948b7a0779c308ac5502c57e282e6933',1,'stdio.h']]],
- ['puts_829',['puts',['../stdio_8h.html#a773af5effbb11a0d38460e706828db61',1,'stdio.h']]]
+ ['play_5fsample_823',['play_sample',['../sample_8h.html#acd2b881426ae608c513e5914e7bcd6a6',1,'sample.h']]],
+ ['plot_824',['plot',['../drawing_8h.html#ac3271bc637bab1205ed066f439ebc955',1,'drawing.h']]],
+ ['plot_5fpoint_825',['plot_point',['../drawing_8h.html#a0fdc56b95bb27e97685c71639dd96209',1,'drawing.h']]],
+ ['posx_826',['posx',['../console_8h.html#a87f5702d0e74f791414576f7636b4b74',1,'console.h']]],
+ ['posy_827',['posy',['../console_8h.html#a87894e0e2afb574907e2b11ef26e01cb',1,'console.h']]],
+ ['printf_828',['printf',['../stdio_8h.html#a79c1db3e4a2aaa60d5afa76f7d984d0b',1,'stdio.h']]],
+ ['putchar_829',['putchar',['../stdio_8h.html#a948b7a0779c308ac5502c57e282e6933',1,'stdio.h']]],
+ ['puts_830',['puts',['../stdio_8h.html#a773af5effbb11a0d38460e706828db61',1,'stdio.h']]]
];
diff --git a/docs/api/search/functions_f.js b/docs/api/search/functions_f.js
index c8805672..24764e5c 100644
--- a/docs/api/search/functions_f.js
+++ b/docs/api/search/functions_f.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['qsort_830',['qsort',['../stdlib_8h.html#a02d9d6443b9e613802b2e9c5c71caf59',1,'stdlib.h']]]
+ ['qsort_831',['qsort',['../stdlib_8h.html#a02d9d6443b9e613802b2e9c5c71caf59',1,'stdlib.h']]]
];
diff --git a/docs/api/search/groups_0.js b/docs/api/search/groups_0.js
index 0635fd0c..02aee825 100644
--- a/docs/api/search/groups_0.js
+++ b/docs/api/search/groups_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['list_20of_20gbdk_20fonts_1318',['List of gbdk fonts',['../group__gbdk__fonts.html',1,'']]]
+ ['list_20of_20gbdk_20fonts_1320',['List of gbdk fonts',['../group__gbdk__fonts.html',1,'']]]
];
diff --git a/docs/api/search/pages_0.js b/docs/api/search/pages_0.js
index d2a1e145..7e7f9017 100644
--- a/docs/api/search/pages_0.js
+++ b/docs/api/search/pages_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['coding_20guidelines_1319',['Coding Guidelines',['../docs_coding_guidelines.html',1,'index']]]
+ ['coding_20guidelines_1321',['Coding Guidelines',['../docs_coding_guidelines.html',1,'index']]]
];
diff --git a/docs/api/search/pages_1.js b/docs/api/search/pages_1.js
index e83b4a81..68e6a99c 100644
--- a/docs/api/search/pages_1.js
+++ b/docs/api/search/pages_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['example_20programs_1320',['Example Programs',['../docs_example_programs.html',1,'index']]]
+ ['example_20programs_1322',['Example Programs',['../docs_example_programs.html',1,'index']]]
];
diff --git a/docs/api/search/pages_2.js b/docs/api/search/pages_2.js
index 6436ad56..e5f53d2f 100644
--- a/docs/api/search/pages_2.js
+++ b/docs/api/search/pages_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['frequently_20asked_20questions_20_28faq_29_1321',['Frequently Asked Questions (FAQ)',['../docs_faq.html',1,'index']]]
+ ['frequently_20asked_20questions_20_28faq_29_1323',['Frequently Asked Questions (FAQ)',['../docs_faq.html',1,'index']]]
];
diff --git a/docs/api/search/pages_3.js b/docs/api/search/pages_3.js
index 12a1e2d9..d345da48 100644
--- a/docs/api/search/pages_3.js
+++ b/docs/api/search/pages_3.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['getting_20started_1322',['Getting Started',['../docs_getting_started.html',1,'index']]],
- ['gbdk_20releases_1323',['GBDK Releases',['../docs_releases.html',1,'index']]],
- ['gbdk_20toolchain_1324',['GBDK Toolchain',['../docs_toolchain.html',1,'index']]],
- ['general_20documentation_1325',['General Documentation',['../index.html',1,'']]]
+ ['getting_20started_1324',['Getting Started',['../docs_getting_started.html',1,'index']]],
+ ['gbdk_20releases_1325',['GBDK Releases',['../docs_releases.html',1,'index']]],
+ ['gbdk_20toolchain_1326',['GBDK Toolchain',['../docs_toolchain.html',1,'index']]],
+ ['general_20documentation_1327',['General Documentation',['../index.html',1,'']]]
];
diff --git a/docs/api/search/pages_4.js b/docs/api/search/pages_4.js
index 64ac6e7e..fa030cd7 100644
--- a/docs/api/search/pages_4.js
+++ b/docs/api/search/pages_4.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['links_20and_20third_2dparty_20tools_1326',['Links and Third-Party Tools',['../docs_links_and_tools.html',1,'index']]]
+ ['links_20and_20third_2dparty_20tools_1328',['Links and Third-Party Tools',['../docs_links_and_tools.html',1,'index']]]
];
diff --git a/docs/api/search/pages_5.js b/docs/api/search/pages_5.js
index 5996fbf5..5b87e2b6 100644
--- a/docs/api/search/pages_5.js
+++ b/docs/api/search/pages_5.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['migrating_20to_20new_20gbdk_20versions_1327',['Migrating to new GBDK Versions',['../docs_migrating_versions.html',1,'index']]]
+ ['migrating_20to_20new_20gbdk_20versions_1329',['Migrating to new GBDK Versions',['../docs_migrating_versions.html',1,'index']]]
];
diff --git a/docs/api/search/pages_6.js b/docs/api/search/pages_6.js
index 6e067aaa..67fe5721 100644
--- a/docs/api/search/pages_6.js
+++ b/docs/api/search/pages_6.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['rom_2fram_20banking_20and_20mbcs_1328',['ROM/RAM Banking and MBCs',['../docs_rombanking_mbcs.html',1,'index']]]
+ ['rom_2fram_20banking_20and_20mbcs_1330',['ROM/RAM Banking and MBCs',['../docs_rombanking_mbcs.html',1,'index']]]
];
diff --git a/docs/api/search/pages_7.js b/docs/api/search/pages_7.js
index f877a7f0..0b88e7ee 100644
--- a/docs/api/search/pages_7.js
+++ b/docs/api/search/pages_7.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['toolchain_20settings_1329',['Toolchain settings',['../docs_toolchain_settings.html',1,'index']]],
- ['todo_20list_1330',['Todo List',['../todo.html',1,'']]]
+ ['toolchain_20settings_1331',['Toolchain settings',['../docs_toolchain_settings.html',1,'index']]],
+ ['todo_20list_1332',['Todo List',['../todo.html',1,'']]]
];
diff --git a/docs/api/search/pages_8.js b/docs/api/search/pages_8.js
index de09bb12..e185ff40 100644
--- a/docs/api/search/pages_8.js
+++ b/docs/api/search/pages_8.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['using_20gbdk_1331',['Using GBDK',['../docs_using_gbdk.html',1,'index']]]
+ ['using_20gbdk_1333',['Using GBDK',['../docs_using_gbdk.html',1,'index']]]
];
diff --git a/docs/api/search/typedefs_0.js b/docs/api/search/typedefs_0.js
index 8c245126..bc72082a 100644
--- a/docs/api/search/typedefs_0.js
+++ b/docs/api/search/typedefs_0.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['bcd_1004',['BCD',['../bcd_8h.html#a8c63f4b8b13c77782a46de2e666c7408',1,'bcd.h']]],
- ['boolean_1005',['BOOLEAN',['../asm_2types_8h.html#a5e2fb030036b42012a298e24aca66071',1,'types.h']]],
- ['byte_1006',['BYTE',['../asm_2types_8h.html#a0059ccf0a32e1f146ef70ce970908bf6',1,'types.h']]]
+ ['bcd_1006',['BCD',['../bcd_8h.html#a8c63f4b8b13c77782a46de2e666c7408',1,'bcd.h']]],
+ ['boolean_1007',['BOOLEAN',['../asm_2types_8h.html#a5e2fb030036b42012a298e24aca66071',1,'types.h']]],
+ ['byte_1008',['BYTE',['../asm_2types_8h.html#a0059ccf0a32e1f146ef70ce970908bf6',1,'types.h']]]
];
diff --git a/docs/api/search/typedefs_1.js b/docs/api/search/typedefs_1.js
index d66bfa55..f9050394 100644
--- a/docs/api/search/typedefs_1.js
+++ b/docs/api/search/typedefs_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['clock_5ft_1007',['clock_t',['../asm_2gbz80_2types_8h.html#ad666a63cb94701b620ce999f84629d23',1,'types.h']]]
+ ['clock_5ft_1009',['clock_t',['../asm_2gbz80_2types_8h.html#ad666a63cb94701b620ce999f84629d23',1,'types.h']]]
];
diff --git a/docs/api/search/typedefs_2.js b/docs/api/search/typedefs_2.js
index fdaf7034..5561ce5d 100644
--- a/docs/api/search/typedefs_2.js
+++ b/docs/api/search/typedefs_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['dword_1008',['DWORD',['../asm_2types_8h.html#ad4ab93994d05960e2f96e83b4c45c1cf',1,'types.h']]]
+ ['dword_1010',['DWORD',['../asm_2types_8h.html#ad4ab93994d05960e2f96e83b4c45c1cf',1,'types.h']]]
];
diff --git a/docs/api/search/typedefs_3.js b/docs/api/search/typedefs_3.js
index 049b3b82..be7f84e8 100644
--- a/docs/api/search/typedefs_3.js
+++ b/docs/api/search/typedefs_3.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['far_5fptr_1009',['FAR_PTR',['../far__ptr_8h.html#aea7a313c991baf8e28c1d73cf6595209',1,'far_ptr.h']]],
- ['fixed_1010',['fixed',['../asm_2types_8h.html#ab61f8ff6a444351a91fc9a67c8e6145f',1,'types.h']]],
- ['font_5ft_1011',['font_t',['../font_8h.html#a0356deab046e522bc369dfd4cf108e5e',1,'font.h']]]
+ ['far_5fptr_1011',['FAR_PTR',['../far__ptr_8h.html#aea7a313c991baf8e28c1d73cf6595209',1,'far_ptr.h']]],
+ ['fixed_1012',['fixed',['../asm_2types_8h.html#ab61f8ff6a444351a91fc9a67c8e6145f',1,'types.h']]],
+ ['font_5ft_1013',['font_t',['../font_8h.html#a0356deab046e522bc369dfd4cf108e5e',1,'font.h']]]
];
diff --git a/docs/api/search/typedefs_4.js b/docs/api/search/typedefs_4.js
index 37f75182..dce8e17a 100644
--- a/docs/api/search/typedefs_4.js
+++ b/docs/api/search/typedefs_4.js
@@ -1,18 +1,18 @@
var searchData=
[
- ['int16_1012',['INT16',['../asm_2gbz80_2types_8h.html#a18f1c7ce6c452edd933189d52294af8d',1,'types.h']]],
- ['int16_5ft_1013',['int16_t',['../stdint_8h.html#a66634143db08bebe9b46ab4cb1fc6fd3',1,'stdint.h']]],
- ['int32_1014',['INT32',['../asm_2gbz80_2types_8h.html#a516ea33686d40a7f91f5644851ce7b5d',1,'types.h']]],
- ['int32_5ft_1015',['int32_t',['../stdint_8h.html#a7cf4a942912b990a96c39f9a2b81aa32',1,'stdint.h']]],
- ['int8_1016',['INT8',['../asm_2gbz80_2types_8h.html#a7ebe70ceca856797319175e30bcf003d',1,'types.h']]],
- ['int8_5ft_1017',['int8_t',['../stdint_8h.html#aef44329758059c91c76d334e8fc09700',1,'stdint.h']]],
- ['int_5ffast16_5ft_1018',['int_fast16_t',['../stdint_8h.html#afc08556e35ad5fc42968cf164e7852d4',1,'stdint.h']]],
- ['int_5ffast32_5ft_1019',['int_fast32_t',['../stdint_8h.html#a21402dabb3274e5161a34a27ccff50db',1,'stdint.h']]],
- ['int_5ffast8_5ft_1020',['int_fast8_t',['../stdint_8h.html#afa981e0352f65c207364c9cb82246b53',1,'stdint.h']]],
- ['int_5fhandler_1021',['int_handler',['../gb_8h.html#a9508f919d9482d1d51534ccac212454d',1,'gb.h']]],
- ['int_5fleast16_5ft_1022',['int_least16_t',['../stdint_8h.html#a3379485af1661b4f36ac1c311832253b',1,'stdint.h']]],
- ['int_5fleast32_5ft_1023',['int_least32_t',['../stdint_8h.html#a50d1c7c0834558a78588e1d6d0f62a1d',1,'stdint.h']]],
- ['int_5fleast8_5ft_1024',['int_least8_t',['../stdint_8h.html#ae04fa5ea5ad475bfe428842a986fbf28',1,'stdint.h']]],
- ['intmax_5ft_1025',['intmax_t',['../stdint_8h.html#aa8722f97ae26d6aeff0fd4ebba7de7e4',1,'stdint.h']]],
- ['intptr_5ft_1026',['intptr_t',['../stdint_8h.html#a0fbe4a4f8dd857ee04923a901f27465f',1,'stdint.h']]]
+ ['int16_1014',['INT16',['../asm_2gbz80_2types_8h.html#a18f1c7ce6c452edd933189d52294af8d',1,'types.h']]],
+ ['int16_5ft_1015',['int16_t',['../stdint_8h.html#a66634143db08bebe9b46ab4cb1fc6fd3',1,'stdint.h']]],
+ ['int32_1016',['INT32',['../asm_2gbz80_2types_8h.html#a516ea33686d40a7f91f5644851ce7b5d',1,'types.h']]],
+ ['int32_5ft_1017',['int32_t',['../stdint_8h.html#a7cf4a942912b990a96c39f9a2b81aa32',1,'stdint.h']]],
+ ['int8_1018',['INT8',['../asm_2gbz80_2types_8h.html#a7ebe70ceca856797319175e30bcf003d',1,'types.h']]],
+ ['int8_5ft_1019',['int8_t',['../stdint_8h.html#aef44329758059c91c76d334e8fc09700',1,'stdint.h']]],
+ ['int_5ffast16_5ft_1020',['int_fast16_t',['../stdint_8h.html#afc08556e35ad5fc42968cf164e7852d4',1,'stdint.h']]],
+ ['int_5ffast32_5ft_1021',['int_fast32_t',['../stdint_8h.html#a21402dabb3274e5161a34a27ccff50db',1,'stdint.h']]],
+ ['int_5ffast8_5ft_1022',['int_fast8_t',['../stdint_8h.html#afa981e0352f65c207364c9cb82246b53',1,'stdint.h']]],
+ ['int_5fhandler_1023',['int_handler',['../gb_8h.html#a9508f919d9482d1d51534ccac212454d',1,'gb.h']]],
+ ['int_5fleast16_5ft_1024',['int_least16_t',['../stdint_8h.html#a3379485af1661b4f36ac1c311832253b',1,'stdint.h']]],
+ ['int_5fleast32_5ft_1025',['int_least32_t',['../stdint_8h.html#a50d1c7c0834558a78588e1d6d0f62a1d',1,'stdint.h']]],
+ ['int_5fleast8_5ft_1026',['int_least8_t',['../stdint_8h.html#ae04fa5ea5ad475bfe428842a986fbf28',1,'stdint.h']]],
+ ['intmax_5ft_1027',['intmax_t',['../stdint_8h.html#aa8722f97ae26d6aeff0fd4ebba7de7e4',1,'stdint.h']]],
+ ['intptr_5ft_1028',['intptr_t',['../stdint_8h.html#a0fbe4a4f8dd857ee04923a901f27465f',1,'stdint.h']]]
];
diff --git a/docs/api/search/typedefs_5.js b/docs/api/search/typedefs_5.js
index 2621d636..9ea33359 100644
--- a/docs/api/search/typedefs_5.js
+++ b/docs/api/search/typedefs_5.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['jmp_5fbuf_1027',['jmp_buf',['../setjmp_8h.html#a88bdd5a73c39b334f254a3ef5488880d',1,'setjmp.h']]]
+ ['jmp_5fbuf_1029',['jmp_buf',['../setjmp_8h.html#a88bdd5a73c39b334f254a3ef5488880d',1,'setjmp.h']]]
];
diff --git a/docs/api/search/typedefs_6.js b/docs/api/search/typedefs_6.js
index 81601633..46fbf7ea 100644
--- a/docs/api/search/typedefs_6.js
+++ b/docs/api/search/typedefs_6.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['lword_1028',['LWORD',['../asm_2types_8h.html#a6c3850eca7373a470eb6e5a7c6278215',1,'types.h']]]
+ ['lword_1030',['LWORD',['../asm_2types_8h.html#a6c3850eca7373a470eb6e5a7c6278215',1,'types.h']]]
];
diff --git a/docs/api/search/typedefs_7.js b/docs/api/search/typedefs_7.js
index 69c67cf6..d16898b2 100644
--- a/docs/api/search/typedefs_7.js
+++ b/docs/api/search/typedefs_7.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['metasprite_5ft_1029',['metasprite_t',['../metasprites_8h.html#aba6401cc8173158a9f37ee22094c03d3',1,'metasprites.h']]],
- ['mfont_5fhandle_1030',['mfont_handle',['../font_8h.html#aea1f63fe2ea8c7689b061ad93b485553',1,'font.h']]],
- ['mmalloc_5fhunk_1031',['mmalloc_hunk',['../malloc_8h.html#a0ac9e31945f09f01e6b33e74d39f83ab',1,'malloc.h']]]
+ ['metasprite_5ft_1031',['metasprite_t',['../metasprites_8h.html#aba6401cc8173158a9f37ee22094c03d3',1,'metasprites.h']]],
+ ['mfont_5fhandle_1032',['mfont_handle',['../font_8h.html#aea1f63fe2ea8c7689b061ad93b485553',1,'font.h']]],
+ ['mmalloc_5fhunk_1033',['mmalloc_hunk',['../malloc_8h.html#a0ac9e31945f09f01e6b33e74d39f83ab',1,'malloc.h']]]
];
diff --git a/docs/api/search/typedefs_8.js b/docs/api/search/typedefs_8.js
index 69a488e6..daaa9dbc 100644
--- a/docs/api/search/typedefs_8.js
+++ b/docs/api/search/typedefs_8.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['oam_5fitem_5ft_1032',['OAM_item_t',['../gb_8h.html#a8e5ea12b86bdfc812448c2f5c4336c03',1,'gb.h']]]
+ ['oam_5fitem_5ft_1034',['OAM_item_t',['../gb_8h.html#a8e5ea12b86bdfc812448c2f5c4336c03',1,'gb.h']]]
];
diff --git a/docs/api/search/typedefs_9.js b/docs/api/search/typedefs_9.js
index c1aed1ae..96f3f912 100644
--- a/docs/api/search/typedefs_9.js
+++ b/docs/api/search/typedefs_9.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['pmfont_5fhandle_1033',['pmfont_handle',['../font_8h.html#a82e0e078fc8a8b6a18538131625dba3a',1,'font.h']]],
- ['pmmalloc_5fhunk_1034',['pmmalloc_hunk',['../malloc_8h.html#ad521838368171a2564658d4e129d7922',1,'malloc.h']]],
- ['pointer_1035',['POINTER',['../types_8h.html#ae51a81000f343b8ec43bca1f6a723d7b',1,'types.h']]],
- ['ptrdiff_5ft_1036',['ptrdiff_t',['../stddef_8h.html#afbe679a40a36da5983ebc5b39754c065',1,'stddef.h']]]
+ ['pmfont_5fhandle_1035',['pmfont_handle',['../font_8h.html#a82e0e078fc8a8b6a18538131625dba3a',1,'font.h']]],
+ ['pmmalloc_5fhunk_1036',['pmmalloc_hunk',['../malloc_8h.html#ad521838368171a2564658d4e129d7922',1,'malloc.h']]],
+ ['pointer_1037',['POINTER',['../types_8h.html#ae51a81000f343b8ec43bca1f6a723d7b',1,'types.h']]],
+ ['ptrdiff_5ft_1038',['ptrdiff_t',['../stddef_8h.html#afbe679a40a36da5983ebc5b39754c065',1,'stddef.h']]]
];
diff --git a/docs/api/search/typedefs_a.js b/docs/api/search/typedefs_a.js
index 738a0941..eae36991 100644
--- a/docs/api/search/typedefs_a.js
+++ b/docs/api/search/typedefs_a.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['size_5ft_1037',['size_t',['../asm_2gbz80_2types_8h.html#a7619b847aeded8a6d14cbfa212b2cdfb',1,'size_t(): types.h'],['../stddef_8h.html#a7c94ea6f8948649f8d181ae55911eeaf',1,'size_t(): stddef.h']]]
+ ['size_5ft_1039',['size_t',['../asm_2gbz80_2types_8h.html#a7619b847aeded8a6d14cbfa212b2cdfb',1,'size_t(): types.h'],['../stddef_8h.html#a7c94ea6f8948649f8d181ae55911eeaf',1,'size_t(): stddef.h']]]
];
diff --git a/docs/api/search/typedefs_b.js b/docs/api/search/typedefs_b.js
index e48f46f9..96c554d5 100644
--- a/docs/api/search/typedefs_b.js
+++ b/docs/api/search/typedefs_b.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['time_5ft_1038',['time_t',['../time_8h.html#ab3806eb1b3b24a99fcc7a2a8c6411e77',1,'time.h']]]
+ ['time_5ft_1040',['time_t',['../time_8h.html#ab3806eb1b3b24a99fcc7a2a8c6411e77',1,'time.h']]]
];
diff --git a/docs/api/search/typedefs_c.js b/docs/api/search/typedefs_c.js
index dd7eeb0e..2bc82579 100644
--- a/docs/api/search/typedefs_c.js
+++ b/docs/api/search/typedefs_c.js
@@ -1,21 +1,21 @@
var searchData=
[
- ['ubyte_1039',['UBYTE',['../asm_2types_8h.html#a280213815420791851f7e59bdc8a3c95',1,'types.h']]],
- ['udword_1040',['UDWORD',['../asm_2types_8h.html#a332730c89876a91d3c98a6c9a764e23e',1,'types.h']]],
- ['uint16_1041',['UINT16',['../asm_2gbz80_2types_8h.html#a805c2c164bdd38d72a30c46e84fb568b',1,'types.h']]],
- ['uint16_5ft_1042',['uint16_t',['../stdint_8h.html#adf4d876453337156dde61095e1f20223',1,'stdint.h']]],
- ['uint32_1043',['UINT32',['../asm_2gbz80_2types_8h.html#a0b39d6d754cb24c708b0f2bdbe88130e',1,'types.h']]],
- ['uint32_5ft_1044',['uint32_t',['../stdint_8h.html#a33594304e786b158f3fb30289278f5af',1,'stdint.h']]],
- ['uint8_1045',['UINT8',['../asm_2gbz80_2types_8h.html#ab27e9918b538ce9d8ca692479b375b6a',1,'types.h']]],
- ['uint8_5ft_1046',['uint8_t',['../stdint_8h.html#aba7bc1797add20fe3efdf37ced1182c5',1,'stdint.h']]],
- ['uint_5ffast16_5ft_1047',['uint_fast16_t',['../stdint_8h.html#a226d967fb6d06433caf43f20dc876aae',1,'stdint.h']]],
- ['uint_5ffast32_5ft_1048',['uint_fast32_t',['../stdint_8h.html#a8a5d6c5353ff297fd0797e654772361b',1,'stdint.h']]],
- ['uint_5ffast8_5ft_1049',['uint_fast8_t',['../stdint_8h.html#a2d31063fef649c85396fb28130ef9795',1,'stdint.h']]],
- ['uint_5fleast16_5ft_1050',['uint_least16_t',['../stdint_8h.html#a1bae72af13d35bac8eb9424db7e27bf1',1,'stdint.h']]],
- ['uint_5fleast32_5ft_1051',['uint_least32_t',['../stdint_8h.html#a1c0bb513299dbdffa1cce4277593b3ce',1,'stdint.h']]],
- ['uint_5fleast8_5ft_1052',['uint_least8_t',['../stdint_8h.html#ab0fdd2a9dc9606590ecccc0a5d8b5b7c',1,'stdint.h']]],
- ['uintmax_5ft_1053',['uintmax_t',['../stdint_8h.html#a21649560c6e8dce6de2fb6a95f1bf802',1,'stdint.h']]],
- ['uintptr_5ft_1054',['uintptr_t',['../stdint_8h.html#a728e973c799f206f0151c8a3bd1e5699',1,'stdint.h']]],
- ['ulword_1055',['ULWORD',['../asm_2types_8h.html#a91374712e986ede0145415318d88fbd8',1,'types.h']]],
- ['uword_1056',['UWORD',['../asm_2types_8h.html#a9e551e7c1bd8feb51e8eefd109966f75',1,'types.h']]]
+ ['ubyte_1041',['UBYTE',['../asm_2types_8h.html#a280213815420791851f7e59bdc8a3c95',1,'types.h']]],
+ ['udword_1042',['UDWORD',['../asm_2types_8h.html#a332730c89876a91d3c98a6c9a764e23e',1,'types.h']]],
+ ['uint16_1043',['UINT16',['../asm_2gbz80_2types_8h.html#a805c2c164bdd38d72a30c46e84fb568b',1,'types.h']]],
+ ['uint16_5ft_1044',['uint16_t',['../stdint_8h.html#adf4d876453337156dde61095e1f20223',1,'stdint.h']]],
+ ['uint32_1045',['UINT32',['../asm_2gbz80_2types_8h.html#a0b39d6d754cb24c708b0f2bdbe88130e',1,'types.h']]],
+ ['uint32_5ft_1046',['uint32_t',['../stdint_8h.html#a33594304e786b158f3fb30289278f5af',1,'stdint.h']]],
+ ['uint8_1047',['UINT8',['../asm_2gbz80_2types_8h.html#ab27e9918b538ce9d8ca692479b375b6a',1,'types.h']]],
+ ['uint8_5ft_1048',['uint8_t',['../stdint_8h.html#aba7bc1797add20fe3efdf37ced1182c5',1,'stdint.h']]],
+ ['uint_5ffast16_5ft_1049',['uint_fast16_t',['../stdint_8h.html#a226d967fb6d06433caf43f20dc876aae',1,'stdint.h']]],
+ ['uint_5ffast32_5ft_1050',['uint_fast32_t',['../stdint_8h.html#a8a5d6c5353ff297fd0797e654772361b',1,'stdint.h']]],
+ ['uint_5ffast8_5ft_1051',['uint_fast8_t',['../stdint_8h.html#a2d31063fef649c85396fb28130ef9795',1,'stdint.h']]],
+ ['uint_5fleast16_5ft_1052',['uint_least16_t',['../stdint_8h.html#a1bae72af13d35bac8eb9424db7e27bf1',1,'stdint.h']]],
+ ['uint_5fleast32_5ft_1053',['uint_least32_t',['../stdint_8h.html#a1c0bb513299dbdffa1cce4277593b3ce',1,'stdint.h']]],
+ ['uint_5fleast8_5ft_1054',['uint_least8_t',['../stdint_8h.html#ab0fdd2a9dc9606590ecccc0a5d8b5b7c',1,'stdint.h']]],
+ ['uintmax_5ft_1055',['uintmax_t',['../stdint_8h.html#a21649560c6e8dce6de2fb6a95f1bf802',1,'stdint.h']]],
+ ['uintptr_5ft_1056',['uintptr_t',['../stdint_8h.html#a728e973c799f206f0151c8a3bd1e5699',1,'stdint.h']]],
+ ['ulword_1057',['ULWORD',['../asm_2types_8h.html#a91374712e986ede0145415318d88fbd8',1,'types.h']]],
+ ['uword_1058',['UWORD',['../asm_2types_8h.html#a9e551e7c1bd8feb51e8eefd109966f75',1,'types.h']]]
];
diff --git a/docs/api/search/typedefs_d.js b/docs/api/search/typedefs_d.js
index 915af63d..17d162ae 100644
--- a/docs/api/search/typedefs_d.js
+++ b/docs/api/search/typedefs_d.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['va_5flist_1057',['va_list',['../asm_2gbz80_2stdarg_8h.html#a90f5a53cfeaf133c17cd213633060737',1,'stdarg.h']]]
+ ['va_5flist_1059',['va_list',['../asm_2gbz80_2stdarg_8h.html#a90f5a53cfeaf133c17cd213633060737',1,'stdarg.h']]]
];
diff --git a/docs/api/search/typedefs_e.js b/docs/api/search/typedefs_e.js
index 6fc53446..6c9604be 100644
--- a/docs/api/search/typedefs_e.js
+++ b/docs/api/search/typedefs_e.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['wchar_5ft_1058',['wchar_t',['../stddef_8h.html#a88ca3e0156f8101475a589ae3cbd98c8',1,'stddef.h']]],
- ['word_1059',['WORD',['../asm_2types_8h.html#ac1b71367b1b0eae6718d17b4fd07aecd',1,'types.h']]]
+ ['wchar_5ft_1060',['wchar_t',['../stddef_8h.html#a88ca3e0156f8101475a589ae3cbd98c8',1,'stddef.h']]],
+ ['word_1061',['WORD',['../asm_2types_8h.html#ac1b71367b1b0eae6718d17b4fd07aecd',1,'types.h']]]
];
diff --git a/docs/api/search/variables_0.js b/docs/api/search/variables_0.js
index 393f34b2..c21d1005 100644
--- a/docs/api/search/variables_0.js
+++ b/docs/api/search/variables_0.js
@@ -1,15 +1,15 @@
var searchData=
[
- ['_5f_5fcall_5fbanked_5faddr_894',['__call_banked_addr',['../far__ptr_8h.html#a1344c26ca298a9eadea4bcfea6442ae3',1,'far_ptr.h']]],
- ['_5f_5fcall_5fbanked_5fbank_895',['__call_banked_bank',['../far__ptr_8h.html#a6f1c13e2fad9dd04645a000050d9f382',1,'far_ptr.h']]],
- ['_5f_5fcall_5fbanked_5fptr_896',['__call_banked_ptr',['../far__ptr_8h.html#a27792b7fc3796a1e1828d4c5812e5b21',1,'far_ptr.h']]],
- ['_5f_5fcurrent_5fbase_5ftile_897',['__current_base_tile',['../metasprites_8h.html#a8b44c9fffa6d4233e725a0e4b9da6e3c',1,'metasprites.h']]],
- ['_5f_5fcurrent_5fmetasprite_898',['__current_metasprite',['../metasprites_8h.html#aae51f066cc5436457f62351847bfc64b',1,'metasprites.h']]],
- ['_5f_5frender_5fshadow_5foam_899',['__render_shadow_OAM',['../metasprites_8h.html#a14cb8235744c5f23da62bb2ae745d618',1,'metasprites.h']]],
- ['_5fcpu_900',['_cpu',['../gb_8h.html#adbc4b02721d3ab48caf53e0228fd3eb5',1,'gb.h']]],
- ['_5fcurrent_5fbank_901',['_current_bank',['../gb_8h.html#a98b848953a95ce2fff6fda643575d74a',1,'gb.h']]],
- ['_5fio_5fin_902',['_io_in',['../gb_8h.html#a7783f5ed79717411d55f62b8ef3f4592',1,'gb.h']]],
- ['_5fio_5fout_903',['_io_out',['../gb_8h.html#a29d93722542506d0acb9b23c85ff1c5e',1,'gb.h']]],
- ['_5fio_5fstatus_904',['_io_status',['../gb_8h.html#a83d08d752bb2f2406084a9afa7988b98',1,'gb.h']]],
- ['_5fshadow_5foam_5fbase_905',['_shadow_OAM_base',['../gb_8h.html#a7b662ae4d83f9837bacb9fd580673054',1,'gb.h']]]
+ ['_5f_5fcall_5fbanked_5faddr_896',['__call_banked_addr',['../far__ptr_8h.html#a1344c26ca298a9eadea4bcfea6442ae3',1,'far_ptr.h']]],
+ ['_5f_5fcall_5fbanked_5fbank_897',['__call_banked_bank',['../far__ptr_8h.html#a6f1c13e2fad9dd04645a000050d9f382',1,'far_ptr.h']]],
+ ['_5f_5fcall_5fbanked_5fptr_898',['__call_banked_ptr',['../far__ptr_8h.html#a27792b7fc3796a1e1828d4c5812e5b21',1,'far_ptr.h']]],
+ ['_5f_5fcurrent_5fbase_5ftile_899',['__current_base_tile',['../metasprites_8h.html#a8b44c9fffa6d4233e725a0e4b9da6e3c',1,'metasprites.h']]],
+ ['_5f_5fcurrent_5fmetasprite_900',['__current_metasprite',['../metasprites_8h.html#aae51f066cc5436457f62351847bfc64b',1,'metasprites.h']]],
+ ['_5f_5frender_5fshadow_5foam_901',['__render_shadow_OAM',['../metasprites_8h.html#a14cb8235744c5f23da62bb2ae745d618',1,'metasprites.h']]],
+ ['_5fcpu_902',['_cpu',['../gb_8h.html#adbc4b02721d3ab48caf53e0228fd3eb5',1,'gb.h']]],
+ ['_5fcurrent_5fbank_903',['_current_bank',['../gb_8h.html#a98b848953a95ce2fff6fda643575d74a',1,'gb.h']]],
+ ['_5fio_5fin_904',['_io_in',['../gb_8h.html#a7783f5ed79717411d55f62b8ef3f4592',1,'gb.h']]],
+ ['_5fio_5fout_905',['_io_out',['../gb_8h.html#a29d93722542506d0acb9b23c85ff1c5e',1,'gb.h']]],
+ ['_5fio_5fstatus_906',['_io_status',['../gb_8h.html#a83d08d752bb2f2406084a9afa7988b98',1,'gb.h']]],
+ ['_5fshadow_5foam_5fbase_907',['_shadow_OAM_base',['../gb_8h.html#a7b662ae4d83f9837bacb9fd580673054',1,'gb.h']]]
];
diff --git a/docs/api/search/variables_1.js b/docs/api/search/variables_1.js
index 40a88772..bc608a95 100644
--- a/docs/api/search/variables_1.js
+++ b/docs/api/search/variables_1.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['b_906',['b',['../union__fixed.html#a7a7fb2c246996fabce7dee230525f4bb',1,'_fixed::b()'],['../gb_8h.html#a4c2e4adef74067fdbb49005bc73de937',1,'b(): gb.h']]],
- ['bcpd_5freg_907',['BCPD_REG',['../hardware_8h.html#a1fc8ff37ffe1c431364e1ef7c3961b30',1,'hardware.h']]],
- ['bcps_5freg_908',['BCPS_REG',['../hardware_8h.html#a28fa1ca08ef1c8ed97280bc5e60bdd99',1,'hardware.h']]],
- ['bgp_5freg_909',['BGP_REG',['../hardware_8h.html#af577ba87ec3d13d7415e4c4a53cdf997',1,'hardware.h']]]
+ ['b_908',['b',['../union__fixed.html#a7a7fb2c246996fabce7dee230525f4bb',1,'_fixed::b()'],['../gb_8h.html#a4c2e4adef74067fdbb49005bc73de937',1,'b(): gb.h']]],
+ ['bcpd_5freg_909',['BCPD_REG',['../hardware_8h.html#a1fc8ff37ffe1c431364e1ef7c3961b30',1,'hardware.h']]],
+ ['bcps_5freg_910',['BCPS_REG',['../hardware_8h.html#a28fa1ca08ef1c8ed97280bc5e60bdd99',1,'hardware.h']]],
+ ['bgp_5freg_911',['BGP_REG',['../hardware_8h.html#af577ba87ec3d13d7415e4c4a53cdf997',1,'hardware.h']]]
];
diff --git a/docs/api/search/variables_10.js b/docs/api/search/variables_10.js
index 79a5be2b..7050cc1c 100644
--- a/docs/api/search/variables_10.js
+++ b/docs/api/search/variables_10.js
@@ -1,16 +1,16 @@
var searchData=
[
- ['sb_5freg_981',['SB_REG',['../hardware_8h.html#a5f2da0d8200f44b6fd694c4a2bea820e',1,'hardware.h']]],
- ['sc_5freg_982',['SC_REG',['../hardware_8h.html#a0fb715973ee3edd1b525eb7f503e3b2a',1,'hardware.h']]],
- ['scx_5freg_983',['SCX_REG',['../hardware_8h.html#a86cc170585319565195f2c163250be1f',1,'hardware.h']]],
- ['scy_5freg_984',['SCY_REG',['../hardware_8h.html#a244b162cf13bbcb4fe842d7e298b39c2',1,'hardware.h']]],
- ['seg_985',['seg',['../union____far__ptr.html#a508575a942b502a673bc3db4970c1e0b',1,'__far_ptr']]],
- ['segfn_986',['segfn',['../union____far__ptr.html#a8c6e2345a04a58dc76339923baffcbe3',1,'__far_ptr']]],
- ['segofs_987',['segofs',['../union____far__ptr.html#ab77baeba835fa23f6d96c641e7ee2b06',1,'__far_ptr']]],
- ['shadow_5foam_988',['shadow_OAM',['../gb_8h.html#a3619f9cb1e3c92238a033ead79a0c551',1,'gb.h']]],
- ['size_989',['size',['../structsmalloc__hunk.html#a8b15039895492addf48d26ff38ec95ab',1,'smalloc_hunk']]],
- ['stat_5freg_990',['STAT_REG',['../hardware_8h.html#ad40ebf3b29add46cdd310a7e0802bc6b',1,'hardware.h']]],
- ['status_991',['status',['../structsmalloc__hunk.html#a204a0318f8d6d87cf68be18463318812',1,'smalloc_hunk']]],
- ['svbk_5freg_992',['SVBK_REG',['../hardware_8h.html#aa128832cecec4e609517fe3daf044e5e',1,'hardware.h']]],
- ['sys_5ftime_993',['sys_time',['../gb_8h.html#a320fd91d5aa12ba9d1435ab908420998',1,'gb.h']]]
+ ['sb_5freg_983',['SB_REG',['../hardware_8h.html#a5f2da0d8200f44b6fd694c4a2bea820e',1,'hardware.h']]],
+ ['sc_5freg_984',['SC_REG',['../hardware_8h.html#a0fb715973ee3edd1b525eb7f503e3b2a',1,'hardware.h']]],
+ ['scx_5freg_985',['SCX_REG',['../hardware_8h.html#a86cc170585319565195f2c163250be1f',1,'hardware.h']]],
+ ['scy_5freg_986',['SCY_REG',['../hardware_8h.html#a244b162cf13bbcb4fe842d7e298b39c2',1,'hardware.h']]],
+ ['seg_987',['seg',['../union____far__ptr.html#a508575a942b502a673bc3db4970c1e0b',1,'__far_ptr']]],
+ ['segfn_988',['segfn',['../union____far__ptr.html#a8c6e2345a04a58dc76339923baffcbe3',1,'__far_ptr']]],
+ ['segofs_989',['segofs',['../union____far__ptr.html#ab77baeba835fa23f6d96c641e7ee2b06',1,'__far_ptr']]],
+ ['shadow_5foam_990',['shadow_OAM',['../gb_8h.html#a3619f9cb1e3c92238a033ead79a0c551',1,'gb.h']]],
+ ['size_991',['size',['../structsmalloc__hunk.html#a8b15039895492addf48d26ff38ec95ab',1,'smalloc_hunk']]],
+ ['stat_5freg_992',['STAT_REG',['../hardware_8h.html#ad40ebf3b29add46cdd310a7e0802bc6b',1,'hardware.h']]],
+ ['status_993',['status',['../structsmalloc__hunk.html#a204a0318f8d6d87cf68be18463318812',1,'smalloc_hunk']]],
+ ['svbk_5freg_994',['SVBK_REG',['../hardware_8h.html#aa128832cecec4e609517fe3daf044e5e',1,'hardware.h']]],
+ ['sys_5ftime_995',['sys_time',['../gb_8h.html#a320fd91d5aa12ba9d1435ab908420998',1,'gb.h']]]
];
diff --git a/docs/api/search/variables_11.js b/docs/api/search/variables_11.js
index 076523fb..b659c8f3 100644
--- a/docs/api/search/variables_11.js
+++ b/docs/api/search/variables_11.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['tac_5freg_994',['TAC_REG',['../hardware_8h.html#a659173ac2c8da7fd04bc77973eb95256',1,'hardware.h']]],
- ['tile_995',['tile',['../struct_o_a_m__item__t.html#abe231d7583c7769e481c66ca8c6e8a10',1,'OAM_item_t']]],
- ['tima_5freg_996',['TIMA_REG',['../hardware_8h.html#a9d295bb437953de5ebcb3c12d65743aa',1,'hardware.h']]],
- ['tma_5freg_997',['TMA_REG',['../hardware_8h.html#a39e5a5b9afd2c2ca78de4aba7ccd071c',1,'hardware.h']]]
+ ['tac_5freg_996',['TAC_REG',['../hardware_8h.html#a659173ac2c8da7fd04bc77973eb95256',1,'hardware.h']]],
+ ['tile_997',['tile',['../struct_o_a_m__item__t.html#abe231d7583c7769e481c66ca8c6e8a10',1,'OAM_item_t']]],
+ ['tima_5freg_998',['TIMA_REG',['../hardware_8h.html#a9d295bb437953de5ebcb3c12d65743aa',1,'hardware.h']]],
+ ['tma_5freg_999',['TMA_REG',['../hardware_8h.html#a39e5a5b9afd2c2ca78de4aba7ccd071c',1,'hardware.h']]]
];
diff --git a/docs/api/search/variables_12.js b/docs/api/search/variables_12.js
index 6171819a..e01dc7b2 100644
--- a/docs/api/search/variables_12.js
+++ b/docs/api/search/variables_12.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['vbk_5freg_998',['VBK_REG',['../hardware_8h.html#a5ccae0d556500e1055a0ec8de20c535a',1,'hardware.h']]]
+ ['vbk_5freg_1000',['VBK_REG',['../hardware_8h.html#a5ccae0d556500e1055a0ec8de20c535a',1,'hardware.h']]]
];
diff --git a/docs/api/search/variables_13.js b/docs/api/search/variables_13.js
index 8fd4ba77..49e6ab42 100644
--- a/docs/api/search/variables_13.js
+++ b/docs/api/search/variables_13.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['w_999',['w',['../union__fixed.html#ab16f9fd51f817308d109b9b35866f310',1,'_fixed']]],
- ['wx_5freg_1000',['WX_REG',['../hardware_8h.html#a310aa43fbee2fd6b6b419df48acce1e0',1,'hardware.h']]],
- ['wy_5freg_1001',['WY_REG',['../hardware_8h.html#a1c8d52607616ef37da335447e4cbe850',1,'hardware.h']]]
+ ['w_1001',['w',['../union__fixed.html#ab16f9fd51f817308d109b9b35866f310',1,'_fixed']]],
+ ['wx_5freg_1002',['WX_REG',['../hardware_8h.html#a310aa43fbee2fd6b6b419df48acce1e0',1,'hardware.h']]],
+ ['wy_5freg_1003',['WY_REG',['../hardware_8h.html#a1c8d52607616ef37da335447e4cbe850',1,'hardware.h']]]
];
diff --git a/docs/api/search/variables_14.js b/docs/api/search/variables_14.js
index 51262ad4..b65bdccd 100644
--- a/docs/api/search/variables_14.js
+++ b/docs/api/search/variables_14.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['x_1002',['x',['../struct_o_a_m__item__t.html#a7a0dc012815fd69a75347136e2a050dc',1,'OAM_item_t']]]
+ ['x_1004',['x',['../struct_o_a_m__item__t.html#a7a0dc012815fd69a75347136e2a050dc',1,'OAM_item_t']]]
];
diff --git a/docs/api/search/variables_15.js b/docs/api/search/variables_15.js
index c009e823..b839a3f1 100644
--- a/docs/api/search/variables_15.js
+++ b/docs/api/search/variables_15.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['y_1003',['y',['../struct_o_a_m__item__t.html#a48c4d7253494259403cd4597e8c19ca5',1,'OAM_item_t']]]
+ ['y_1005',['y',['../struct_o_a_m__item__t.html#a48c4d7253494259403cd4597e8c19ca5',1,'OAM_item_t']]]
];
diff --git a/docs/api/search/variables_2.js b/docs/api/search/variables_2.js
index c972f0e6..8ac60746 100644
--- a/docs/api/search/variables_2.js
+++ b/docs/api/search/variables_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['c_910',['c',['../gb_8h.html#a4e1e0e72dd773439e333c84dd762a9c3',1,'c(): gb.h'],['../gbdecompress_8h.html#a0b3366755f3276b0243c1e0497471b7a',1,'c(): gbdecompress.h'],['../sgb_8h.html#a0b3366755f3276b0243c1e0497471b7a',1,'c(): sgb.h'],['../string_8h.html#a4e1e0e72dd773439e333c84dd762a9c3',1,'c(): string.h']]]
+ ['c_912',['c',['../gb_8h.html#a4e1e0e72dd773439e333c84dd762a9c3',1,'c(): gb.h'],['../gbdecompress_8h.html#a0b3366755f3276b0243c1e0497471b7a',1,'c(): gbdecompress.h'],['../sgb_8h.html#a0b3366755f3276b0243c1e0497471b7a',1,'c(): sgb.h'],['../string_8h.html#a4e1e0e72dd773439e333c84dd762a9c3',1,'c(): string.h']]]
];
diff --git a/docs/api/search/variables_3.js b/docs/api/search/variables_3.js
index 9545908a..0b154f4a 100644
--- a/docs/api/search/variables_3.js
+++ b/docs/api/search/variables_3.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['d_911',['d',['../gb_8h.html#a0a3d95ad0ab8ad213016101d2e9c3d3e',1,'gb.h']]],
- ['div_5freg_912',['DIV_REG',['../hardware_8h.html#afa1e18e47bf68ce68d7807fff6edf16b',1,'hardware.h']]],
- ['dma_5freg_913',['DMA_REG',['../hardware_8h.html#ae13ce414d3fe7c98c1434918186dfc81',1,'hardware.h']]],
- ['dtile_914',['dtile',['../structmetasprite__t.html#a6005af579bbc6ceea5a960ffbf73d83d',1,'metasprite_t']]],
- ['dx_915',['dx',['../structmetasprite__t.html#a8dd01a7609fe347baf7995ef9eec4369',1,'metasprite_t']]],
- ['dy_916',['dy',['../structmetasprite__t.html#acc640358a5fc8e92e4d1092819cfe471',1,'metasprite_t']]]
+ ['d_913',['d',['../gb_8h.html#a0a3d95ad0ab8ad213016101d2e9c3d3e',1,'gb.h']]],
+ ['div_5freg_914',['DIV_REG',['../hardware_8h.html#afa1e18e47bf68ce68d7807fff6edf16b',1,'hardware.h']]],
+ ['dma_5freg_915',['DMA_REG',['../hardware_8h.html#ae13ce414d3fe7c98c1434918186dfc81',1,'hardware.h']]],
+ ['dtile_916',['dtile',['../structmetasprite__t.html#a6005af579bbc6ceea5a960ffbf73d83d',1,'metasprite_t']]],
+ ['dx_917',['dx',['../structmetasprite__t.html#a8dd01a7609fe347baf7995ef9eec4369',1,'metasprite_t']]],
+ ['dy_918',['dy',['../structmetasprite__t.html#acc640358a5fc8e92e4d1092819cfe471',1,'metasprite_t']]]
];
diff --git a/docs/api/search/variables_4.js b/docs/api/search/variables_4.js
index e8494dfd..b01b218f 100644
--- a/docs/api/search/variables_4.js
+++ b/docs/api/search/variables_4.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['e_917',['e',['../gb_8h.html#aeda4515a31485c9688c4601ac5ce2d79',1,'gb.h']]]
+ ['e_919',['e',['../gb_8h.html#aeda4515a31485c9688c4601ac5ce2d79',1,'gb.h']]]
];
diff --git a/docs/api/search/variables_5.js b/docs/api/search/variables_5.js
index 2c2623fe..81d67919 100644
--- a/docs/api/search/variables_5.js
+++ b/docs/api/search/variables_5.js
@@ -1,12 +1,12 @@
var searchData=
[
- ['first_5ftile_918',['first_tile',['../structsfont__handle.html#a90292548ac5f9955f1bee0ac99fe4eea',1,'sfont_handle']]],
- ['flag_919',['flag',['../structatomic__flag.html#a4fe9312fe0abb35e9f3626dc06c89bc4',1,'atomic_flag']]],
- ['fn_920',['fn',['../union____far__ptr.html#a90065c72477187e9f9c97c07c90f6af9',1,'__far_ptr']]],
- ['font_921',['font',['../structsfont__handle.html#afa826a9e7aa0dc456bd342717eea1f89',1,'sfont_handle']]],
- ['font_5fibm_922',['font_ibm',['../group__gbdk__fonts.html#gada456ea6f9f74229a178cef52471d37b',1,'font.h']]],
- ['font_5fibm_5ffixed_923',['font_ibm_fixed',['../group__gbdk__fonts.html#ga2d59fb8d9b95354fcc9b4541ce43f276',1,'font.h']]],
- ['font_5fitalic_924',['font_italic',['../group__gbdk__fonts.html#ga3c28d792899071492568375585a171cf',1,'font.h']]],
- ['font_5fmin_925',['font_min',['../group__gbdk__fonts.html#gaa7ed899bc52aac6cd5cd7ba4c2a43215',1,'font.h']]],
- ['font_5fspect_926',['font_spect',['../group__gbdk__fonts.html#ga8864dda768d160716fb95cc8c46cb5a9',1,'font.h']]]
+ ['first_5ftile_920',['first_tile',['../structsfont__handle.html#a90292548ac5f9955f1bee0ac99fe4eea',1,'sfont_handle']]],
+ ['flag_921',['flag',['../structatomic__flag.html#a4fe9312fe0abb35e9f3626dc06c89bc4',1,'atomic_flag']]],
+ ['fn_922',['fn',['../union____far__ptr.html#a90065c72477187e9f9c97c07c90f6af9',1,'__far_ptr']]],
+ ['font_923',['font',['../structsfont__handle.html#afa826a9e7aa0dc456bd342717eea1f89',1,'sfont_handle']]],
+ ['font_5fibm_924',['font_ibm',['../group__gbdk__fonts.html#gada456ea6f9f74229a178cef52471d37b',1,'font.h']]],
+ ['font_5fibm_5ffixed_925',['font_ibm_fixed',['../group__gbdk__fonts.html#ga2d59fb8d9b95354fcc9b4541ce43f276',1,'font.h']]],
+ ['font_5fitalic_926',['font_italic',['../group__gbdk__fonts.html#ga3c28d792899071492568375585a171cf',1,'font.h']]],
+ ['font_5fmin_927',['font_min',['../group__gbdk__fonts.html#gaa7ed899bc52aac6cd5cd7ba4c2a43215',1,'font.h']]],
+ ['font_5fspect_928',['font_spect',['../group__gbdk__fonts.html#ga8864dda768d160716fb95cc8c46cb5a9',1,'font.h']]]
];
diff --git a/docs/api/search/variables_6.js b/docs/api/search/variables_6.js
index 039c5594..597a8ffc 100644
--- a/docs/api/search/variables_6.js
+++ b/docs/api/search/variables_6.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['h_927',['h',['../union__fixed.html#acd5ac56a5ed6650d5797e89b278a972f',1,'_fixed::h()'],['../gb_8h.html#aba4fa6f13f80e53daeb0caa7b1ec8afb',1,'h(): gb.h']]],
- ['hdma1_5freg_928',['HDMA1_REG',['../hardware_8h.html#ab16e97796d675205a027b1b28b52956e',1,'hardware.h']]],
- ['hdma2_5freg_929',['HDMA2_REG',['../hardware_8h.html#a801400d58ab7d862742e43b49fa68c8d',1,'hardware.h']]],
- ['hdma3_5freg_930',['HDMA3_REG',['../hardware_8h.html#a57a94790cda8101a29c0d20086770f1b',1,'hardware.h']]],
- ['hdma4_5freg_931',['HDMA4_REG',['../hardware_8h.html#a3a2e883779980c1c37e780f47da4dd69',1,'hardware.h']]],
- ['hdma5_5freg_932',['HDMA5_REG',['../hardware_8h.html#a1454ad6d5d04273eae1288af86deadac',1,'hardware.h']]]
+ ['h_929',['h',['../union__fixed.html#acd5ac56a5ed6650d5797e89b278a972f',1,'_fixed::h()'],['../gb_8h.html#aba4fa6f13f80e53daeb0caa7b1ec8afb',1,'h(): gb.h']]],
+ ['hdma1_5freg_930',['HDMA1_REG',['../hardware_8h.html#ab16e97796d675205a027b1b28b52956e',1,'hardware.h']]],
+ ['hdma2_5freg_931',['HDMA2_REG',['../hardware_8h.html#a801400d58ab7d862742e43b49fa68c8d',1,'hardware.h']]],
+ ['hdma3_5freg_932',['HDMA3_REG',['../hardware_8h.html#a57a94790cda8101a29c0d20086770f1b',1,'hardware.h']]],
+ ['hdma4_5freg_933',['HDMA4_REG',['../hardware_8h.html#a3a2e883779980c1c37e780f47da4dd69',1,'hardware.h']]],
+ ['hdma5_5freg_934',['HDMA5_REG',['../hardware_8h.html#a1454ad6d5d04273eae1288af86deadac',1,'hardware.h']]]
];
diff --git a/docs/api/search/variables_7.js b/docs/api/search/variables_7.js
index 0e8f4d6b..856c9178 100644
--- a/docs/api/search/variables_7.js
+++ b/docs/api/search/variables_7.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['ie_5freg_933',['IE_REG',['../hardware_8h.html#aaef0dc6aab2f821ab406fdbc643af48e',1,'hardware.h']]],
- ['if_5freg_934',['IF_REG',['../hardware_8h.html#a509a5d0f138b40830cb447a862573be5',1,'hardware.h']]]
+ ['ie_5freg_935',['IE_REG',['../hardware_8h.html#aaef0dc6aab2f821ab406fdbc643af48e',1,'hardware.h']]],
+ ['if_5freg_936',['IF_REG',['../hardware_8h.html#a509a5d0f138b40830cb447a862573be5',1,'hardware.h']]]
];
diff --git a/docs/api/search/variables_8.js b/docs/api/search/variables_8.js
index 6a6dbe8e..1d8f1d48 100644
--- a/docs/api/search/variables_8.js
+++ b/docs/api/search/variables_8.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['joy0_935',['joy0',['../structjoypads__t.html#a5c8034ff8781b7fad9da8bb414a4ce5f',1,'joypads_t']]],
- ['joy1_936',['joy1',['../structjoypads__t.html#affc14b6b50eebfa0c8a85fc1554f3b25',1,'joypads_t']]],
- ['joy2_937',['joy2',['../structjoypads__t.html#a268cb19387182bb37739edff37aec0ea',1,'joypads_t']]],
- ['joy3_938',['joy3',['../structjoypads__t.html#a9f293bf587af55f5c11b29617ca5547b',1,'joypads_t']]],
- ['joypads_939',['joypads',['../structjoypads__t.html#af82f67ee80b1877732dc10cc23b5982f',1,'joypads_t']]]
+ ['joy0_937',['joy0',['../structjoypads__t.html#a5c8034ff8781b7fad9da8bb414a4ce5f',1,'joypads_t']]],
+ ['joy1_938',['joy1',['../structjoypads__t.html#affc14b6b50eebfa0c8a85fc1554f3b25',1,'joypads_t']]],
+ ['joy2_939',['joy2',['../structjoypads__t.html#a268cb19387182bb37739edff37aec0ea',1,'joypads_t']]],
+ ['joy3_940',['joy3',['../structjoypads__t.html#a9f293bf587af55f5c11b29617ca5547b',1,'joypads_t']]],
+ ['joypads_941',['joypads',['../structjoypads__t.html#af82f67ee80b1877732dc10cc23b5982f',1,'joypads_t']]]
];
diff --git a/docs/api/search/variables_9.js b/docs/api/search/variables_9.js
index 06529342..d203fe39 100644
--- a/docs/api/search/variables_9.js
+++ b/docs/api/search/variables_9.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['key1_5freg_940',['KEY1_REG',['../hardware_8h.html#a7279430d110acf02fa176d5f427a6491',1,'hardware.h']]]
+ ['key1_5freg_942',['KEY1_REG',['../hardware_8h.html#a7279430d110acf02fa176d5f427a6491',1,'hardware.h']]]
];
diff --git a/docs/api/search/variables_a.js b/docs/api/search/variables_a.js
index 74315f4b..04047e61 100644
--- a/docs/api/search/variables_a.js
+++ b/docs/api/search/variables_a.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['l_941',['l',['../union__fixed.html#ac44ac5f62ed7369c444b6f13d9e1d9bc',1,'_fixed::l()'],['../gb_8h.html#af79b920bcb642bba2e652874c4f7eeff',1,'l(): gb.h']]],
- ['lcdc_5freg_942',['LCDC_REG',['../hardware_8h.html#a6515fdfaa50eeb7e63faeea54f77cd6b',1,'hardware.h']]],
- ['ly_5freg_943',['LY_REG',['../hardware_8h.html#aeb643bd4eac2e6e410cae2fae677c0a7',1,'hardware.h']]],
- ['lyc_5freg_944',['LYC_REG',['../hardware_8h.html#a591084a506c33266b7d6cc3b4b8936ae',1,'hardware.h']]]
+ ['l_943',['l',['../union__fixed.html#ac44ac5f62ed7369c444b6f13d9e1d9bc',1,'_fixed::l()'],['../gb_8h.html#af79b920bcb642bba2e652874c4f7eeff',1,'l(): gb.h']]],
+ ['lcdc_5freg_944',['LCDC_REG',['../hardware_8h.html#a6515fdfaa50eeb7e63faeea54f77cd6b',1,'hardware.h']]],
+ ['ly_5freg_945',['LY_REG',['../hardware_8h.html#aeb643bd4eac2e6e410cae2fae677c0a7',1,'hardware.h']]],
+ ['lyc_5freg_946',['LYC_REG',['../hardware_8h.html#a591084a506c33266b7d6cc3b4b8936ae',1,'hardware.h']]]
];
diff --git a/docs/api/search/variables_b.js b/docs/api/search/variables_b.js
index cb96cbbb..5ddce50d 100644
--- a/docs/api/search/variables_b.js
+++ b/docs/api/search/variables_b.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['magic_945',['magic',['../structsmalloc__hunk.html#a4463bb598cac05efb9cf024d4d03b6b0',1,'smalloc_hunk']]],
- ['malloc_5ffirst_946',['malloc_first',['../malloc_8h.html#af62987d0746c3fd2078e3b76d67a485d',1,'malloc.h']]],
- ['malloc_5fheap_5fstart_947',['malloc_heap_start',['../malloc_8h.html#a1f0de2ad46e0870a290a0541c9181054',1,'malloc.h']]]
+ ['magic_947',['magic',['../structsmalloc__hunk.html#a4463bb598cac05efb9cf024d4d03b6b0',1,'smalloc_hunk']]],
+ ['malloc_5ffirst_948',['malloc_first',['../malloc_8h.html#af62987d0746c3fd2078e3b76d67a485d',1,'malloc.h']]],
+ ['malloc_5fheap_5fstart_949',['malloc_heap_start',['../malloc_8h.html#a1f0de2ad46e0870a290a0541c9181054',1,'malloc.h']]]
];
diff --git a/docs/api/search/variables_c.js b/docs/api/search/variables_c.js
index 442f6484..f0872ee3 100644
--- a/docs/api/search/variables_c.js
+++ b/docs/api/search/variables_c.js
@@ -1,26 +1,26 @@
var searchData=
[
- ['next_948',['next',['../structsmalloc__hunk.html#a23342f9c125db8da542769cf53794a1f',1,'smalloc_hunk']]],
- ['npads_949',['npads',['../structjoypads__t.html#a3e384ae17e19fdb55eea5fc9c9c7201a',1,'joypads_t']]],
- ['nr10_5freg_950',['NR10_REG',['../hardware_8h.html#ad859dc62b1df1584ade0cbb822a3e46f',1,'hardware.h']]],
- ['nr11_5freg_951',['NR11_REG',['../hardware_8h.html#ad53dc7f22b99fce195210a95f2749a72',1,'hardware.h']]],
- ['nr12_5freg_952',['NR12_REG',['../hardware_8h.html#a7accf5feabd95a2d84c72f5915fff837',1,'hardware.h']]],
- ['nr13_5freg_953',['NR13_REG',['../hardware_8h.html#a3d30d4797321b403cd713d727fa3db6c',1,'hardware.h']]],
- ['nr14_5freg_954',['NR14_REG',['../hardware_8h.html#a04c340d91842e8ee2b93922c2bcf39a4',1,'hardware.h']]],
- ['nr21_5freg_955',['NR21_REG',['../hardware_8h.html#a6dd3af1c8e3c66409aa0bc889d98e171',1,'hardware.h']]],
- ['nr22_5freg_956',['NR22_REG',['../hardware_8h.html#af1301c73bf93350045ba3a4887723ae8',1,'hardware.h']]],
- ['nr23_5freg_957',['NR23_REG',['../hardware_8h.html#a7bb32ac86e3fbf5f869410ba42620616',1,'hardware.h']]],
- ['nr24_5freg_958',['NR24_REG',['../hardware_8h.html#a6676e579a5e421adfb3d3e2d470d9ab6',1,'hardware.h']]],
- ['nr30_5freg_959',['NR30_REG',['../hardware_8h.html#a85d8e680d4d40a918b4195d2a4fada2a',1,'hardware.h']]],
- ['nr31_5freg_960',['NR31_REG',['../hardware_8h.html#aea78f857e34370d7e1177a8bafe08148',1,'hardware.h']]],
- ['nr32_5freg_961',['NR32_REG',['../hardware_8h.html#a244ee6d8f6144be9b0f94602eddb6239',1,'hardware.h']]],
- ['nr33_5freg_962',['NR33_REG',['../hardware_8h.html#a01c768b60853c8eecdefc2cedfc8d672',1,'hardware.h']]],
- ['nr34_5freg_963',['NR34_REG',['../hardware_8h.html#ab6da3e2cdbac1331bef3f6de9c808ab1',1,'hardware.h']]],
- ['nr41_5freg_964',['NR41_REG',['../hardware_8h.html#a557833cc1671aa0bd71f33766b4e0f24',1,'hardware.h']]],
- ['nr42_5freg_965',['NR42_REG',['../hardware_8h.html#aba3d9fb63552bc02ec879696b581adac',1,'hardware.h']]],
- ['nr43_5freg_966',['NR43_REG',['../hardware_8h.html#a52593a64863d51fbf5860b0d31448972',1,'hardware.h']]],
- ['nr44_5freg_967',['NR44_REG',['../hardware_8h.html#a849d2cff8df2655f86b294466bec40d6',1,'hardware.h']]],
- ['nr50_5freg_968',['NR50_REG',['../hardware_8h.html#a924fdf48f6ad020423f6309055314928',1,'hardware.h']]],
- ['nr51_5freg_969',['NR51_REG',['../hardware_8h.html#ab28f97eabd5f32d48ea27d97bd5dc64f',1,'hardware.h']]],
- ['nr52_5freg_970',['NR52_REG',['../hardware_8h.html#ac429365dce851ca57d8fe4f7c54a1caa',1,'hardware.h']]]
+ ['next_950',['next',['../structsmalloc__hunk.html#a23342f9c125db8da542769cf53794a1f',1,'smalloc_hunk']]],
+ ['npads_951',['npads',['../structjoypads__t.html#a3e384ae17e19fdb55eea5fc9c9c7201a',1,'joypads_t']]],
+ ['nr10_5freg_952',['NR10_REG',['../hardware_8h.html#ad859dc62b1df1584ade0cbb822a3e46f',1,'hardware.h']]],
+ ['nr11_5freg_953',['NR11_REG',['../hardware_8h.html#ad53dc7f22b99fce195210a95f2749a72',1,'hardware.h']]],
+ ['nr12_5freg_954',['NR12_REG',['../hardware_8h.html#a7accf5feabd95a2d84c72f5915fff837',1,'hardware.h']]],
+ ['nr13_5freg_955',['NR13_REG',['../hardware_8h.html#a3d30d4797321b403cd713d727fa3db6c',1,'hardware.h']]],
+ ['nr14_5freg_956',['NR14_REG',['../hardware_8h.html#a04c340d91842e8ee2b93922c2bcf39a4',1,'hardware.h']]],
+ ['nr21_5freg_957',['NR21_REG',['../hardware_8h.html#a6dd3af1c8e3c66409aa0bc889d98e171',1,'hardware.h']]],
+ ['nr22_5freg_958',['NR22_REG',['../hardware_8h.html#af1301c73bf93350045ba3a4887723ae8',1,'hardware.h']]],
+ ['nr23_5freg_959',['NR23_REG',['../hardware_8h.html#a7bb32ac86e3fbf5f869410ba42620616',1,'hardware.h']]],
+ ['nr24_5freg_960',['NR24_REG',['../hardware_8h.html#a6676e579a5e421adfb3d3e2d470d9ab6',1,'hardware.h']]],
+ ['nr30_5freg_961',['NR30_REG',['../hardware_8h.html#a85d8e680d4d40a918b4195d2a4fada2a',1,'hardware.h']]],
+ ['nr31_5freg_962',['NR31_REG',['../hardware_8h.html#aea78f857e34370d7e1177a8bafe08148',1,'hardware.h']]],
+ ['nr32_5freg_963',['NR32_REG',['../hardware_8h.html#a244ee6d8f6144be9b0f94602eddb6239',1,'hardware.h']]],
+ ['nr33_5freg_964',['NR33_REG',['../hardware_8h.html#a01c768b60853c8eecdefc2cedfc8d672',1,'hardware.h']]],
+ ['nr34_5freg_965',['NR34_REG',['../hardware_8h.html#ab6da3e2cdbac1331bef3f6de9c808ab1',1,'hardware.h']]],
+ ['nr41_5freg_966',['NR41_REG',['../hardware_8h.html#a557833cc1671aa0bd71f33766b4e0f24',1,'hardware.h']]],
+ ['nr42_5freg_967',['NR42_REG',['../hardware_8h.html#aba3d9fb63552bc02ec879696b581adac',1,'hardware.h']]],
+ ['nr43_5freg_968',['NR43_REG',['../hardware_8h.html#a52593a64863d51fbf5860b0d31448972',1,'hardware.h']]],
+ ['nr44_5freg_969',['NR44_REG',['../hardware_8h.html#a849d2cff8df2655f86b294466bec40d6',1,'hardware.h']]],
+ ['nr50_5freg_970',['NR50_REG',['../hardware_8h.html#a924fdf48f6ad020423f6309055314928',1,'hardware.h']]],
+ ['nr51_5freg_971',['NR51_REG',['../hardware_8h.html#ab28f97eabd5f32d48ea27d97bd5dc64f',1,'hardware.h']]],
+ ['nr52_5freg_972',['NR52_REG',['../hardware_8h.html#ac429365dce851ca57d8fe4f7c54a1caa',1,'hardware.h']]]
];
diff --git a/docs/api/search/variables_d.js b/docs/api/search/variables_d.js
index ede28038..bab3854a 100644
--- a/docs/api/search/variables_d.js
+++ b/docs/api/search/variables_d.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['obp0_5freg_971',['OBP0_REG',['../hardware_8h.html#a13f3e89f7b92258d825292e5058815c7',1,'hardware.h']]],
- ['obp1_5freg_972',['OBP1_REG',['../hardware_8h.html#a9da545164e049ef773128f869daece13',1,'hardware.h']]],
- ['ocpd_5freg_973',['OCPD_REG',['../hardware_8h.html#ae24d0e88a1e1b8367ac1f5709d3e500c',1,'hardware.h']]],
- ['ocps_5freg_974',['OCPS_REG',['../hardware_8h.html#a1686d2457eb4ad834bb75fb81c86aed8',1,'hardware.h']]],
- ['ofs_975',['ofs',['../union____far__ptr.html#a60fef2b4efac12d73fd609373631ac4e',1,'__far_ptr']]]
+ ['obp0_5freg_973',['OBP0_REG',['../hardware_8h.html#a13f3e89f7b92258d825292e5058815c7',1,'hardware.h']]],
+ ['obp1_5freg_974',['OBP1_REG',['../hardware_8h.html#a9da545164e049ef773128f869daece13',1,'hardware.h']]],
+ ['ocpd_5freg_975',['OCPD_REG',['../hardware_8h.html#ae24d0e88a1e1b8367ac1f5709d3e500c',1,'hardware.h']]],
+ ['ocps_5freg_976',['OCPS_REG',['../hardware_8h.html#a1686d2457eb4ad834bb75fb81c86aed8',1,'hardware.h']]],
+ ['ofs_977',['ofs',['../union____far__ptr.html#a60fef2b4efac12d73fd609373631ac4e',1,'__far_ptr']]]
];
diff --git a/docs/api/search/variables_e.js b/docs/api/search/variables_e.js
index 9cd73a7d..e7fe783e 100644
--- a/docs/api/search/variables_e.js
+++ b/docs/api/search/variables_e.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['p1_5freg_976',['P1_REG',['../hardware_8h.html#a04f9a36ab04334fcd21d2f50c125d5d0',1,'hardware.h']]],
- ['prop_977',['prop',['../struct_o_a_m__item__t.html#a03ef382139bd7cde2008109345e79f19',1,'OAM_item_t']]],
- ['props_978',['props',['../structmetasprite__t.html#a01b7de72e08ac14c7f28e10121dc13f6',1,'metasprite_t']]],
- ['ptr_979',['ptr',['../union____far__ptr.html#afabdeeef2b4056bc9c2d2e34b030f348',1,'__far_ptr']]]
+ ['p1_5freg_978',['P1_REG',['../hardware_8h.html#a04f9a36ab04334fcd21d2f50c125d5d0',1,'hardware.h']]],
+ ['prop_979',['prop',['../struct_o_a_m__item__t.html#a03ef382139bd7cde2008109345e79f19',1,'OAM_item_t']]],
+ ['props_980',['props',['../structmetasprite__t.html#a01b7de72e08ac14c7f28e10121dc13f6',1,'metasprite_t']]],
+ ['ptr_981',['ptr',['../union____far__ptr.html#afabdeeef2b4056bc9c2d2e34b030f348',1,'__far_ptr']]]
];
diff --git a/docs/api/search/variables_f.js b/docs/api/search/variables_f.js
index a6c72dea..a83714b3 100644
--- a/docs/api/search/variables_f.js
+++ b/docs/api/search/variables_f.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['rp_5freg_980',['RP_REG',['../hardware_8h.html#a76532f8742d9dd8cb26d2ccfd9c37bbf',1,'hardware.h']]]
+ ['rp_5freg_982',['RP_REG',['../hardware_8h.html#a76532f8742d9dd8cb26d2ccfd9c37bbf',1,'hardware.h']]]
];
diff --git a/docs/api/sgb_8h_source.html b/docs/api/sgb_8h_source.html
index 81a1abeb..be591a1b 100644
--- a/docs/api/sgb_8h_source.html
+++ b/docs/api/sgb_8h_source.html
@@ -127,7 +127,7 @@ $(document).ready(function(){initNavTree('sgb_8h_source.html',''); initResizable
UINT8 c
Definition: sgb.h:37
void sgb_transfer(unsigned char *packet) __preserves_regs(b
-void b
Definition: gb.h:453
+void b
Definition: gb.h:458
diff --git a/docs/api/stdlib_8h.html b/docs/api/stdlib_8h.html
index abc6a4cb..3179e4a6 100644
--- a/docs/api/stdlib_8h.html
+++ b/docs/api/stdlib_8h.html
@@ -620,7 +620,7 @@ Functions
-void d
Definition: gb.h:453
+void d
Definition: gb.h:458
diff --git a/docs/api/string_8h_source.html b/docs/api/string_8h_source.html
index 1c61f45c..2fde890d 100644
--- a/docs/api/string_8h_source.html
+++ b/docs/api/string_8h_source.html
@@ -130,7 +130,7 @@ $(document).ready(function(){initNavTree('string_8h_source.html',''); initResiza
char * strcpy(char *dest, const char *src) NONBANKED __preserves_regs(b
int strcmp(const char *s1, const char *s2) NONBANKED __preserves_regs(b
void * memmove(void *dest, const void *src, size_t n)
-
void b
Definition: gb.h:453
+
void b
Definition: gb.h:458
#define NONBANKED
Definition: types.h:12
int strlen(const char *s) NONBANKED __preserves_regs(b
char c
Definition: string.h:20
diff --git a/docs/api/todo.html b/docs/api/todo.html
index 784be911..c09bab20 100644
--- a/docs/api/todo.html
+++ b/docs/api/todo.html
@@ -107,7 +107,7 @@ $(document).ready(function(){initNavTree('todo.html',''); initResizable(); });
Variables in RAM
Page GBDK Toolchain
-
Document png2mtspr
+
Support indexed color (non-remapped) for source images to bypass the brightness binning and palette mapping.