Changeset 526 in xtideuniversalbios for trunk/Tools/unused.pl


Ignore:
Timestamp:
Mar 15, 2013, 1:38:58 AM (11 years ago)
Author:
krille_n_@…
google:author:
krille_n_@hotmail.com
Message:

Changes:

  • Update of the copyright notices to include the year 2013.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/unused.pl

    r489 r526  
    33#
    44# Usage: unused.pl listing unused.asm
    5 #       
     5#
    66# where: listing is the normal listing from assembly
    77#        unused.asm is assembled with the -E nasm flag
     
    1313#
    1414#
    15 # XTIDE Universal BIOS and Associated Tools 
    16 # Copyright (C) 2009-2010 by Tomi Tilli, 2011-2012 by 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.
    1717#
    1818# This program is free software; you can redistribute it and/or modify
     
    2020# the Free Software Foundation; either version 2 of the License, or
    2121# (at your option) any later version.
    22 # 
     22#
    2323# This program is distributed in the hope that it will be useful,
    2424# but WITHOUT ANY WARRANTY; without even the implied warranty of
    2525# 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.
    2727# Visit http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
    2828#
     
    5151while(<UNUSED>)
    5252{
    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 ||
    5555        /^([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 ||
    5858        /^([a-z0-9_]+\:)?\s+j[a-z]?[a-z]?[a-z]?[a-z]?[a-z]?\s+(.*)$/i ||
    5959        /^([a-z0-9_]+)?\s+equ\s+(.*)$/i )
Note: See TracChangeset for help on using the changeset viewer.