asm.pl

来自「QUALCOMM JNAND DRIVER」· PL 代码 · 共 20 行

PL
20
字号
#===================================================================
# FILE: asm.pl
#
# SERVICES: Strips #line directives from preprocessed files
#           Filters out blank lines.
#
# $PVCSPath:  L:/src/asw/MSM6050/vcs/asm.plv   1.0   23 Oct 2001 15:28:06   donb  $
# $Header: //depot/asic/MSMSHARED/tools/jnand/asm.pl#1 $ $DateTime: 2003/02/06 15:47:46 $ $Author: pingguan $
#
# (c) COPYRIGHT 1998 Qualcomm Incorporated.  All Rights Reserved.
# (c) COPYRIGHT 1999 Qualcomm Incorporated.  All Rights Reserved.
#                   QUALCOMM Proprietary/GTDR
#===================================================================
while(<>) {
   s/^\s*(#line )+(.)+//; 
   if (!/^\s*$/) {
      print $_ ;
   }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?