mirror of
https://github.com/n64dev/cen64.git
synced 2025-04-02 10:31:54 -04:00
12 lines
256 B
C
12 lines
256 B
C
//
|
|
// arch/arm/fpu/cmp_ult_64.h
|
|
//
|
|
// This file is subject to the terms and conditions defined in
|
|
// 'LICENSE', which is part of this source code package.
|
|
//
|
|
|
|
static inline uint8_t fpu_cmp_ult_64(
|
|
const uint64_t *fs, const uint64_t *ft) {
|
|
return 0;
|
|
}
|
|
|