1 /* 2 * PROJECT: ReactOS Kernel 3 * LICENSE: BSD - See COPYING.ARM in the top level directory 4 * FILE: include/reactos/arm/peripherals/pl190.h 5 * PURPOSE: PL190 Registers and Constants 6 * PROGRAMMERS: ReactOS Portable Systems Group 7 */ 8 9 /* GLOBALS ********************************************************************/ 10 11 // 12 // VIC Registers 13 // 14 #define VIC_BASE (ULONG_PTR)0x10140000 15 16 #define VIC_INT_STATUS (PULONG)(VIC_BASE + 0x00) 17 #define VIC_INT_ENABLE (PULONG)(VIC_BASE + 0x10) 18 #define VIC_INT_CLEAR (PULONG)(VIC_BASE + 0x14) 19 #define VIC_SOFT_INT (PULONG)(VIC_BASE + 0x18) 20 #define VIC_SOFT_INT_CLEAR (PULONG)(VIC_BASE + 0x1C) 21