亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? pmapi.h

?? 自己修改的U-boot1.1.4For AT91RM9200DK. 請用armgcc3.3.2編譯。
?? H
?? 第 1 頁 / 共 3 頁
字號:
 * calls to malloc() and free(). If you need to keep track of exactly how * much memory is currently allocated, you need to call this function to * get the total amount of memory available and then keep track of * the available memory every time you call malloc() and free(). */void    PMAPI PM_availableMemory(ulong *physical,ulong *total);/* Return the address of a global VESA real mode transfer buffer for use * by applications. */void *  PMAPI PM_getVESABuf(uint *len,uint *rseg,uint *roff);/* Handle fatal error conditions */void    PMAPI PM_fatalError(const char *msg);/* Function to set a cleanup error handler called when PM_fatalError * is called. This allows us to the console back into a normal state * if we get a failure from deep inside a BPD file. This function is * not exported to BPD files, and is only used by code compiled for the * OS. */void    PMAPI PM_setFatalErrorCleanup(PM_fatalCleanupHandler cleanup);/* Return the OS type flag as defined in <drvlib/os/os.h> */long    PMAPI PM_getOSType(void);/* Functions to set a VBE bank via an Int 10h */void    PMAPI PM_setBankA(int bank);void    PMAPI PM_setBankAB(int bank);void    PMAPI PM_setCRTStart(int x,int y,int waitVRT);/* Return the current working directory */char *  PMAPI PM_getCurrentPath(char *path,int maxLen);/* Return paths to the VBE/AF and Nucleus directories */const char * PMAPI PM_getVBEAFPath(void);const char * PMAPI PM_getNucleusPath(void);const char * PMAPI PM_getNucleusConfigPath(void);/* Find the path to a binary portable DLL */void    PMAPI PM_setLocalBPDPath(const char *path);ibool   PMAPI PM_findBPD(const char *dllname,char *bpdpath);/* Returns the drive letter of the boot drive for DOS, OS/2 and Windows */char    PMAPI PM_getBootDrive(void);/* Return a network unique machine identifier as a string */const char * PMAPI PM_getUniqueID(void);/* Return the network machine name as a string */const char * PMAPI PM_getMachineName(void);/* Functions to install and remove the virtual linear framebuffer * emulation code. For unsupported DOS extenders and when running under * a DPMI host like Windows or OS/2, this function will return a NULL. */ibool   PMAPI VF_available(void);void *  PMAPI VF_init(ulong baseAddr,int bankSize,int codeLen,void *bankFunc);void    PMAPI VF_exit(void);/* Functions to wait for a keypress and read a key for command line * environments such as DOS, Win32 console and Unix. */int     PMAPI PM_kbhit(void);int     PMAPI PM_getch(void);/* Functions to create either a fullscreen or windowed console on the * desktop, and to allow the resolution of fullscreen consoles to be * changed on the fly without closing the console. For non-windowed * environments (such as a Linux or OS/2 fullscreen console), these * functions enable console graphics mode and restore console text mode. * * The suspend application callback is used to allow the application to * save the state of the fullscreen console mode to allow temporary * switching to another console or back to the regular GUI desktop. It * is also called to restore the fullscreen graphics state after the * fullscreen console regains the focus. * * The device parameter allows for the console to be opened on a different * display controllers (0 is always the primary controller). */PM_HWND PMAPI PM_openConsole(PM_HWND hwndUser,int device,int xRes,int yRes,int bpp,ibool fullScreen);int     PMAPI PM_getConsoleStateSize(void);void    PMAPI PM_saveConsoleState(void *stateBuf,PM_HWND hwndConsole);void    PMAPI PM_setSuspendAppCallback(PM_saveState_cb saveState);void    PMAPI PM_restoreConsoleState(const void *stateBuf,PM_HWND hwndConsole);void    PMAPI PM_closeConsole(PM_HWND hwndConsole);/* Functions to modify OS console information */void    PMAPI PM_setOSCursorLocation(int x,int y);void    PMAPI PM_setOSScreenWidth(int width,int height);/* Function to emable Intel PPro/PII write combining */int     PMAPI PM_enableWriteCombine(ulong base,ulong length,uint type);int     PMAPI PM_enumWriteCombine(PM_enumWriteCombine_t callback);/* Function to add a path separator to the end of a filename (if not present) */void    PMAPI PM_backslash(char *filename);/* Routines to lock and unlock regions of memory under a virtual memory * environment. These routines _must_ be used to lock all hardware * and mouse interrupt handlers installed, _AND_ any global data that * these handler manipulate, so that they will always be present in memory * to handle the incoming interrupts. * * Note that it is important to call the correct routine depending on * whether the area being locked is code or data, so that under 32 bit * PM we will get the selector value correct. */int     PMAPI PM_lockDataPages(void *p,uint len,PM_lockHandle *lockHandle);int     PMAPI PM_unlockDataPages(void *p,uint len,PM_lockHandle *lockHandle);int     PMAPI PM_lockCodePages(__codePtr p,uint len,PM_lockHandle *lockHandle);int     PMAPI PM_unlockCodePages(__codePtr p,uint len,PM_lockHandle *lockHandle);/* Routines to install and remove Real Time Clock interrupt handlers. The * frequency of the real time clock can be changed by calling * PM_setRealTimeClockFrequeny, and the value can be any power of 2 value * from 2Hz to 8192Hz. * * Note that you _must_ lock the memory containing the interrupt * handlers with the PM_lockPages() function otherwise you may encounter * problems in virtual memory environments. * * NOTE: User space versions of the PM library should fail these functions. */ibool   PMAPI PM_setRealTimeClockHandler(PM_intHandler ih,int frequency);void    PMAPI PM_setRealTimeClockFrequency(int frequency);void    PMAPI PM_restoreRealTimeClockHandler(void);/* Routines to install and remove hardware interrupt handlers. * * Note that you _must_ lock the memory containing the interrupt * handlers with the PM_lockPages() function otherwise you may encounter * problems in virtual memory environments. * * NOTE: User space versions of the PM library should fail these functions. */PM_IRQHandle PMAPI PM_setIRQHandler(int IRQ,PM_irqHandler ih);void    PMAPI PM_restoreIRQHandler(PM_IRQHandle irqHandle);/* Functions to program DMA using the legacy ISA DMA controller */void    PMAPI PM_DMACEnable(int channel);void    PMAPI PM_DMACDisable(int channel);void    PMAPI PM_DMACProgram(int channel,int mode,ulong bufferPhys,int count);ulong   PMAPI PM_DMACPosition(int channel);/* Function to post secondary graphics controllers using the BIOS */ibool   PMAPI PM_doBIOSPOST(ushort axVal,ulong BIOSPhysAddr,void *mappedBIOS,ulong BIOSLen);/* Function to init the AGP functions and return the AGP aperture size in MB */ulong   PMAPI PM_agpInit(void);void    PMAPI PM_agpExit(void);/* Functions to reserve and release physical AGP memory ranges */ibool   PMAPI PM_agpReservePhysical(ulong numPages,int type,void **physContext,PM_physAddr *physAddr);ibool   PMAPI PM_agpReleasePhysical(void *physContext);/* Functions to commit and free physical AGP memory ranges */ibool   PMAPI PM_agpCommitPhysical(void *physContext,ulong numPages,ulong startOffset,PM_physAddr *physAddr);ibool   PMAPI PM_agpFreePhysical(void *physContext,ulong numPages,ulong startOffset);/* Functions to do I/O port manipulation directly from C code. These * functions are portable and will work on any processor architecture * to access I/O space registers on PCI devices. */uchar   PMAPI PM_inpb(int port);ushort  PMAPI PM_inpw(int port);ulong   PMAPI PM_inpd(int port);void    PMAPI PM_outpb(int port,uchar val);void    PMAPI PM_outpw(int port,ushort val);void    PMAPI PM_outpd(int port,ulong val);/* Functions to determine the I/O port locations for COM and LPT ports. * The functions are zero based, so for COM1 or LPT1 pass in a value of 0, * for COM2 or LPT2 pass in a value of 1 etc. */int     PMAPI PM_getCOMPort(int port);int     PMAPI PM_getLPTPort(int port);/* Internal functions that need prototypes */void    PMAPI _PM_getRMvect(int intno, long *realisr);void    PMAPI _PM_setRMvect(int intno, long realisr);void    PMAPI _PM_freeMemoryMappings(void);/* Function to override the default debug log file location */void    PMAPI PM_setDebugLog(const char *logFilePath);/* Function to put the process to sleep for the specified milliseconds */void    PMAPI PM_sleep(ulong milliseconds);/* Function to block until 'milliseconds' have passed since last call */void    PMAPI PM_blockUntilTimeout(ulong milliseconds);/* Functions for directory traversal and management */void *  PMAPI PM_findFirstFile(const char *filename,PM_findData *findData);ibool   PMAPI PM_findNextFile(void *handle,PM_findData *findData);void    PMAPI PM_findClose(void *handle);void    PMAPI PM_makepath(char *p,const char *drive,const char *dir,const char *name,const char *ext);int     PMAPI PM_splitpath(const char *fn,char *drive,char *dir,char *name,char *ext);ibool   PMAPI PM_driveValid(char drive);void    PMAPI PM_getdcwd(int drive,char *dir,int len);uint    PMAPI PM_getFileAttr(const char *filename);void    PMAPI PM_setFileAttr(const char *filename,uint attrib);ibool   PMAPI PM_getFileTime(const char *filename,ibool gmTime,PM_time *time);ibool   PMAPI PM_setFileTime(const char *filename,ibool gmTime,PM_time *time);ibool   PMAPI PM_mkdir(const char *filename);ibool   PMAPI PM_rmdir(const char *filename);/* Functions to handle loading OS specific shared libraries */PM_MODULE PMAPI PM_loadLibrary(const char *szDLLName);void *  PMAPI PM_getProcAddress(PM_MODULE hModule,const char *szProcName);void    PMAPI PM_freeLibrary(PM_MODULE hModule);/* Functions and macros for 64-bit arithmetic */void    PMAPI _PM_add64(u32 a_low,s32 a_high,u32 b_low,s32 b_high,__i64 *result);void    PMAPI _PM_sub64(u32 a_low,s32 a_high,u32 b_low,s32 b_high,__i64 *result);void    PMAPI _PM_mul64(u32 a_low,s32 a_high,u32 b_low,s32 b_high,__i64 *result);void    PMAPI _PM_div64(u32 a_low,s32 a_high,u32 b_low,s32 b_high,__i64 *result);void    PMAPI _PM_shr64(u32 a_low,s32 a_high,s32 shift,__i64 *result);void    PMAPI _PM_sar64(u32 a_low,s32 a_high,s32 shift,__i64 *result);void    PMAPI _PM_shl64(u32 a_low,s32 a_high,s32 shift,__i64 *result);void    PMAPI _PM_neg64(u32 a_low,s32 a_high,__i64 *result);#ifdef __NATIVE_INT64__#define PM_add64(r,a,b)     (r) = (a) + (b)#define PM_add64_32(r,a,b)  (r) = (a) + (b)#define PM_sub64(r,a,b)     (r) = (a) - (b)#define PM_sub64_32(r,a,b)  (r) = (a) - (b)#define PM_mul64(r,a,b)     (r) = (a) * (b)#define PM_mul64_32(r,a,b)  (r) = (a) * (b)#define PM_div64(r,a,b)     (r) = (a) / (b)#define PM_div64_32(r,a,b)  (r) = (a) / (b)#define PM_shr64(r,a,s)     (r) = (a) >> (s)#define PM_sar64(r,a,s)     (r) = ((s64)(a)) >> (s)#define PM_shl64(r,a,s)     (r) = (u64)(a) << (s)#define PM_neg64(r,a,s)     (r) = -(a)#define PM_not64(r,a,s)     (r) = ~(a)#define PM_eq64(a,b)        (a) == (b)#define PM_gt64(a,b)        (a) > (b)#define PM_lt64(a,b)        (a) < (b)#define PM_geq64(a,b)       (a) >= (b)#define PM_leq64(a,b)       (a) <= (b)#define PM_64to32(a)        (u32)(a)#define PM_64tos32(a)       (s32)(a)#define PM_set64(a,b,c)     (a) = ((u64)(b) << 32) + (c)#define PM_set64_32(a,b)    (a) = (b)#else#define PM_add64(r,a,b)     _PM_add64((a).low,(a).high,(b).low,(b).high,&(r))#define PM_add64_32(r,a,b)  _PM_add64((a).low,(a).high,b,0,&(r))#define PM_sub64(r,a,b)     _PM_sub64((a).low,(a).high,(b).low,(b).high,&(r))#define PM_sub64_32(r,a,b)  _PM_sub64((a).low,(a).high,b,0,&(r))#define PM_mul64(r,a,b)     _PM_mul64((a).low,(a).high,(b).low,(b).high,&(r))#define PM_mul64_32(r,a,b)  _PM_mul64((a).low,(a).high,b,0,&(r))#define PM_div64(r,a,b)     _PM_div64((a).low,(a).high,(b).low,(b).high,&(r))#define PM_div64_32(r,a,b)  _PM_div64((a).low,(a).high,b,0,&(r))#define PM_shr64(r,a,s)     _PM_shr64((a).low,(a).high,s,&(r))#define PM_sar64(r,a,s)     _PM_sar64((a).low,(a).high,s,&(r))#define PM_shl64(r,a,s)     _PM_shl64((a).low,(a).high,s,&(r))#define PM_neg64(r,a,s)     _PM_neg64((a).low,(a).high,&(r))#define PM_not64(r,a,s)     (r).low = ~(a).low, (r).high = ~(a).high#define PM_eq64(a,b)        ((a).low == (b).low && (a).high == (b).high)#define PM_gt64(a,b)        (((a).high > (b).high) || ((a).high == (b).high && (a).low > (b).low))#define PM_lt64(a,b)        (((a).high < (b).high) || ((a).high == (b).high && (a).low < (b).low))#define PM_geq64(a,b)       (PM_eq64(a,b) || PM_gt64(a,b))#define PM_leq64(a,b)       (PM_eq64(a,b) || PM_lt64(a,b))#define PM_64to32(a)        (u32)(a.low)#define PM_64tos32(a)       ((a).high < 0) ? -(a).low : (a).low)#define PM_set64(a,b,c)     (a).high = (b), (a).low = (c)#define PM_set64_32(a,b)    (a).high = 0, (a).low = (b)#endif/* Function to enable IOPL access if required */int     PMAPI PM_setIOPL(int iopl);/* Function to flush the TLB and CPU caches */void    PMAPI PM_flushTLB(void);/* DOS specific fucntions */#ifdef  __MSDOS__uint    PMAPI PMHELP_getVersion(void);void    PMAPI PM_VxDCall(VXD_regs *regs);#endif/* Functions to save and restore the VGA hardware state */int     PMAPI PM_getVGAStateSize(void);void    PMAPI PM_saveVGAState(void *stateBuf);void    PMAPI PM_restoreVGAState(const void *stateBuf);void    PMAPI PM_vgaBlankDisplay(void);void    PMAPI PM_vgaUnblankDisplay(void);/* Functions to load and unload DirectDraw libraries. Only used on * Windows platforms. */void *  PMAPI PM_loadDirectDraw(int device);void    PMAPI PM_unloadDirectDraw(int device);PM_HWND PMAPI PM_getDirectDrawWindow(void);void    PMAPI PM_doSuspendApp(void);/* Functions to install, start, stop and remove NT services. Valid only * for Win32 apps running on Windows NT. */#ifdef __WINDOWS32__ulong   PMAPI PM_installService(const char *szDriverName,const char *szServiceName,const char *szLoadGroup,ulong dwServiceType);ulong   PMAPI PM_startService(const char *szServiceName);ulong   PMAPI PM_stopService(const char *szServiceName);ulong   PMAPI PM_removeService(const char *szServiceName);#endif/* Routines to generate native interrupts (ie: protected mode interrupts * for protected mode apps) using an interface the same as that use by * int86() and int86x() in realmode. These routines are required because * many 32 bit compilers use different register structures and different * functions causing major portability headaches. Thus we provide our * own and solve it all in one fell swoop, and we also get a routine to * put stuff into 32 bit registers from real mode ;-) */void    PMAPI PM_segread(PMSREGS *sregs);int     PMAPI PM_int386(int intno, PMREGS *in, PMREGS *out);int     PMAPI PM_int386x(int intno, PMREGS *in, PMREGS *out,PMSREGS *sregs);/* Call the X86 emulator or the real BIOS in our test harness */#if defined(TEST_HARNESS) && !defined(PMLIB)#define PM_mapRealPointer(r_seg,r_off)      _PM_imports.PM_mapRealPointer(r_seg,r_off)#define PM_getVESABuf(len,rseg,roff)        _PM_imports.PM_getVESABuf(len,rseg,roff)#define PM_callRealMode(seg,off,regs,sregs) _PM_imports.PM_callRealMode(seg,off,regs,sregs)#define PM_int86(intno,in,out)              _PM_imports.PM_int86(intno,in,out)#define PM_int86x(intno,in,out,sregs)       _PM_imports.PM_int86x(intno,in,out,sregs)#endif#ifdef  __cplusplus}                       /* End of "C" linkage for C++   */#endif/* Include OS extensions for interrupt handling */#if defined(__REALDOS__) || defined(__SMX32__)#include "pmint.h"#endif#endif /* __PMAPI_H */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人激情校园春色| 亚洲免费av观看| 国产精品亚洲人在线观看| 精品国产免费一区二区三区四区| 久久99精品久久久久婷婷| 精品国产伦一区二区三区观看方式| 美女视频一区二区三区| 久久综合色8888| 成人av在线影院| 亚洲伦理在线精品| 欧美精品亚洲一区二区在线播放| 日本欧美大码aⅴ在线播放| 欧美成人精品1314www| 国产成人免费在线观看不卡| 亚洲欧洲日韩在线| 欧美人牲a欧美精品| 国产综合久久久久久久久久久久| 国产三级精品三级| 欧美日韩性生活| 国产呦精品一区二区三区网站| 国产精品理论在线观看| 欧美日韩小视频| 国产成人综合视频| 一区二区三区在线观看国产| 日韩午夜av电影| 不卡av在线网| 日本中文一区二区三区| 欧美国产一区二区| 欧美日韩免费视频| 国产成人高清在线| 日韩专区欧美专区| 亚洲丝袜自拍清纯另类| 欧美大片日本大片免费观看| 99综合影院在线| 六月丁香婷婷久久| 亚洲精品视频自拍| 久久精品免费在线观看| 欧美精品乱码久久久久久按摩| 国产成人午夜精品5599 | 91在线国产福利| 青青草97国产精品免费观看无弹窗版| 国产日韩视频一区二区三区| 欧美日本一区二区三区四区| 波多野结衣精品在线| 麻豆成人av在线| 一区二区三区.www| 国产精品色哟哟| 欧美va日韩va| 3d成人动漫网站| 色婷婷久久久亚洲一区二区三区| 国产在线一区二区综合免费视频| 亚洲va中文字幕| 亚洲欧美视频在线观看视频| 国产亚洲精品资源在线26u| 4hu四虎永久在线影院成人| 一本久久综合亚洲鲁鲁五月天| 国产精品99久久久久久久vr | 欧美精品乱人伦久久久久久| 91网上在线视频| 国产一区二区三区免费| 免费在线看成人av| 午夜欧美大尺度福利影院在线看| 亚洲视频一区在线| 中文字幕日韩一区二区| 国产欧美精品一区aⅴ影院| 欧美不卡在线视频| 欧美xfplay| 精品人在线二区三区| 3atv一区二区三区| 欧美日韩国产免费| 欧美日韩黄色影视| 欧美日韩亚洲综合一区| 欧美日免费三级在线| 色婷婷精品大在线视频 | 99久久婷婷国产| 丁香亚洲综合激情啪啪综合| 国产麻豆成人精品| 国产精品1024| 粉嫩一区二区三区在线看| 国产99久久久精品| 成人av在线播放网址| 成人h动漫精品一区二区| 成人黄色在线网站| 北条麻妃一区二区三区| 成人精品鲁一区一区二区| 成人在线视频一区| 99re这里只有精品首页| 色哟哟精品一区| 欧美色图在线观看| 欧美理论在线播放| 欧美成人官网二区| 久久久久久综合| 国产精品狼人久久影院观看方式| 中文字幕一区三区| 亚洲一区成人在线| 麻豆视频一区二区| 成人自拍视频在线| 在线观看国产精品网站| 91精品久久久久久蜜臀| 亚洲精品一区二区三区蜜桃下载 | 免费欧美在线视频| 激情深爱一区二区| av一区二区三区| 欧美日韩黄色一区二区| 精品国产制服丝袜高跟| 中文字幕中文乱码欧美一区二区| 亚洲一区二区不卡免费| 久久66热re国产| 91日韩精品一区| 日韩一卡二卡三卡国产欧美| 日本一区二区高清| 午夜久久电影网| 国产河南妇女毛片精品久久久| av电影在线观看一区| 制服.丝袜.亚洲.另类.中文| 久久久久国产精品麻豆ai换脸| 亚洲视频在线一区观看| 狂野欧美性猛交blacked| 99免费精品在线| 91精品久久久久久蜜臀| 国产精品电影一区二区| 日本欧美韩国一区三区| 成人av网址在线| 日韩午夜中文字幕| 亚洲精品日日夜夜| 国产一区二区看久久| 精品视频一区二区不卡| 久久久精品欧美丰满| 亚洲h在线观看| 91丨九色丨蝌蚪丨老版| 日韩精品一区二区三区在线 | 亚洲女同一区二区| 天天av天天翘天天综合网色鬼国产 | 精品亚洲免费视频| 色先锋资源久久综合| 久久网这里都是精品| 午夜精品久久久久| 色天使色偷偷av一区二区| 国产目拍亚洲精品99久久精品| 婷婷六月综合亚洲| 色综合天天综合狠狠| 久久久国产午夜精品| 全国精品久久少妇| 色视频一区二区| 国产精品久久久久一区| 国产在线视视频有精品| 91精品久久久久久久91蜜桃| 亚洲精品乱码久久久久久日本蜜臀| 国产精品一区二区x88av| 日韩亚洲欧美高清| 亚洲高清在线精品| 色av一区二区| 最新国产成人在线观看| 国产一本一道久久香蕉| 日韩欧美国产午夜精品| 全部av―极品视觉盛宴亚洲| 欧美久久久久久蜜桃| 亚洲精品视频在线观看网站| 91在线免费播放| 亚洲欧美色图小说| 91美女视频网站| 亚洲欧美经典视频| 91在线国产观看| 亚洲乱码国产乱码精品精可以看 | 另类人妖一区二区av| 欧美精品乱人伦久久久久久| 亚洲成人黄色小说| 欧美日韩综合一区| 亚洲成av人片一区二区三区| 精品视频在线视频| 调教+趴+乳夹+国产+精品| 欧美一区二区三区四区久久| 免费的成人av| 精品国产乱码久久久久久久 | 中文字幕av一区二区三区| 国产丶欧美丶日本不卡视频| 久久久电影一区二区三区| 国产成人av电影在线| 国产精品久久久久久久裸模| 91免费观看在线| 亚洲乱码精品一二三四区日韩在线| 91香蕉视频黄| 亚洲一区二区五区| 制服丝袜日韩国产| 国产剧情一区二区| 国产精品网曝门| 91蜜桃传媒精品久久久一区二区| 亚洲一二三四区| 欧美一级欧美三级| 国产白丝精品91爽爽久久| 亚洲欧美日韩在线不卡| 欧美精品精品一区| 国产一区二区三区四区五区美女| 国产精品久久午夜夜伦鲁鲁| 欧美日韩在线播放一区| 日韩av网站在线观看| 国产欧美日韩麻豆91| 欧美系列一区二区| 国产一区欧美一区| 亚洲主播在线播放|