-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
08cecd4
commit f43f6f2
Showing
2 changed files
with
139 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
== Arquivo de teste | ||
|
||
Teste de aquivo. | ||
Mudando arquivo. | ||
|
||
["graphviz"] | ||
---- | ||
digraph colorschemes { | ||
node [color=2 style=filled colorscheme=greys9] | ||
edge [colorscheme=greys9] | ||
blue [color=5] | ||
red [color=8] | ||
blue->red [color=8] | ||
red->blue [color=5] | ||
} | ||
---- | ||
|
||
|
||
[[fig_compilacao_passos]] | ||
["graphviz"] | ||
.Passos no processo de compilação | ||
---- | ||
digraph automata_0 { | ||
rankdir=LR; | ||
size ="8.5, 11"; | ||
node [shape = box]; | ||
edge [colorscheme=greys9] | ||
|
||
subgraph clusterCodigos { | ||
label = "Código fonte"; | ||
node [style=filled,color=white]; | ||
style=filled; | ||
color=lightgrey; | ||
code_assembly [label="Linguagem de Baixo Nível\n(Linguagem de montagem)"]; | ||
code_c [label="Linguagem de Alto Nível\n(Ex: C, Pascal, ...)"]; | ||
} | ||
|
||
subgraph clusterTradutor { | ||
label = "Tradutor"; | ||
node [style=filled,color=white,shape="doubleoctagon"]; | ||
style=filled; | ||
color=lightgrey; | ||
montador [label="Montador"]; | ||
compilador [label="Compilador"]; | ||
} | ||
|
||
code_gerado [label="Código traduzido\n(Linguagem de montagem)"]; | ||
|
||
subgraph clusterCodigoObjeto { | ||
label = "Código Objeto\n(binário)"; | ||
node [style=filled,color=white]; | ||
style=filled; | ||
color=lightgrey; | ||
objeto1 [label="Código Objeto 1"]; | ||
objeto2 [label="Código Objeto 2"]; | ||
} | ||
|
||
ligador [label="Ligador",shape="doubleoctagon"]; | ||
programa [label="Código Binário\nExecutável", shape="component", fillcolor="grey", style="filled"]; | ||
carregador[label = "Carregador", style="filled", shape="folder"]; | ||
memoria[label="Memória", style="filled", shape="box3d"] | ||
|
||
code_assembly -> montador -> objeto1 [color=8, style="bold"]; | ||
code_c -> compilador -> code_gerado -> montador -> objeto2 [color=6, style="bold"]; | ||
|
||
objeto1->ligador [color=5, style="bold"]; | ||
objeto2->ligador [color=5, style="bold"]; | ||
ligador-> programa -> carregador -> memoria [color=5, style="bold"]; | ||
|
||
{rank=source; code_c code_assembly } | ||
{rank=same; montador compilador memoria} | ||
{rank=same; objeto1 objeto2 carregador} | ||
{rank=same; ligador programa} | ||
{rank=sink; programa} | ||
|
||
} | ||
---- | ||
// Sempre termine os arquivos com uma linha em branco. |