22 lines
383 B
C
22 lines
383 B
C
/*
|
|
* Copyright (c) 2020 Synopsys, Inc. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @brief SoC configuration macros for ARC QEMU
|
|
*
|
|
* This header file is used to specify and describe SoC-level
|
|
* aspects for the target.
|
|
*/
|
|
|
|
#ifndef _SOC__H_
|
|
#define _SOC__H_
|
|
|
|
/* ARC Core IRQs */
|
|
#define IRQ_TIMER0 16
|
|
#define IRQ_TIMER1 17
|
|
|
|
#endif /* _SOC__H_ */
|