1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
|
z80dasm
=======
Introduction
------------
z80dasm is a disassembler for the Zilog Z80 microprocessor and compatibles. It
can be used to reverse engineer programs and operating systems for 1980's
microcomputers using this processor architecture (for example Sinclair ZX81,
Spectrum and many others). It was developed to produce the [Galaksija ROM
disassembly][1].
Generated assembly code can be assembled back to binary with a number of Z80
assemblers. Compatibility with [z80asm][2] was thoroughly tested. Any
disassembly by z80dasm is perfectly reversible with z80asm. Other reportedly
compatible assemblers include zasm by Günter Woigk and the original Zilog
assembler.
z80dasm has several features that can improve the readability of generated
assembly code. It can guess locations of labels in the code from jumps and
similar instructions. You can supply it with a symbol file and z80dasm will use
label names from there instead of automatically generated ones. If you define
code and data sections for a binary z80dasm can also use this information to
produce a nicer disassembly.
A lot of attention has been devoted to handling of unusual Z80 machine code.
z80dasm correctly handles undocumented instructions, illegal sequences and
partial opcodes.
[1]: https://www.tablix.org/~avian/galaksija/rom/rom1.html
[2]: http://savannah.nongnu.org/projects/z80asm/
History
-------
The core of z80dasm is based largely on [dz80 3.0][3], a Z80 disassembler
written by Jan Panteltje. Compared to dz80, z80dasm fixes multiple bugs and
adds several new features. It also has a more UNIX-like command line interface.
For a detailed list of changes compared to dz80, see NEWS file included in the
source.
[3]: http://panteltje.com/panteltje/z80/index.html
Dependencies
------------
z80dasm does not depend on any external library. Building requires GNU Make and
a C compiler.
Building the development version from the git repository also requires
GNU Autotools.
In theory z80dasm will build and run on any sufficiently UNIX-like operating
system. It is developed and tested on Debian GNU/Linux. An outdated binary
build for Microsoft Windows also exists.
Installation
------------
z80dasm is included in Debian and Ubuntu and can be installed through apt-get:
$ sudo apt-get install z80dasm
To use on Microsoft Windows, a binary provided by Adrien Destugues can be found
on the following address:
https://www.tablix.org/~avian/z80dasm/win32/
To build and install z80dasm from a source tarball, download a release from
the following address:
https://www.tablix.org/~avian/z80dasm/
Uncompress the source tree and then use the following commands to build
z80dasm:
$ ./configure
$ make
To run tests:
$ make test
And finally to install:
$ sudo make install
Usage
-----
To convert a binary file `foo.bin` (like a ROM dump, for example) to assembly
and write the output to `foo.asm`, run:
$ z80dasm -l -g 0x200 -o foo.asm foo.bin
The `-l` option enables automatic generation of labels in the assembly.
The `-g 0x200` option tells the disassembler that the binary code in `foo.bin`
is present at the address 0x200 (hex) in the CPU's memory address space.
For a full list of options and more details, see z80dasm(1) man page or run
z80dasm with the `--help` option.
Development
-----------
Latest development version can be downloaded from a git repository:
$ git clone https://www.tablix.org/~avian/git/z80dasm.git
To build:
$ ./autogen.sh
$ ./configure
$ make
License
=======
Copyright (C) 1994-2007 Jan Panteltje <panteltje@yahoo.com>
Copyright (C) 2007-2019 Tomaz Solc <tomaz.solc@tablix.org>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|