Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 869 Bytes

README.markdown

File metadata and controls

10 lines (8 loc) · 869 Bytes

C Compiler Project

Quick Start Guide

  1. source.exe is the program generated from the object file that is in the repository (source.obj).
  2. Open the MS-DOS command prompt. Type "compiler.exe file.src" where file.src is the name of the source code file. (See source.src for an example of valid syntax.) An object file (file.obj) will be outputted after running compiler.exe. An error report (file.rpt) and cross-reference list (file.lst) will also be produced by the compiler.
  3. Use Link.exe that comes with the MASM 6.15 assembler to create the executable file from the object file. Type "link file,,,util.lib" to link file.obj with the util.lib library file.
  4. Finally, type "file" to run the compiled program.

Links

Developer's website: BJ Dela Cruz