Changeset 526 in xtideuniversalbios for trunk/Tools
- Timestamp:
- Mar 15, 2013, 1:38:58 AM (12 years ago)
- google:author:
- krille_n_@hotmail.com
- Location:
- trunk/Tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/StringsCompress.pl
r492 r526 10 10 # for a description of the compression scheme. 11 11 # 12 # XTIDE Universal BIOS and Associated Tools 13 # Copyright (C) 2009-2010 by Tomi Tilli, 2011-201 2by XTIDE Universal BIOS Team.12 # XTIDE Universal BIOS and Associated Tools 13 # Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team. 14 14 # 15 15 # This program is free software; you can redistribute it and/or modify … … 17 17 # the Free Software Foundation; either version 2 of the License, or 18 18 # (at your option) any later version. 19 # 19 # 20 20 # This program is distributed in the hope that it will be useful, 21 21 # but WITHOUT ANY WARRANTY; without even the implied warranty of 22 22 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 23 # GNU General Public License for more details. 23 # GNU General Public License for more details. 24 24 # Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 25 25 # … … 206 206 print "StringsCompressed_FormatsBegin equ ".$format_begin."\n\n"; 207 207 208 print "StringsCompressed_TranslatesAndFormats: 208 print "StringsCompressed_TranslatesAndFormats:\n"; 209 209 210 210 foreach $f (keys(%translate)) -
trunk/Tools/checksum.pl
r376 r526 14 14 15 15 # 16 # XTIDE Universal BIOS and Associated Tools 17 # Copyright (C) 2009-2010 by Tomi Tilli, 2011-201 2by XTIDE Universal BIOS Team.16 # XTIDE Universal BIOS and Associated Tools 17 # Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team. 18 18 # 19 19 # This program is free software; you can redistribute it and/or modify … … 21 21 # the Free Software Foundation; either version 2 of the License, or 22 22 # (at your option) any later version. 23 # 23 # 24 24 # This program is distributed in the hope that it will be useful, 25 25 # but WITHOUT ANY WARRANTY; without even the implied warranty of 26 26 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 27 # GNU General Public License for more details. 27 # GNU General Public License for more details. 28 28 # Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 29 29 # … … 56 56 } 57 57 58 $fixzero = chr(0); 58 $fixzero = chr(0); 59 59 while( $bytes < $desiredSize - 1 ) 60 60 { -
trunk/Tools/unused.pl
r489 r526 3 3 # 4 4 # Usage: unused.pl listing unused.asm 5 # 5 # 6 6 # where: listing is the normal listing from assembly 7 7 # unused.asm is assembled with the -E nasm flag … … 13 13 # 14 14 # 15 # XTIDE Universal BIOS and Associated Tools 16 # Copyright (C) 2009-2010 by Tomi Tilli, 2011-201 2by XTIDE Universal BIOS Team.15 # XTIDE Universal BIOS and Associated Tools 16 # Copyright (C) 2009-2010 by Tomi Tilli, 2011-2013 by XTIDE Universal BIOS Team. 17 17 # 18 18 # This program is free software; you can redistribute it and/or modify … … 20 20 # the Free Software Foundation; either version 2 of the License, or 21 21 # (at your option) any later version. 22 # 22 # 23 23 # This program is distributed in the hope that it will be useful, 24 24 # but WITHOUT ANY WARRANTY; without even the implied warranty of 25 25 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 26 # GNU General Public License for more details. 26 # GNU General Public License for more details. 27 27 # Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html 28 28 # … … 51 51 while(<UNUSED>) 52 52 { 53 if( /^([a-z0-9_]+\:)?\s+db\s+(.*)$/i || 54 /^([a-z0-9_]+\:)?\s+dw\s+(.*)$/i || 53 if( /^([a-z0-9_]+\:)?\s+db\s+(.*)$/i || 54 /^([a-z0-9_]+\:)?\s+dw\s+(.*)$/i || 55 55 /^([a-z0-9_]+\:)?\s+mov\s+(.*)$/i || 56 /^([a-z0-9_]+\:)?\s+call\s+(.*)$/i || 57 /^([a-z0-9_]+\:)?\s+push\s+(.*)$/i || 56 /^([a-z0-9_]+\:)?\s+call\s+(.*)$/i || 57 /^([a-z0-9_]+\:)?\s+push\s+(.*)$/i || 58 58 /^([a-z0-9_]+\:)?\s+j[a-z]?[a-z]?[a-z]?[a-z]?[a-z]?\s+(.*)$/i || 59 59 /^([a-z0-9_]+)?\s+equ\s+(.*)$/i )
Note:
See TracChangeset
for help on using the changeset viewer.