Changes between Version 25 and Version 26 of AS6-TME-B1


Ignore:
Timestamp:
Feb 9, 2022, 12:45:12 PM (3 years ago)
Author:
franck
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • AS6-TME-B1

    v25 v26  
    12101210obj/harch.o : harch.c klibc.h harch.h hcpu.h
    12111211}}}
     1212{{{#!protected ------------------------------------------------------------------------------------
     1213'''''''''''''''
    12121214  [[Image(htdocs:img/Makefile.png, width=500, nolink)]]
     1215Ce fichier est produit par [https://graphviz.org/ Graphviz] à partir du fichier `makefile.dot` et la commande `dot -T png Makefile.dot -oMakefile.png`
     1216 {{{
     1217digraph G {
     1218node [shape=box color=brown]
     1219gcc1[label="gcc -c"];
     1220gcc2[label="gcc -c"];
     1221gcc3[label="gcc -c"];
     1222gcc4[label="gcc -c"];
     1223ld[label="ld"];
     1224node [shape=ellipse color=blue]
     1225"hcpua.S" , "hcpu.h"                          -> gcc1 -> "obj/hcpua.o" -> ld -> "kernel.x"
     1226"kinit.c" , "klibc.h" , "harch.h" , "hcpu.h"  -> gcc2 -> "obj/kinit.o" -> ld
     1227"klibc.c" , "klibc.h" , "harch.h" , "hcpu.h"  -> gcc3 -> "obj/klibc.o" -> ld
     1228"harch.c" , "klibc.h" , "harch.h" , "hcpu.h"  -> gcc4 -> "obj/harch.o" -> ld
     1229}}}
     1230'''''''''''''''
     1231}}}
     1232
    121312331. Dans quel fichier se trouvent les codes dépendant du MIPS ?
    12141234{{{#!protected ------------------------------------------------------------------------------------