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.

14 lines
279 B

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