You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 line
253 B

5 年之前
5 年之前
  1. bcc -S main.c
  2. echo -e "push bp
  3. mov bp,sp
  4. push 8[bp]
  5. push 6[bp]
  6. call _main
  7. add sp, #0x4
  8. pop bp
  9. retf\n $(cat main.s)" > main.s
  10. sed -i '/.globl ___mkargv/d' ./main.s
  11. sed -i '/.globl _environ/d' ./main.s
  12. sed -i '/^.data$/d' ./main.s
  13. as86 -b disk.out main.s