⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 fixit

📁 microwindows移植到S3C44B0的源码
💻
字号:
#!/bin/ksh# By RidgeRun Inc.## The input to this script is# intended to be a *.S file which# was previously created by the doit# program. That program constructs# a *.S file which has a defined data# table containing values with leading# zeroes. To satisfy our assembler those# leading zeroes need to be stripped off# and that is the purpose of this script.echo "Removing leading zeros"sed -e "s/ 0\(.\)/ \1/g" $1 | sed -e "s/ 0\(.\)/ \1/g" > $1.newmv $1.new $1

⌨️ 快捷键说明

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