?? asm.pl
字號:
#===================================================================
# 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/msm6050/tools/uuidgen/asm.pl#1 $ $DateTime: 2001/10/23 15:19:14 $ $Author: donb $
#
# (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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -