From 679dc84ba258b17bae4947350d37e9f312de9a50 Mon Sep 17 00:00:00 2001 From: Derf <24844708+DerfJagged@users.noreply.github.com> Date: Wed, 10 Dec 2025 22:10:42 -0600 Subject: [PATCH 1/2] Update SMC_Command_0x85.md --- docs/Hardware/Console/SMC_Command_0x85.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/Hardware/Console/SMC_Command_0x85.md b/docs/Hardware/Console/SMC_Command_0x85.md index 152144c..c4cb02e 100644 --- a/docs/Hardware/Console/SMC_Command_0x85.md +++ b/docs/Hardware/Console/SMC_Command_0x85.md @@ -1,12 +1,12 @@ ## Set Real Time Clock -This Command Message sets the real time clock to the specified big-endian count of miliseconds since `11-15-2001 00:00:00 UTC`, represented in hex. This code is identical to the original Xbox Real Time Clock (RTC) code. +This Command Message sets the real time clock to the specified count of milliseconds since `11-15-2001 00:00:00 UTC`, represented in hex, with the least significant byte being first. This code is identical to the original Xbox Real Time Clock (RTC) code. The maximum value that the clock can be set to is `FFFFFFFFFF`, representing `09/17/2036 19:53:47 UTC`. After this, the clock will wrap around. -| | | -| -------- | ------------------------- | -| Message: | `85 XX XX XX XX XX YY ZZ` | +| | | +| -------- | ---------------------------- | +| Message: | `85 XX XX XX XX XX XX YY ZZ` | | | Meaning | | -- | ----------------------------------- | From 633a590f7a2c2c0fd1a8e67eee3b36504ea5255f Mon Sep 17 00:00:00 2001 From: Derf <24844708+DerfJagged@users.noreply.github.com> Date: Wed, 10 Dec 2025 22:11:04 -0600 Subject: [PATCH 2/2] Update SMC_Command_0x04.md --- docs/Hardware/Console/SMC_Command_0x04.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/Hardware/Console/SMC_Command_0x04.md b/docs/Hardware/Console/SMC_Command_0x04.md index 47d22aa..0206a57 100644 --- a/docs/Hardware/Console/SMC_Command_0x04.md +++ b/docs/Hardware/Console/SMC_Command_0x04.md @@ -1,13 +1,13 @@ ## Query Real Time Clock -The reply to the SMC command 0x04 will contain big-endian count of miliseconds since `11-15-2001 00:00:00 UTC`, represented in hex. This code is identical to the original Xbox Real Time Clock (RTC) code. +The reply to the SMC command 0x04 will contain the count of milliseconds since `11-15-2001 00:00:00 UTC`, represented in hex, with the least significant byte being first. This code is identical to the original Xbox Real Time Clock (RTC) code. This value wraps around once it reaches `FFFFFFFFFF`, representing `09/17/2036 19:53:47 UTC`. -| | | -| -------- | ------------------- | -| Message: | `04` | -| Reply: | `04 XX XX XX XX XX YY ZZ` | +| | | +| -------- | ---------------------------- | +| Message: | `04` | +| Reply: | `04 XX XX XX XX XX XX YY ZZ` | | | Meaning | | -- | ----------------------------------- |