#ifndef _LINUX_REGION_MEM_H
#define _LINUX_REGION_MEM_H

#define REGION_MEM_READ (1)
#define REGION_MEM_WRITE (2)
#define REGION_SIZE (1024*1024)

extern int sys_region_mem(unsigned int a, char* b, unsigned int c, unsigned int d);

#endif
