build.bat
来自「ARM嵌入式系统开发--软件设计与优化随书源代码。开发环境asm+c」· Batch 代码 · 共 16 行
BAT
16 行
rem set CORE=XScale
set CORE=ARM920T
armcc -c -O1 -g+ -cpu %CORE% cacheTest.c -o cacheTest.o
armasm -g -cpu %CORE% enableCache.s -o enableCache.o
armasm -g -cpu %CORE% flushcache.s -o flushcache.o
armasm -g -cpu %CORE% cleancachebyway.s -o cleancachebyway.o
armasm -g -cpu %CORE% cleancachebytest.s -o cleancachebytest.o
armasm -g -cpu %CORE% cleancachexscale.s -o cleancachexscale.o
armasm -g -cpu %CORE% cleanflushcacheregion.s -o cleanflushcacheregion.o
armasm -g -cpu %CORE% lockcachebyway.s -o lockcachebyway.o
armasm -g -cpu %CORE% lockcachebyLbit.s -o lockcachebyLbit.o
armasm -g -cpu %CORE% lockcachebyregion.s -o lockcachebyregion.o
armcc -c -O1 -g+ -cpu %CORE% main.c -o main.o
armlink -entry main.o -o cache.axf cacheTest.o enableCache.o flushcache.o cleancachebyway.o cleancachebytest.o cleancachexscale.o cleanflushcacheregion.o lockcachebyway.o lockcachebyLbit.o lockcachebyregion.o main.o
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?