Formating

This commit is contained in:
Lightos1
2026-02-20 07:33:51 +01:00
committed by GitHub
parent 1209337af6
commit 6625488180

View File

@@ -30,8 +30,6 @@ namespace ams::ldr::hoc {
#define PACK_U32(high, low) ((static_cast<u32>(high) << 16) | (static_cast<u32>(low) & 0xFFFF))
#define PACK_U32_NIBBLE_HIGH_BYTE_LOW(high, low) ((static_cast<u32>(high & 0xF) << 28) | (static_cast<u32>(low) & 0xFF))
/* Burst latency, not to be confused with base latency (tWRL). */
const u32 BL = 16;
@@ -176,3 +174,4 @@ namespace ams::ldr::hoc {
}