Add dotty graphs on osmo-remsim to 'doc' subdirectory

Change-Id: Ib0478f1afb17c490cc3ac5a7bbbe3f4de1b30406
diff --git a/doc/remote-sim.dot b/doc/remote-sim.dot
new file mode 100644
index 0000000..70f26d7
--- /dev/null
+++ b/doc/remote-sim.dot
@@ -0,0 +1,15 @@
+digraph {
+	rankdir=LR;
+	SIM [shape=rect];
+	Reader [shape=rect];
+	Computer [shape=rect];
+	ComputerB [shape=rect];
+	SIMtrace [shape=rect];
+	Phone [shape=rect];
+
+	SIM -> Reader [label="ISO-7816-2/3",dir=both];
+	Reader -> Computer [label="USB CCID",dir=both];
+	Computer -> ComputerB [label="IP based transport",dir=both];
+	ComputerB -> SIMtrace [label="USB",dir=both];
+	SIMtrace -> Phone [label="ISO-7816-2/3",dir=both];
+}