资 源 简 介
8051汇编代码格式化工具
8051 Assembly Code Formatter Tool By WuHuan(无幻)
This is written in C++.
Test on VC++ and MinGW.
格式化前代码:
```
homeCur equ 02h
shLfCur equ 10h
shRtCur equ 14h
start:call initlcd
call cursorof
call setbarchars
bar: call cursorup
mov a,#20h
call cursorup
mov a,#80h
call shwLCDbar
mov dptr,#2000
call ltime
call cursorup
mov a,#0ffh
end格式化后代码:
homeCur equ 02h
shLfCur equ 10h
shRtCur equ 14h
start:
call initlcd
call cursorof
call setbarchars
bar:
call cursorup
mov a, #20h
call cursorup
mov a, #80h
call shwLCDbar
mov dptr, #2000
call ltime
call cursorup
mov a, #0ffh
end```
My Blog:http://blog.csdn.net/akof1314