py8dis is a programmable static tracing disassembler written in Python. It can currently disassemble 6502, 65C02 and 8080 code, but could be extended without too much difficulty to other 8-bit CPUs in the future.
There's no real installation process as such, but you'll probably want to set PYTHONPATH to the directory containing the py8dis code. On Unix-like systems, something like this:
export PYTHONPATH=/home/you/src/py8dis/py8dis
will probably do the trick. On Windows (warning: I haven't tried this) you probably want something like:
set PYTHONPATH=C:\Users\User\src\py8dis\py8dis
If you see errors like:
ImportError: No module named ...
when you try to run a disassembly, PYTHONPATH probably needs adjusting. You can work around this if you just do everything in one directory, i.e. put the Python code you write to control a disassembly in the same directory as the py8dis code (commands.py, trace.py, etc).
There is a trivial "Hello, world!" program in the examples
subdirectory which will allow you to check py8dis is working. It also serves as a starting point you can copy when creating your own disassemblies.
If your PYTHONPATH is correct, you should be able to do:
cd examples
python helloworld.py
and a disassembly of helloworld.orig will be produced:
lffe3 = &ffe3
org &2000
.pydis_start
ldx #0 ; 2000: a2 00 ..
; &2002 referenced 1 time by &200b
.loop_c2002
lda l200e,x ; 2002: bd 0e 20 ..
jsr lffe3 ; 2005: 20 e3 ff ..
inx ; 2008: e8 .
cpx #&0e ; 2009: e0 0e ..
bne loop_c2002 ; 200b: d0 f5 ..
rts ; 200d: 60 `
; &200e referenced 1 time by &2002
.l200e
equs "Hello, world!" ; 200e: 48 65 6c... Hel
equb &0d ; 201b: 0d .
.pydis_end
; Label references by decreasing frequency:
; loop_c2002: 1
; l200e: 1
; lffe3: 1
; Automatically generated labels:
; l200e
; lffe3
; loop_c2002
save pydis_start, pydis_end
This output is suitable for feeding into the beebasm assembler. You can switch to produce output suitable for other assemblers:
assembler | CPUs supported | command line |
---|---|---|
acme | 6502 / 65C02 | --acme |
beebasm | 6502 / 65C02 | --beebasm (this is the default) |
xa | 6502 / 65C02 | --xa |
z88dk-z80asm | 8080 | --z88dk-8080 |
The output of the hello world example can be improved. Load helloworld.py and add:
import acorn
acorn.bbc()
This defines BBC Micro OS specific constants, which resolves &ffe3 into a proper label name. Add:
label(0x2002, "print_message_loop")
label(0x200e, "message")
to give proper names for the remaining labels.
To change the configuration, add import config
and call the following as needed:
Functions | Default | Notes |
---|---|---|
config.set_lower_case(b) |
True | Set output to be upper or lower case. |
config.set_hex_dump(b) |
True | Show or hide hex dump output. |
config.set_label_references(b) |
True | Show or hide output of label references. |
config.set_inline_comment_column(n) |
70 | Specify the character column where inline comments start. |
config.set_word_wrap_comment_column(n) |
87 | Specify the character column where word wrapping occurs. |
config.set_indent_string(s) |
" "*4 | Set the string (usually spaces) for one indent level. |
config.set_indent_loops(b) |
False | Set whether looping code is indented or not. |
config.set_blank_line_at_block_end(b) |
True | Add a blank line at the end of a block of data. |
config.set_loop_limit(i) |
32 | Set the maximum number of bytes that counts as a loop. |
config.set_show_cpu_state(b) |
False | Show or hide the output for the CPU state. |
config.set_show_autogenerated_labels(b) |
True | Show or hide a list of the autogenerated labels. |
config.set_show_char_literals(b) |
True | Show or hide character literals comments. |
config.set_show_all_labels(b) |
False | Show or hide a list of all labels used (for debugging py8dis). |
config.set_hex_dump_max_bytes(i) |
3 | Set the number of hex bytes output on a single line. |
config.set_show_cycles(b) |
False | Show the number of cycles taken by each instruction. |
config.set_subroutine_header(s) |
"*"*87 | A dividing line at the start of a subroutine comment. |
config.set_subroutine_footer(s) |
"*"*87 | A dividing line at the end of a subroutine comment. |
`config.set_include_assertions(b) | True | Include assertions at end of output to detect misuse of expr(). |
Although the whole point of py8dis is that it's programmable/user-extendable, standard Python functions are provided for common disassembly tasks. If these don't do quite what you want, you can always copy them and tweak the definitions; alternatively, feature requests or submissions of new "standard" functions to add are welcome.
πload(addr, filename, md5sum=None)
Load the contents of filename
into the disassembler's memory at address addr
. If the optional md5sum
argument is provided, disassembly will fail if the md5sum of filename
's contents doesn't match; this allows you to detect if a disassembly is being used against a different version of a program by accident.
πlabel(addr, name)
Provide a label name
for memory address addr
. The name
is used automatically when disassembling an instruction which references the address. If no label name is available when disassembling, one will be automatically created (of the form l1900
).
Labels defined with label()
are always included in the disassembly even if they're never referenced; see optional_label
if you don't want this behaviour.
πoptional_label(addr, name)
This is like label
, but the disassembly will omit the label if it isn't referenced. This is intended for use in re-usable library functions like acorn.add_standard_labels
. If an OS entry point or special memory address is used in the code it's good to have it referred to by a recognisable name, but it's not good to bloat the disassembly with labels for perhaps hundreds of special addresses that aren't used.
πget_label(addr)
Returns the label associated with address addr
; it is an error to call this function if there is no such label.
πaddr(label_name)
Returns the runtime address of the given label_name
.
πset_label_maker_hook(hook)
Sets a user supplied 'hook' function for making label names. Given an address, the hook function chooses to either return a unique label name or just return the suggested name.
Why is this useful? Example 1: Labels at addresses that just 'rts' to early out of a subroutine can be labelled uniformly as return1
, return2
etc. Example 2: When the same memory locations are reused for different purposes, we can use alternative label names for different areas of the binary.
πconstant(value, name)
Define a constant name
with value value
; think of this as being passed straight through to the output as name = value
.
To illustrate the difference between labels and constants:
- If you say
label(42, "meaning_of_life")
, anlda 42
instruction will be disassembled aslda meaning_of_life
. - If you say
constant(42, "meaning_of_life")
, anlda 42
instruction will be disassembled aslda 42
. Useexpr()
(see below) to use a constant. Example: You could useexpr()
to changelda #42
intolda #meaning_of_life
.
Simple rule of thumb: use label
only for addresses, use constant()
for everything else.
πsubstitute_constants(instruction, reg, constants_dict, define_all_constants=None)
The idea of this command is to replace load immediate numbers with constants.
For example: substitute_constants("sta sprite_number", 'a', sprite_dict)
Would search for any sta sprite_number
and convert e.g.:
lda #$15
sta sprite_number
into:
lda #SpriteId_Peanut
sta sprite_number
When instruction
is encountered, look for a load immediate instruction for register reg
somewhere beforehand, and use the constants_dict
dictionary to substitute a constant or expression (see below for an explanation of expressions) in place of the immediate value.
define_all_constants
has three possible values:
None - define no constants (the default)
False - define only the constants used
True - define all constants
An expression is a string containing labels, constants and/or other arithmetic that the assembler can interpret. When the given address is reached the string expression is output instead of a regular literal value.
py8dis doesn't directly check the expression provided evaluates to the expected value found in the binary file. However, the assembly code output contains assertions that will fail if the values do not match. i.e. Careless use of expr()
can cause py8dis to generate output which will not correctly re-assemble into its input.
πexpr(addr, s)
When disassembling the byte at addr
, use the string s
instead of the literal value of that byte. Note that addr
is the address of the byte itself, not the address of the instruction whose operand it is. addr
might not even be part of an instruction; it might be data of some kind.
Example: lda #$30
could be replaced with lda #>screen_address
.
Alternatively, if s is a dictionary, then use it to substitute a constant or expression in place of the byte at addr
.
πexpr_label(addr, s)
Associate expression s
with address addr
. Any reference to addr
in an instruction operand when disassembling will be replaced with s
.
Example: lda $1ee4,x
could be replaced with lda current_level_data+1,x
There are functions to help construct expression strings that will work across all assemblers:
πmake_op1(op, expr)
For unary operators. For example make_op1('NOT', 'input_bits')
might return '!input_bits'
or 'NOT(input_bits)'
depending on the assembler.
πmake_op2(expr1, op, expr2)
For binary operators, e.g. make_op2('address', 'DIV', 8)
All the usual operators, +, -, *, / and so on can be used. It will accept common alternatives, 'AND' or '&' for example, 'XOR' or 'EOR'. These will be translated appropriately for the current assembler.
There are convenience functions for common uses of the above:
Function | Description |
---|---|
πmake_lo(expr) |
for the low byte of a number |
πmake_hi(expr) |
for the high byte of a number |
πmake_add(expr1, expr2) |
add |
πmake_subtract(expr1, expr2) |
subtract |
πmake_multiply(expr1, expr2) |
multiply |
πmake_divide(expr1, expr2) |
divide |
πmake_or(expr1, expr2) |
bitwise or |
πmake_and(expr1, expr2) |
bitwise and |
πmake_eor(expr1, expr2) |
bitwise eor (synonym for make_xor) |
πmake_xor(expr1, expr2) |
bitwise xor |
πmake_modulo(expr1, expr2) |
remainder after division |
Calls can be strung together: make_lo(make_add('level_data', 1))
πbyte(addr, n=1, cols=None)
Mark n
bytes at address addr
as byte data. If cols
is not None, then format the output in a fixed number of columns.
πword(addr, n=1, cols=None)
Mark 2*n
bytes at address addr
as (16-bit little-endian) word data. If cols
is not None, then format the output in a fixed number of columns.
Strings have different ways of terminating, so we have many functions available to help define the extent of a string. Each function marks all the bytes as a string and returns the next available address after the string.
Function | Description |
---|---|
πstring(addr,n=None) |
The string terminates at a non-printable ASCII character, or the given length n . |
πstringterm(addr,terminator,exclude_terminator=False) |
The string terminates with a terminator value, and can either include or exclude the terminator from the string. |
πstringcr(addr,exclude_terminator=False) |
The string terminates with ASCII code 13. |
πstringz(addr,exclude_terminator=False) |
The string terminates with ASCII code zero. |
πstringhi(addr,include_terminator_fn=None) |
The string terminates with a top-bit-set character, optionally including the bottom 7 bits of the terminator as the final character. A user supplied function can determine whether the terminator is included or not, based on the final character. |
πstringhiz(addr,include_terminator_fn=None) |
As stringhi(), but also terminates at ASCII code zero. |
πstringn(addr) |
The first byte holds the length of the string, followed by the string itself. |
πentry(addr, label=None)
Specifies that there is code at the given address addr
. When go()
is called, code is automatically traced starting from each entry point walking through all possible branches and subroutines. The bytes are marked as code, and therefore get output as instructions. If specified, label
will be attached to addr
; this is just a convenience to save needing to call label()
explicitly.
πwordentry(addr, n=1)
Marks a sequence of n
words as being (16-bit little endian) addresses of subroutines. This categorises the data as being words and also adds the addresses as entry points for tracing code.
πcode_ptr(addr, addr_high=None, offset=0)
Marks two bytes of data as being the address of a subroutine. The low and high bytes do not need to be stored adjacently since their addresses can be specified separately as addr
and addr_high
. If addr_high
is None, then addr_high
is assumed to be the byte after addr
. This function can be used to handle jump tables where the low and high bytes are stored in separate tables.
An optional offset can be applied to the data to get the subroutine address. The subroutine address is added as an entry point for code tracing.
Note that code_ptr(addr)
and wordentry(addr)
are equivalent.
πrts_code_ptr(addr, addr_high=None)
Syntactic sugar for code_ptr(..., offset=1)
. This is intended for use with jump table entries which are used by pushing them onto the stack and executing RTS
.
See entry()
to find out more about tracing.
πnonentry(addr)
Marks an address addr
as 'not to be traced as code'. If the tracing of code reaches the given address then tracing stops. For example, when a conditional branch is in practice always taken at runtime, any following code is never executed. This command is only required occasionally.
πhook_subroutine(subroutine_addr, name, hook)
Tells the instruction tracing code that a call to a subroutine (using e.g. jsr subroutine_addr
) will not necessarily return control to the instruction immediately following the jsr
. The common use case is a subroutine that 'prints the following string', which consists of a call to a subroutine followed by a string definition. Execution only continues after the string definition.
When a jsr subroutine_addr
instruction is disassembled, hook(subroutine_addr, address of jsr instruction)
is called and the return value is used as the next instruction address to trace. The hook can return None
to indicate tracing shouldn't continue, or it can call entry
to indicate additional addresses to trace.
name
is used to label subroutine_addr
, exactly as if entry(subroutine_addr, name)
were called.
πstringhi_hook(target, addr)
πstringhiz_hook(target, addr)
πstringcr_hook(target, addr)
πstringz_hook(target, addr)
πstringn_hook(target, addr)
Wrappers around stringhi()
, stringhiz()
etc for use with hook_subroutine()
. These are designed for the 'print the following string' case described above.
By default numerical values are formatted as decimals for single digits or hex otherwise (known as 'uint' formatting). The following functions override this format for data in the specified block.
Function | Description |
---|---|
πchar(addr,n=1) |
Specifies quoted character (e.g. 'a') formatting for data in the given block |
πbinary(addr,n=1) |
Specifies binary (e.g. %010110111) formatting for data in the given block |
πpicture_binary(addr,n=1) |
Specifies picture binary (e.g. %#.####.#) formatting for data in the given block |
πdecimal(addr,n=1) |
Specifies decimal formatting for data in the given block |
πhexadecimal(addr,n=1) |
Specifies hex formatting for data in the given block |
πuint(addr,n=1) |
Specifies uint formatting for data in the given block |
πpadded_uint(addr,n=1) |
Specifies padded uint formatting for data in the given block |
πset_formatter(addr,n,formatter) |
The formatter function converts a data value into a string. Used by the above functions. |
πsubroutine(runtime_addr, name=None, title=None, description=None, on_entry=None, on_exit=None, hook=False, move_id=None, is_entry_point=True)
Define a subroutine. All parameters except the address are optional. These are used to create a header comment above the definition of the subroutine. They are also used to decorate calling code with explanatory text. If this is not wanted specify hook=None
. The subroutine is commented as below. The initial and final row of stars is configurable.
; ***************************************************************************************
; Print a byte as hexadecimal
;
; Prints a two digit hex number 00-FF.
;
; On Entry:
; A: number to print
;
; On Exit:
; A: corrupted
; ***************************************************************************************
The on_entry
and on_exit
optional parameters are dictionaries that specify a comment for each register as required. e.g. on_entry={ 'a': "number to print" }
. If a parameter description is in brackets, it is not used when decorating calls to this routine. This allows for { 'x': '(preserved)' }
style descriptions.
The is_entry_point
parameter adds the address as an entry point for code.
The hook
parameter is a callback to allow for the decoration of the calling code.
πno_automatic_comment(addr)
Disables the automatic commentary at the given address, to allow the user to write their own.
πcomment(addr, text, inline=False, indent=0, word_wrap=True)
Insert text
as a comment at address addr
in the disassembly on it's own separate line. If inline
is true, then add it to the end of the current line instead. If not inline, the number of indents is applied and the comment is word wrapped by default.
πformatted_comment(addr, text, inline=False, indent=0)
As comment
but the text is assumed to be pre-formatted and is therefore not word wrapped. Equivalent to comment()
with word_wrap=False
.
πblank(addr, priority=None)
Add a new blank line to the output at the given address. The priority
helps order multiple items at the same address.
πannotate(addr, s, priority=None)
Add s
as a raw string to the output at the given address. s
will need to be understood by the assembler. The priority
helps order multiple items at the same address. Rarely useful in practice since it's something of a last resort to output what you want and is likely assembler specific. Used by blank()
.
πget_u8_binary(addr)
Returns the unsigned 8-bit byte at address addr
.
πget_u16_binary(addr)
Returns the unsigned little-endian 16-bit word at address addr
.
πget_u16_be_binary(addr)
Returns the unsigned big-endian 16-bit word at address addr
.
πmove(dest, src, length)
Indicates that a block of memory is copied at runtime.
Often a block of memory is moved (relocated) after loading the binary file but before being used at runtime. For example, BBC Micro games that load at &1900 often relocate bits of code or data, or maybe the whole file down to &e00 before use.
This function specifies such a move, indicating that the runtime address is different from the address at load time for a block of memory. This allows labels within the block to be properly defined by their runtime addresses.
Any move()
calls must be done before accessing the relocated block.
As a simple rule, put any move()
commands just after load()
.
πgo()
Classifies the binary into code and data, calculates all label names and emits the final assembly.
If you have problems or suggestions for improvement, you can raise an issue or submit a pull request in github. Alternatively you may like to post in the py8dis thread on the stardot forums.
- py8dis is heavily influenced by Phill Harvey-Smith's BeebDis; I've tried to model py8dis commands on BeebDis where possible.
- TobyLobster has contributed numerous improvements to py8dis, including refactoring, code clean up, local label support and constant substitution, as well as making many helpful suggestions.