Starship/include/hardware.h
Alejandro Javier Asenjo Nitti 5d1b103e75 add AI_LEN_REG
2023-10-18 10:42:28 -03:00

10 lines
226 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_LEN_REG 0x04500004
#define AI_STATUS_AI_FULL (1 << 31)
#endif