diff options
| author | Root THC | 2026-02-24 12:42:47 +0000 |
|---|---|---|
| committer | Root THC | 2026-02-24 12:42:47 +0000 |
| commit | c9cbeced5b3f2bdd7407e29c0811e65954132540 (patch) | |
| tree | aefc355416b561111819de159ccbd86c3004cf88 /other/burneye2/elf/debug/debug.dot | |
| parent | 073fe4bf9fca6bf40cef2886d75df832ef4b6fca (diff) | |
initial
Diffstat (limited to 'other/burneye2/elf/debug/debug.dot')
| -rw-r--r-- | other/burneye2/elf/debug/debug.dot | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/other/burneye2/elf/debug/debug.dot b/other/burneye2/elf/debug/debug.dot new file mode 100644 index 0000000..b30ab4d --- /dev/null +++ b/other/burneye2/elf/debug/debug.dot | |||
| @@ -0,0 +1,22 @@ | |||
| 1 | digraph functiondeps { | ||
| 2 | |||
| 3 | node [ | ||
| 4 | style = filled | ||
| 5 | shape = "record" | ||
| 6 | fillcolor = "lightskyblue" | ||
| 7 | ]; | ||
| 8 | |||
| 9 | "main" [ | ||
| 10 | label = "{ <fi> | main | <fo> }" | ||
| 11 | ]; | ||
| 12 | "main":fo -> "atoi":fi; | ||
| 13 | "main":fo -> "printf":fi; | ||
| 14 | "atoi" [ | ||
| 15 | label = "{ <fi> | atoi | <fo> }" | ||
| 16 | fillcolor = "red" | ||
| 17 | ]; | ||
| 18 | "printf" [ | ||
| 19 | label = "{ <fi> | printf | <fo> }" | ||
| 20 | fillcolor = "red" | ||
| 21 | ]; | ||
| 22 | } | ||
