Skip to content

Commit 6e07f47

Browse files
authored
Update plantuml 10_wiiu example
There was an issue caused by the alias `rom` being used for two separate elements. Fixed by renaming the second element to `prom`. Another issue was that all arrows were `--` which means up/down to PlantUML. This was fixed by changing some arrows to `-` (meaning left/right). Finally, some arrows were made longer (`---`) to give elements more space to be pointed to. This avoids links crossing.
1 parent 73119c8 commit 6e07f47

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/examples/10_wiiu/syntax/plantuml.puml

+7-7
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ node "IBM "Espresso" CPU" as ibm {
77

88
[16 KB ROM] as rom
99

10-
core0 -- core2
10+
core2 - core0
1111

1212
rom -> core2
1313
}
@@ -16,7 +16,7 @@ node "AMD "Latte" GPU" as amd {
1616
[Memory & I/O Bridge] as mem
1717
[DRAM Controller] as dram
1818
[32 MB EDRAM "MEM1"] as edram
19-
[512 B SEEPROM] as rom
19+
[512 B SEEPROM] as prom
2020

2121
[SATA IF] as sata
2222
[EXI] as exi
@@ -30,22 +30,22 @@ node "AMD "Latte" GPU" as amd {
3030
mem -- gx
3131
mem -- radeon
3232

33-
rom -- mem
33+
prom -- mem
3434

35-
mem -- sata
36-
mem -- exi
35+
mem --- sata
36+
mem ---- exi
3737

3838
dram -- sata
3939
dram -- exi
4040
}
4141

4242
[2 GB DDR3 RAM "MEM2"] as ddr3
4343

44-
mem -- ddr3
44+
mem -u- ddr3
4545
dram -- ddr3
4646
edram -- ddr3
4747

48-
core1 -- mem
48+
core1 --- mem
4949

5050
exi -- RTC
5151

0 commit comments

Comments
 (0)