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.

15 lines
328 B

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