DOSBox v0.72
=====
NOTE:
=====
While we are hoping that one day DOSBox will run all programs ever
made for the PC, we are not there yet. At present, DOSBox running
on a high-end machine will roughly be the equivalent of a 486 PC.
DOSBox can be configured to run a wide range of DOS games, from
CGA/Tandy/PCjr classics up to games from the Quake era.
======
INDEX:
======
1. Quickstart
2. FAQ
3. Usage
4. Internal Programs
5. Special Keys
6. Mapper
7. Keyboard Layout
8. Serial Multiplayer feature
9. How to run resource-demanding games
10. Troubleshooting
11. The config file
12. The language file
13. Building your own version of DOSBox
14. Special thanks
15. Contact
==============
1. Quickstart:
==============
Type INTRO in DOSBox for a quick tour.
It is essential that you get familiar with the idea of mounting,
DOSBox does not automatically make any drive (or parts of it)
accessible to the emulation.
See the FAQ entry "I've got a Z instead of a C at the prompt" as
well as the description of the MOUNT command (section 4).
=======
2. FAQ:
=======
Some Frequently Asked Questions:
Q: I've got a Z instead of a C at the prompt.
Q: Do I always have to type these commands? Automation?
Q: How do I change to fullscreen?
Q: My CD-ROM doesn't work.
Q: The mouse doesn't work.
Q: There is no sound.
Q: The sound stutters or sounds stretched/weird.
Q: I can't type \ or : in DOSBox.
Q: The keyboard lags.
Q: The cursor always moves into one direction!
Q: The game/application can't find its CD-ROM.
Q: The game/application runs much too slow!
Q: Can DOSBox harm my computer?
Q: I would like to change the memory size/cpu speed/ems/soundblaster IRQ.
Q: What sound hardware does DOSBox presently emulate?
Q: DOSBox crashes on startup and I'm running arts.
Q: Great README, but I still don't get it.
Q: I've got a Z instead of a C at the prompt.
A: You have to make your directories available as drives in DOSBox by using
the "mount" command. For example, in Windows "mount C D:\GAMES" will give
you a C drive in DOSBox which points to your Windows D:\GAMES directory.
In Linux, "mount c /home/username" will give you a C drive in DOSBox
which points to /home/username in Linux.
To change to the drive mounted like above, type "C:". If everything went
fine, DOSBox will display the prompt "C:\>".
Q: Do I always have to type these commands? Automation?
A: In the DOSBox configuration file is an [autoexec] section. The commands
present there are run when DOSBox starts, so you can use this section
for the mounting.
Q: How do I change to fullscreen?
A: Press alt-enter. Alternatively: Edit the configuration file of DOSBox and
change the option fullscreen=false to fullscreen=true. If fullscreen looks
wrong in your opinion: Play with the option fullresolution in the
configuration file of DOSBox. To get back from fullscreen mode:
Press alt-enter again.
Q: My CD-ROM doesn't work.
A: To mount your CD-ROM in DOSBox you have to specify some additional options
when mounting the CD-ROM.
To enable CD-ROM support (includes MSCDEX):
- mount d f:\ -t cdrom
To enable low-level CD-ROM-support (uses ioctl if possible):
- mount d f:\ -t cdrom -usecd 0
To enable low-level SDL-support:
- mount d f:\ -t cdrom -usecd 0 -noioctl
To enable low-level aspi-support (win98 with aspi-layer installed):
- mount d f:\ -t cdrom -usecd 0 -aspi
In the commands: - d driveletter you will get in DOSBox
- f:\ location of CD-ROM on your PC.
- 0 The number of the CD-ROM drive, reported by mount -cd
See also the question: The game/application can't find its CD-ROM.
Q: The mouse doesn't work.
A: Usually, DOSBox detects when a game uses mouse control. When you click on
the screen it should get locked (confined to the DOSBox window) and work.
With certain games, the DOSBox mouse detection doesn't work. In that case
you will have to lock the mouse manually by pressing CTRL-F10.
Q: There is no sound.
A: Be sure that the sound is correctly configured in the game. This might be
done during the installation or with a setup/setsound utility that
accompanies the game. First see if an autodetection option is provided. If
there is none try selecting soundblaster or soundblaster16 with the default
settings being "address=220 irq=7 dma=1". You might also want to select
midi at address 330 as music device.
The parameters of the emulated soundcards can be changed in the DOSBox
configuration file.
If you still don't get any sound set the core to normal and use some lower
fixed cycles value (like cycles=2000). Also assure that your host operating
sound does provide sound.
Q: The sound stutters or sounds stretched/weird.
A: You're using too much CPU power to keep DOSBox running at the current speed.
You can lower the cycles, skip frames, reduce the sampling rate of
the respective sound device (see the DOSBox configuration file) or
the mixer device. You can also increase the prebuffer in the configfile.
If you are using cycles=max or =auto, then make sure that there no
background processes interfering! (especially if they access the harddisk)
Q: I can't type \ or : in DOSBox.
A: This is a known problem. It only occurs if your keyboard layout isn't US.
Some possible fixes:
1. Switch the keyboard layout of your operating system.
2. Use / instead.
3. Open dosbox.conf and change usescancodes=false to usescancodes=true.
4. Add the commands you want to execute to the "configfile".
5. Change the DOS keyboard layout (see Section 7 Keyboard Layout).
6. Use ALT-58 for : and ALT-92 for \.
7. for \ try the keys around "enter". For ":" try shift and the keys
between "enter" and "l" (US keyboard layout).
8. Try keyb.com from FreeDOS (http://projects.freedos.net/keyb/).
Look for keyb2.0 pre4 as older and newer versions are known to
have a bug in the loader routines.
Q: The keyboard lags.
A: Lower the priority setting in the DOSBox configuration file
like set "priority=normal,normal". You might also want to
try lowering the cycles.
Q: The cursor always moves into one direction!
A: See if it still happens if you disable the joystick emulation,
set joysticktype=none in the [joystick] section of your DOSBox
configuration file. Maybe also try unplugging any joystick.
If you want to use the joystick in the game, try setting timed=false
and be sure to calibrate the joystick (both in your OS as well as
in the game or the game's setup).
Q: The game/application can't find its CD-ROM.
A: Be sure to mount the CD-ROM with -t cdrom switch, this will enable the
MSCDEX interface required by DOS games to interface with CD-ROMs.
Also try adding the correct label (-label LABEL). To enable lower-level
CD-ROM support, add the following switch to mount: -usecd #, where # is
the number of your CD-ROM drive reported by mount -cd. Under Windows you
can specify -ioctl, -aspi or -noioctl. Look at the description elsewhere
in this document for their meaning.
Try creating a CD-ROM image (preferably CUE/BIN pair) and use the
DOSBox-internal IMGMOUNT tool to mount the image. This enables very
good low-level CD-ROM support on any operating system.
Q: The game/application runs much too slow!
A: Look at the section "How to run resource-demanding games" for more
information.
Q: Can DOSBox harm my computer?
A: DOSBox can not harm your computer more than any other resource demanding
program. Increasing the cycles does not overclock your real CPU.
Setting the cycles too high has a negative performance effect on the
software running inside DOSBox.
Q
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
FANUC发那科DOS版PMC编辑软件FAPT LADDER A08B-9201-J502#EN Ver 06.4 适用于FANUC 0-td 0-md 0-tc 0-mc系统,系统型号为A20B-0098-B541等fanuc 0系统,PMC类型为PMC-M,PMC-L,fanuc 0系统的pmc程序是在两个ROM芯片里,ROM芯片的型号是M27C256B NM27C256Q等27C256芯片 PMC ROM芯片在存储板上或者PMC板上,芯片编号是OE1和OE2,若存储板A16B-2201-010 0101 0103上有ROM芯片,PMC类型是PMC-L,若有PMC板型号是A16B-1211-0901 0902 0904 0906 0908且板上OF1,OF2有ROM芯片,那么PMC类型是PMC-M,若要编辑PMC梯形图,需要编程器把两片ROM芯片数据读出,合并后使用FAPT LADDER 0软件编辑,编辑后编译,会生成一个ROM文件,分解后写入两片ROM芯片,插上系统就可正常工作,使用时要注意,ROM芯片需要揭掉窗口的标签,使用紫外线擦除器擦除,或者在太阳光下晒几个小时,当然27C
资源推荐
资源详情
资源评论
收起资源包目录
FANUC发那科DOS版PMC编辑软件FAPT LADDER 0 可以编辑FANUC 0M 0T PMC-L PMC-M梯形图 (144个子文件)
%PMC-L.#OS 19KB
%PMC-M.#OS 19KB
%PMC-MMC.#OS 19KB
%PMC-M_I.#OS 19KB
MINST.BAT 1KB
LINST.BAT 1KB
LROTINST.BAT 1KB
MROTINST.BAT 1KB
FLMNE.BAT 11B
%%%FLSET.CNF 936B
iCNTL.conf 7KB
dosbox.conf 7KB
CHKLIST.CPS 918B
P_INTERF.DAT 8KB
FLIO_AT.DAT 5KB
CROSSINF.DAT 4KB
FLSCNV.DAT 1KB
AMROFTRP.DAT 1KB
MNEOP.DAT 199B
PRT_INDX.DAT 20B
SDL.dll 324KB
zmbv.dll 92KB
SDL_net.dll 13KB
PMCLAD_A1.DMP 332KB
PMCLAD_D.DMP 173KB
PMCLAD_A.DMP 173KB
用SUNWO-X3实现fanuc 0系统梯形图的合并和分解的方法.doc 278KB
dosbox.exe 3.05MB
I_PRTOUT.EXE 245KB
I_LADDER.EXE 224KB
I_COPMCR.EXE 184KB
I_RSDRV.EXE 156KB
I_REPMCR.EXE 139KB
I_PRTDSP.EXE 129KB
I_LEDIT.EXE 121KB
I_COPMCN.EXE 117KB
I_REPMCN.EXE 107KB
I_COPMCL.EXE 103KB
I_LIPMCR.EXE 102KB
I_REPMCL.EXE 101KB
SCREENM.EXE 87KB
FLMNELA.EXE 81KB
I_SYMCMT.EXE 79KB
I_LIPMCN.EXE 79KB
FLMNEIO.EXE 77KB
IMNEMENU.EXE 76KB
FLSRCLA.EXE 76KB
ISCREEN2.EXE 75KB
FLMNEME.EXE 71KB
FLMNESY.EXE 70KB
FLMNEPA.EXE 69KB
FLSRCIO.EXE 68KB
FLSRCME.EXE 67KB
FLSRCPA.EXE 66KB
FLSRCSY.EXE 64KB
MCNVT.EXE 63KB
I_MSGEDT.EXE 63KB
I_FINPUT.EXE 62KB
FLSRCAL.EXE 58KB
FLMNEAL.EXE 55KB
FLMNETA.EXE 55KB
FLSRCTA.EXE 54KB
I_MAIN.EXE 44KB
UTILITY.EXE 40KB
RESCNVT.EXE 34KB
SCNVT.EXE 34KB
FLOADAT.EXE 31KB
FLADDER.EXE 24KB
I_LINK.EXE 22KB
I_BREAK.EXE 22KB
IPRTMAIN.EXE 20KB
IOSET.EXE 18KB
HEX2SREC.EXE 17KB
PR201_15.INF 19KB
PR15_A.INF 19KB
PR10_A.INF 17KB
PR201_10.INF 17KB
PRA4_A.INF 17KB
PR201_A4.INF 17KB
ESCP15_A.INF 15KB
ESC_P_15.INF 15KB
ESC_P_10.INF 10KB
ESCP10_A.INF 10KB
LADPRT.INF 2KB
FANUC_10.INF 2KB
zmbv.inf 2KB
FLCOMMON.MSG 4KB
FLMNELA.MSG 2KB
FLMNEIO.MSG 1KB
MNEMENU.MSG 1KB
FLMNEME.MSG 953B
FLMNESY.MSG 910B
FLMNEPA.MSG 761B
FLEDTMNU.MSG 747B
FLMNETA.MSG 519B
FLSYMEDT.MSG 503B
FLMSGEDT.MSG 305B
FLSRCSEL.MSG 275B
FLSETUP.MSG 154B
FLMNEAL.MSG 69B
共 144 条
- 1
- 2
资源评论
- #完美解决问题
- #运行顺畅
- #内容详尽
- #全网独家
- #注释完整
weixin_39444655
- 粉丝: 0
- 资源: 4
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 【岗位说明】绩效考核主管岗位职责.doc
- 【岗位说明】客户关系主管岗位职责.doc
- 【岗位说明】客服经理岗位职责.doc
- 【岗位说明】内勤岗位职责.doc
- 【岗位说明】品管部职能说明.doc
- aWeb安全实践完整版推荐最新版本
- 【岗位说明】前台接待人员岗位职责说明书.doc
- 【岗位说明】前台职责说明.doc
- 【岗位说明】前台文员岗位说明书.doc
- 【岗位说明】人力资源总监职务描述.doc
- 【岗位说明】人事部岗位职责.doc
- 【岗位说明】人事管理岗位职责及要求.doc
- 【岗位说明】人事行政部岗位划分.doc
- 【岗位说明】人事行政经理岗位职责.doc
- 【岗位说明】人事行政部职责.doc
- 【岗位说明】人事行政部职能及岗位职责(非常实用).doc
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功