⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 osmm.h

📁 基于MDK的LPC1100处理器开发应用例程
💻 H
字号:
/**
 *******************************************************************************
 * @file       mm.h
 * @version    V1.13    
 * @date       2010.04.26
 * @brief      Header file	related to memory management 
 * @details    This file including some defines and function declare related to 
 *             memory management. 	
 *******************************************************************************
 * @copy
 *
 * INTERNAL FILE,DON'T PUBLIC.
 * 
 * <h2><center>&copy; COPYRIGHT 2009 CooCox </center></h2>
 *******************************************************************************
 */ 


#ifndef  _MM_H
#define  _MM_H


typedef struct Memory
{
    U8*   memAddr;
    U8*   freeBlock;
    U32   blockSize;
    U32   blockNum;			
}MM,*P_MM;


typedef struct MemoryBlock
{
    struct MemoryBlock* nextBlock;
}MemBlk,*P_MemBlk;


extern U32  MemoryIDVessel;

#endif   /* _MM_H */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -