mirror of
https://github.com/zeldaret/af.git
synced 2026-09-27 14:01:49 -04:00
35cb5d1cfc
* boot splits * code file splits * functions from sheets * symbols from the sheet * bootstrap headers * common_data * most segments * headers for boot files * add overlays as placeholders * unname _os files * named a few files * code headers * typo * Disassemble every overlay * bootstrap symbol_addrs_overlays.txt * split yamls --------- Co-authored-by: Derek Hensley <hensley.derek58@gmail.com>
28 lines
429 B
C
28 lines
429 B
C
#ifndef FP_H
|
|
#define FP_H
|
|
|
|
#include "ultra64.h"
|
|
|
|
// void floorf();
|
|
// void floor();
|
|
// void lfloorf();
|
|
// void lfloor();
|
|
// void ceilf();
|
|
// void ceil();
|
|
// void lceilf();
|
|
// void lceil();
|
|
// void truncf();
|
|
// void trunc();
|
|
// void ltruncf();
|
|
// void ltrunc();
|
|
// void nearbyintf();
|
|
// void nearbyint();
|
|
// void lnearbyintf();
|
|
// void lnearbyint();
|
|
// void roundf();
|
|
// void round();
|
|
// void lroundf();
|
|
// void lround();
|
|
|
|
#endif
|