Adding a slightly reorganized version of skyler's revamped s.a.c.
Change-Id: I19439883c25d887fa4409b33a70c235af3a78eaf
diff --git a/src/source/flashing.md b/src/source/flashing.md
new file mode 100644
index 0000000..fb6c516
--- /dev/null
+++ b/src/source/flashing.md
@@ -0,0 +1,19 @@
+# Flashing #
+
+To flash a device, you will need to use `fastboot`. Place the device in fastboot mode either manually by holding the appropriate key combination at boot, or from the shell with
+
+ $ adb reboot bootloader
+
+Once the device is in fastboot mode, run
+
+ $ fastboot flashall -w
+
+The `-w` option wipes the `/data` partition on the device; this is useful for your first time flashing a particular device, but is otherwise unnecessary.
+
+# Emulating #
+
+To run the emulator, type
+
+ $ emulator
+
+