1.as -o power.o power.s
ld -o power power.o
./power 段错误
2.as --32 power.s-o power.o
ld -m elf_i386 power.o -o power
正确运行