2009-12-04 20:43:10 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* arch/hc/include/arch.h
|
|
|
|
*
|
2021-03-28 15:52:32 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2009-12-04 20:43:10 +01:00
|
|
|
*
|
2021-03-28 15:52:32 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2009-12-04 20:43:10 +01:00
|
|
|
*
|
2021-03-28 15:52:32 +02:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2009-12-04 20:43:10 +01:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-04-05 23:00:04 +02:00
|
|
|
/* This file should never be included directly but, rather,
|
2009-12-04 20:43:10 +01:00
|
|
|
* only indirectly through nuttx/arch.h
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ARCH_HC_INCLUDE_ARCH_H
|
|
|
|
#define __ARCH_HC_INCLUDE_ARCH_H
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-04-08 16:04:12 +02:00
|
|
|
* Pre-processor Definitions
|
2009-12-04 20:43:10 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Inline functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2020-07-08 20:39:29 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: hc_getsp
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
static inline uint16_t hc_getsp(void)
|
|
|
|
{
|
|
|
|
uint16_t ret;
|
|
|
|
__asm__
|
|
|
|
(
|
|
|
|
"\tsts %0\n"
|
|
|
|
: "=m"(ret) :
|
|
|
|
);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2009-12-04 20:43:10 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-10-03 01:42:29 +02:00
|
|
|
* Public Data
|
2009-12-04 20:43:10 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
#define EXTERN extern "C"
|
2015-06-13 03:26:01 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
2009-12-04 20:43:10 +01:00
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* __ARCH_HC_INCLUDE_ARCH_H */
|