X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=disassembler%2Fb43-ivaldump;h=ce06cbb0f0930226e56fbbd005fa17f71de0e2c6;hb=41859f7435757173b3933bf1fd53f22fa673299b;hp=28b6e37de11272fd5ab4131f547cb5da5794d5d5;hpb=bc1c60ad963c92b520949bfa72323ea99ba5fd5b;p=b43-tools.git diff --git a/disassembler/b43-ivaldump b/disassembler/b43-ivaldump index 28b6e37..ce06cbb 100755 --- a/disassembler/b43-ivaldump +++ b/disassembler/b43-ivaldump @@ -2,7 +2,7 @@ """ # A small script to dump the contents of a b43 initvals file # -# Copyright (C) 2008 Michael Buesch +# Copyright (C) 2008 Michael Buesch # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 @@ -21,7 +21,7 @@ def usage(): print "b43 initvals file dumper" print "Prints a .initvals assembly section to stdout." print "" - print "Copyright (C) 2008-2010 Michael Buesch " + print "Copyright (C) 2008-2010 Michael Buesch " print "Licensed under the GNU/GPL version 2" print "" print "Usage: b43-ivaldump FILE" @@ -75,4 +75,4 @@ while idx < len(ivals): data = ord(ivals[idx + 2]) << 8 data |= ord(ivals[idx + 3]) << 0 idx += 4 - print "\tmmio16\t0x%08X, 0x%04X" % (data, offset) + print "\tmmio16\t0x%04X, 0x%04X" % (data, offset)