Skip to content

Commit

Permalink
build: Version bump, README update
Browse files Browse the repository at this point in the history
  • Loading branch information
mefistotelis committed Jan 8, 2024
1 parent 67345a0 commit 62d6101
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
21 changes: 17 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,30 @@
# le_disasm

## Dependencies

- binutils-dev package

## Overview

libopcodes-based linear executable (MZ/LE/LX DOS EXEs) disassembler.

Provide it with LE/LX file (may have MZ stub real-mode header at start),
and it will dump compilable assembly for the whole code and data area.

Outputs AT&T syntax by default (switch can be made in code).

This is a continuation of work on
[Syndicate Wars Disassembler 1.0 by Vexillium group](http://swars.vexillium.org/files/swdisasm-1.0.tar.bz2).

## Usage

Example use with verification:

```
./le_disasm FATAL_beta.LE > output.sx 2> stderr.txt && gcc output.sx
```

## Dependencies

- binutils-dev package

## Building

The tool should build correctly on any platform with a working port of `libopcodes`.
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ AC_PREREQ([2.69])

m4_define([ver_major], [1])
m4_define([ver_minor], [0])
m4_define([ver_release], [0])
m4_define([ver_release], [1])
# Set build number to commit count only if ".git" folder is present
m4_define([ver_build], m4_if(m4_esyscmd_s([ls -1 -d ".git" 2>&1]),.git,[m4_esyscmd_s([git rev-list --count HEAD])],[0]))

Expand Down

0 comments on commit 62d6101

Please sign in to comment.