CMD file (CP/M)

From Wikipedia, the free encyclopedia

In CP/M-86, Concurrent CP/M-86, Personal CP/M-86, S5-DOS, DOS Plus, Concurrent DOS, FlexOS, Multiuser DOS, System Manager and REAL/32 as well as by SCP1700,[1] CP/K[1] and K8918-OS,[1] CMD is the filename extension used by CP/M-style executable programs. It corresponds to COM in CP/M-80 and EXE in DOS. The same extension is used by the command-line interpreter CMD.EXE in OS/2 and Windows for batch files.

Binary format[edit]

A CMD file has a 128-byte header, followed by 1–8 groups of code or data.[2] Each group can be up to 1 megabyte in size. In later versions of the format, CMD files can also contain relocation information and Resident System Extensions (RSXs).[2]

The start of the header lists the groups present in the file, and their types. Each type can be used at most once. They are:

  1. Code
  2. Data
  3. Extra
  4. Stack
  5. User 1
  6. User 2
  7. User 3
  8. User 4
  9. Shared Code (Code and Shared Code cannot be present in the same file).[3][2]

The first 256 bytes of the data group must be zero. They will be populated by CP/M-86 with the zero page (comparable to the Program Segment Prefix in DOS). If there is no data group, then the first 256 bytes of the code group will be used instead.[3]

Name conflict[edit]

Under OS/2 and Windows NT, the .CMD file extension is associated with batch scripts for their command processor CMD.EXE. Since binary code will not be executed this way, attempting to run CP/M-86 CMD files under the CMD command processor will not work, but typically only cause mild inconvenience to users. The executable loader and relocator in CP/M-86 and related operating systems can test the first byte in the file, which happens to be the type byte of the first table entry in a CP/M CMD file, to have a value of 1 to 9 before accepting it as a valid CP/M CMD file.[2] ASCII values smaller than 10 are rarely or never used in batch scripts, so that this scheme gives reasonably good protection.

See also[edit]

References[edit]

  1. ^ a b c Kurth, Rüdiger; Groß, Martin; Hunger, Henry (2019-01-03). "Betriebssystem SCP". www.robotrontechnik.de (in German). Archived from the original on 2019-04-27. Retrieved 2019-04-27.
  2. ^ a b c d Elliott, John C. "CP/M-86 executables (.CMD)". Seasip.info. Archived from the original on 2016-11-14. Retrieved 2016-08-29.
  3. ^ a b "3.4 Command (CMD) File Format". CP/M-86 Operating System - System Guide (PDF) (2nd printing, 1st ed.). Pacific Grove, California, USA: Digital Research. June 1981. pp. 20–21. Archived (PDF) from the original on 2020-02-28. Retrieved 2020-02-28. (17 pages)