Intermec 6100 参考指南

下载
页码 328
SECTION 1
Getting Started
1-30    PEN*KEY
R
 6100 Computer Programmer’s Reference Guide
Simple examples:
Standard PC Function
6100 Command(s) Required to Perform Function
Pause
DELAY.EXE
Echo message"
DELAY.EXE /0 message"
Sleep 10 seconds
DELAY.EXE /1000
Choice message"
DELAY.EXE message"
IF ERRORLEVEL 3 GOTO InvalidDigit
IF ERRORLEVEL 2 GOTO PressedTwo
IF ERRORLEVEL 1 GOTO PressedOne
IF ERRORLEVEL 0 GOTO PressedZero
Echo message two" Pause DELAY.EXE message two" Press any key to continue..."
FIXEMM.EXE:  Fix for EMM386 Memory Management
This is a utility that fixes a CPU idling problem in EMM386.EXE.  It hooks the
APM CPU IDLE calls to prevent problems from using HLT" with EMM386.
ISRAMDRV.COM:  Determine if RAM Drive Exists
Returns an error level that answers the question, Do I have a RAM drive?"  If
the error level is zero, then a RAM drive exists.  This is for batch files that have
a requirement to determine whether a RAM drive has already been formatted.
Batch file example:
ISRAMDRV.COM
IF ERRORLEVEL 1 GOTO NoRamDrive
IF NOT ERRORLEVEL 1 GOTO RamDrivePresent
MMBFLAG.COM:  Set/Get ROM DOS Boot Flags
This program satisfies a couple of batch file requirements:
"
The error level returned by MMBFLAG.COM indicates the current value of
the ROM DOS boot flags.  The boot flags keep track of the default boot
drive and serve as an indicator of Master Mode Booting.
"
Supply a command parameter to change the default boot drive.
NORATA.SYS automatically determines which drive letter to supply, based
on the media type.  Drives E through H are also supported.
MMBFLAG.COM 0   (Drive A:)
MMBFLAG.COM 1   (Drive B:
MMBFLAG.COM 2   (Drive C:)
MMBFLAG.COM 3   (Drive D:)
Table 1Ć8 
MMBFLAG.COM Error Levels
Error Level Meaning
131
Master Mode Boot from drive B  (default boot drive is D)
130
Master Mode Boot from drive B  (default boot drive is C)
129
Master Mode Boot from drive B  (default boot drive is B)
128
Master Mode Boot from drive B  (default boot drive is A)
3
Drive D is the default boot drive
2
Drive C is the default boot drive
1
Drive B is the default boot drive
0
Drive A is the default boot drive
RESET.EXE:  Reset the System
Provides the means for batch files or other software to reset the system.
1. Getting Started