Skip to content

Commit 62d6101

Browse files
committed
build: Version bump, README update
1 parent 67345a0 commit 62d6101

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

README.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,30 @@
11
# le_disasm
22

3-
## Dependencies
4-
5-
- binutils-dev package
6-
73
## Overview
84

95
libopcodes-based linear executable (MZ/LE/LX DOS EXEs) disassembler.
6+
7+
Provide it with LE/LX file (may have MZ stub real-mode header at start),
8+
and it will dump compilable assembly for the whole code and data area.
9+
1010
Outputs AT&T syntax by default (switch can be made in code).
1111

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

15+
## Usage
16+
17+
Example use with verification:
18+
19+
```
20+
./le_disasm FATAL_beta.LE > output.sx 2> stderr.txt && gcc output.sx
21+
22+
```
23+
24+
## Dependencies
25+
26+
- binutils-dev package
27+
1528
## Building
1629

1730
The tool should build correctly on any platform with a working port of `libopcodes`.

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ AC_PREREQ([2.69])
44

55
m4_define([ver_major], [1])
66
m4_define([ver_minor], [0])
7-
m4_define([ver_release], [0])
7+
m4_define([ver_release], [1])
88
# Set build number to commit count only if ".git" folder is present
99
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]))
1010

0 commit comments

Comments
 (0)