《操作系统》的实验代码。
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

15 righe
250 B

  1. #
  2. Try below command
  3. ```
  4. gcc -g -m32 -o lab1-ex0.exe lab1-ex0.s
  5. ```
  6. Then you will get lab1_ex0.exe
  7. Try to use below some tools to analysis lab1_ex0.exe
  8. ```
  9. objdump -S ...
  10. nm
  11. file
  12. strace -f ...
  13. ```
  14. Try to understand the contents of this .s file.