LibXenon
Bare-metal Xbox 360 homebrew library
Loading...
Searching...
No Matches
xenon_post.c
Go to the documentation of this file.
1#include <xetypes.h>
2
3#define POSTADDR 0x20061010
4
5void xenon_post(char post_code) {
6 // shift code 56 bits left
7 uint64_t code = ((uint64_t)post_code) << 56;
8 // write code to post address
9 *(volatile uint64_t*)POSTADDR = code;
10}
uint8_t code
Definition: ata.h:0
u64 uint64_t
Definition: libfdt_env.h:12
#define POSTADDR
Definition: xenon_post.c:3
void xenon_post(char post_code)
Definition: xenon_post.c:5