Skip to content

Commit

Permalink
Version bump and add credits
Browse files Browse the repository at this point in the history
  • Loading branch information
mattcurrie committed Apr 9, 2020
1 parent 03a260c commit eeade83
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions mgbdis.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

"""Disassemble a Game Boy ROM into RGBDS compatible assembly code"""

__author__ = 'Matt Currie'
__version__ = '1.3'
__author__ = 'Matt Currie and contributors'
__credits__ = ['mattcurrie', 'kemenaran', 'bnzis']
__version__ = '1.4'
__copyright__ = 'Copyright 2018 by Matt Currie'
__license__ = 'MIT'

Expand Down Expand Up @@ -942,7 +943,8 @@ def write_bank_asm(self, bank):

def write_header(self, f):
f.write('; Disassembly of "{}"\n'.format(os.path.basename(self.rom_path)))
f.write('; This file was created with {}\n'.format(app_name))
f.write('; This file was created with:\n')
f.write('; {}\n'.format(app_name))
f.write('; https://github.com/mattcurrie/mgbdis\n\n')


Expand Down

0 comments on commit eeade83

Please sign in to comment.