菜鸟求助!!
dos吧
全部回复
仅看楼主
level 3
黑水成冰 楼主
DOS 无法生成.exe 始终出现这个错误,求解啊[惊哭],在线等!!!
2015年05月02日 12点05分 1
level 11
DMPI 错误! 提示 内存不足。。。!
2015年05月02日 14点05分 2
level 11
你得了解一下DOS的实模式和保护模式!
自己找在线翻译
DJGPP v2.x Setup with the DPMI services
DJGPP v2.x gets rid of the extender, and instead requires DPMIservices to run. DPMI, an acronym forDOS Protected-ModeInterface, is a special API that allows protected-mode programs to runon top of DOS. It defines several functions that a protected-modeprogram (calleda DPMI client) can use to perform such tasks asentering protected mode, allocating memory and segment descriptors,calling real-mode services, hooking interrupts, etc. Many modernoperating systems for Intel CPUs include the DPMI services; all versionsof MS-Windows, OS/2, and Linux DOS emulator are notable examples. Thereare also several proprietary DPMI servers for DOS, usually bundled withDOS memory managers such as QEMM and 386MAX; andFreeDOS includes a DPMI server as part of the default setup. For thosesystems which don't have a DPMI server, DJGPP v2.x comes with afree server called CWSDPMI; not surprisingly, CWSDPMI reuses alot of code from go32. The DJGPP startup code checks forDPMI services, and if they aren't available, automatically looks for andloads cwsdpmi.exe, the CWSDPMI server.
The DPMI server (a.k.a.the DPMI host) solves most of theproblems of running a protected-mode program on top of real-mode DOS. The rest of the functionality, which in v1.x was the responsibility ofgo32, is handled in v2.x by the DJGPP startup code andlow-level library functions. Let me now briefly describe these twoaspects of DJGPP operation.
2015年05月02日 14点05分 3
1