mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-12 01:38:37 +12:00
10 lines
168 B
C
10 lines
168 B
C
#pragma once
|
|
|
|
// Floating-point rounding mode (for both PPU and SPU)
|
|
enum FPSCR_RN
|
|
{
|
|
FPSCR_RN_NEAR = 0,
|
|
FPSCR_RN_ZERO = 1,
|
|
FPSCR_RN_PINF = 2,
|
|
FPSCR_RN_MINF = 3,
|
|
};
|