GBDK libraries documentation | ||
---|---|---|
Prev | Next |
The Gameboy is not an ideal target for C code due to a combination of being eight bit, having a small register set (pity those who have the 6502 as a target...), no indexed addressing mode and no hardware multiplication or division. The processor being eight bit is the biggest limitation as most modern C assumes that an int is at least 16 bits - see later.
This section is on the methods used to get around or avoid the limitations of the processor which boils down to ways of staying within eight bits.
Prev | Home | Next |
Using Makefiles | Size of variables |