您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

14 行
279 B

brucecc -S main.c -o main.s
echo -e "push bp
mov bp,sp
push 10[bp]
push 8[bp]
push 6[bp]
call _main
add sp, #0x6
pop bp
retf\n $(cat main.s)" > main.s
sed -i '/.globl ___mkargv/d' ./main.s
sed -i '/.globl _environ/d' ./main.s
sed -i '/^.data$/d' ./main.s
as86 -b disk.out main.s