《操作系统》的实验代码。
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.

19 lines
610 B

  1. #README
  2. analysis lab0_ex5
  3. ```
  4. echo "compile and analysis lab0_ex5"
  5. echo "====================================="
  6. gcc -m32 -g -o lab0_ex5.exe lab0_ex5.c
  7. echo "====================================="
  8. echo "using objdump to decompile lab0_ex5"
  9. echo "====================================="
  10. objdump -S lab0_ex5.exe
  11. echo "====================================="
  12. echo "using readelf to analyze lab0_ex5"
  13. echo "====================================="
  14. readelf -a lab0_ex5.exe
  15. echo "====================================="
  16. echo "using nm to analyze lab0_ex5"
  17. echo "====================================="
  18. nm lab0_ex5.exe
  19. ```