Giter Club home page Giter Club logo

l80's Introduction

l80

l80 is a linker for CP/M and MS-DOS COM executables.

It reads in object files and libraries created by a80 and produces executable CP/M-80 binaries from them.

There are not (yet) any assemblers or compilers that produce 8086 object code for l80. But when such programs appear, l80 will already be able to handle them.

You can read an in-depth explanation of how the linker and object file format work here.

Building

l80 should build with any D compiler for any supported platform. I use GDC on OpenBSD and that works well.

There is a port of l80 to C that can be compiled for CP/M, MS-DOS, and Unix. The C port has the following differences:

  • Only the first 15 characters of symbol names are unique.
  • On CP/M, the binary is named ld to avoid conflict with Microsoft L80.

You can build this C version for CP/M with:

$ make cpm

For MS-DOS with:

$ make dos

And for Unix with:

$ make c

Running

usage: l80 binary file1.obj [file2.obj ...]

All object files must end in .obj or .lib.

The .com extension will automatically be appended to binary.

Object format

l80 uses the most simple object format I could devise.

Object files are comprised of control codes and data. There are three control codes:

  • 00: The following byte is literal data.
  • 01: The following bytes are a symbol declaration.
  • 02: The following bytes are a symbol reference.

l80 uses two passes to generate the final execuatable binary. The first pass writes all object files and libraries into a single buffer and then collects all the symbol declarations and calculates the address of each symbol. The second pass writes out the executable, replacing references with the addresses calculated during the first pass.

Libraries are simply collections of object files. They can be created with the ar80 utility.

Caveats

l80 does not recognize nor remove the code of unused symbols. Doing so is planned.

The order of the object files and libraries can be very important.

Compilers should implement name mangling for symbols not destined to be globals to prevent spurious duplicate symbol errors.

Bugs

Probably lots. Test and let me know.

License

ISC License. See LICENSE for details.

Note

This l80 is in no way related to the linker of the same name produced by Microsoft, also targeting CP/M-80.

That one uses a very different file format.

l80's People

Contributors

ibara avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.