23 lines
296 B
C
23 lines
296 B
C
|
/*
|
||
|
* Copyright (c) 2012-2017 Andes Technology Corporation
|
||
|
* All rights reserved.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
#ifndef __PLATFORM_H__
|
||
|
#define __PLATFORM_H__
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
#include "rv_interrupt.h"
|
||
|
|
||
|
#define CFG_XIP (1)
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* __PLATFORM_H__ */
|