Nico01 / Tracer_88

8088 Assembler and Tracer Toolkit for Linux

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tracer_88

###USING THE 8088 ASSEMBLER AND TRACER TOOLKIT

Assembling your assembly language programs

Assembler source files have an extension ".s". To create a binary for a source named "project.s", enter the command:

    as88 project

This performs the assembly, and generates three files:

  • project.88 — The 8088 binary
  • project.# — A file which links the file positions in the source file to the positions in the binary file
  • project.$ — A copy of the source file which contains included secondary sources and satisfies preferred conventions for the assembly process

Tracing

Once you have assembled project.s, you can trace it with:

    t88 -t project

The tracer subwindow for the source file displays the "project.$" version. Instead of using t88 -t, you can use t88 -r. This just runs the program without displaying the registers and source code as it is running.

About

8088 Assembler and Tracer Toolkit for Linux


Languages

Language:C 75.5%Language:Assembly 18.1%Language:Bison 5.8%Language:Makefile 0.4%Language:C++ 0.1%Language:Perl 6 0.0%Language:Shell 0.0%