mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-15 18:59:55 +08:00
13 lines
243 B
C
13 lines
243 B
C
#ifndef __CP15_H__
|
|
#define __CP15_H__
|
|
|
|
unsigned long rt_cpu_get_smp_id(void);
|
|
|
|
void rt_cpu_mmu_disable(void);
|
|
void rt_cpu_mmu_enable(void);
|
|
void rt_cpu_tlb_set(volatile unsigned long*);
|
|
|
|
void rt_cpu_vector_set_base(unsigned int addr);
|
|
|
|
#endif
|