Add the first version of the native simulator. The simultaor is taken as is from https://github.com/BabbleSim/native_simulator/ sha: 74986abfe088a1780e604dae65f87470b4c2a0eb Signed-off-by: Alberto Escolar Piedras <alberto.escolar.piedras@nordicsemi.no>
33 lines
672 B
C
33 lines
672 B
C
/*
|
|
* Copyright (c) 2023 Nordic Semiconductor ASA
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
#ifndef NSI_COMMON_SRC_INCL_NCE_IF_H
|
|
#define NSI_COMMON_SRC_INCL_NCE_IF_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*
|
|
* Native simulator CPU start/stop emulation module interface
|
|
*
|
|
* Check docs/NCE.md for an overview.
|
|
*
|
|
* A descriptions of each function can be found in the .c file
|
|
*/
|
|
|
|
void *nce_init(void);
|
|
void nce_terminate(void *this);
|
|
void nce_boot_cpu(void *this, void (*start_routine)(void));
|
|
void nce_halt_cpu(void *this);
|
|
void nce_wake_cpu(void *this);
|
|
int nce_is_cpu_running(void *this);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* NSI_COMMON_SRC_INCL_NCE_IF_H */
|