mirror of
https://github.com/HarbourMasters/Starship.git
synced 2025-01-24 22:15:01 +03:00
9 lines
196 B
C
9 lines
196 B
C
|
#ifndef _HARDWARE_H_
|
||
|
#define _HARDWARE_H_
|
||
|
|
||
|
#define HW_REG(reg, type) *(volatile type *)(uintptr_t)((reg) | 0xa0000000)
|
||
|
|
||
|
#define AI_STATUS_REG 0x0450000C
|
||
|
#define AI_STATUS_AI_FULL (1 << 31)
|
||
|
|
||
|
#endif
|