mirror of
https://github.com/italicsjenga/gba.git
synced 2025-01-12 20:01:30 +11:00
important todo
This commit is contained in:
parent
1d3ddafd50
commit
cf18b0a2cb
|
@ -18,7 +18,12 @@ it to call the [GBA BIOS
|
||||||
Functions](https://problemkaputt.de/gbatek.htm#biosfunctions).
|
Functions](https://problemkaputt.de/gbatek.htm#biosfunctions).
|
||||||
|
|
||||||
Note that BIOS calls have _more overhead than normal function calls_, so don't
|
Note that BIOS calls have _more overhead than normal function calls_, so don't
|
||||||
go using them all over the place if you don't have to.
|
go using them all over the place if you don't have to. They're also usually
|
||||||
|
written more to be compact in terms of code than for raw speed, so you actually
|
||||||
|
can out speed them in some cases. Between the increased overhead and not being
|
||||||
|
as speed optimized, you can sometimes do a faster job without calling the BIOS
|
||||||
|
at all. (TODO: investigate more about what parts of the BIOS we could
|
||||||
|
potentially offer faster alternatives for.)
|
||||||
|
|
||||||
I'd like to take a moment to thank [Marc Brinkmann](https://github.com/mbr)
|
I'd like to take a moment to thank [Marc Brinkmann](https://github.com/mbr)
|
||||||
(with contributions from [Oliver Schneider](https://github.com/oli-obk) and
|
(with contributions from [Oliver Schneider](https://github.com/oli-obk) and
|
||||||
|
|
Loading…
Reference in a new issue