esp32: emulate byte access for module text

Tested on ESP-EYE.
This commit is contained in:
YAMAMOTO Takashi
2020-03-16 15:07:36 +09:00
committed by patacongo
parent df44909b30
commit f4e7845b85
7 changed files with 459 additions and 8 deletions
+51
View File
@@ -0,0 +1,51 @@
/****************************************************************************
* arch/xtensa/include/loadstore.h
*
* 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
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* 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.
*
****************************************************************************/
#ifndef __ARCH_XTENSA_INCLUDE_LOADSTORE_H
#define __ARCH_XTENSA_INCLUDE_LOADSTORE_H
/****************************************************************************
* Included Files
****************************************************************************/
/****************************************************************************
* Pre-processor Definitions
****************************************************************************/
/****************************************************************************
* Public Types
****************************************************************************/
/****************************************************************************
* Inline functions
****************************************************************************/
/****************************************************************************
* Public Data
****************************************************************************/
/****************************************************************************
* Public Function Prototypes
****************************************************************************/
uint32_t l32i(const uint32_t *p);
void s32i(uint32_t *p, uint32_t value);
#endif /* __ARCH_XTENSA_INCLUDE_LOADSTORE_H */