From 024e6237346c584c97d1cd37d7b7d6b13a43ab9b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= <henrik@tjaders.com>
Date: Wed, 3 Apr 2019 17:58:49 +0200
Subject: [PATCH] First draft of barebones readme

---
 README.md | 58 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 58 insertions(+)
 create mode 100644 README.md

diff --git a/README.md b/README.md
new file mode 100644
index 0000000..57f75d4
--- /dev/null
+++ b/README.md
@@ -0,0 +1,58 @@
+XP-el Mikroprocessorprogrammeringskurs (MPPK)
+=============================================
+
+# Introduction
+
+Embedded systems are everywhere.
+
+Use-cases ranges from heavy industry to tiny sensors in your everyday life.
+
+# Hardware
+
+## ARM
+
+While your laptop/stationary computer most likely runs some `x86_64` CPU architecture,
+odds are your mobile phone is powered by an ARM processor.
+The ARM family of Reduced Instruction Set Computing (RISC) architectures is one of the most prevalent processor architectures.
+
+For more information: https://en.wikipedia.org/wiki/ARM_architecture
+
+## Registers, IO
+
+A typical way to access and interface with the hardware connected to your microcontroller is by accessing various registers, which is memory regions mapped to some hardware.
+
+# Software
+
+In order to instruct the hardware some sort of software is required.
+
+Software is the instructions for the ARM-processor, telling it which registers and what memory to modify.
+
+## Compiler
+
+## Toolchain
+
+### Git
+
+### Cargo-binutils
+
+```
+rustup component add llvm-tools-preview
+```
+
+### GDB / LLDB
+
+## Rust
+
+Installation
+
+https://rustup.rs/
+
+# Bare-metal programming
+
+## OpenOCD
+
+## ST-link
+
+## Blackmagic probe
+
+## GDB / LLDB Debugger
-- 
GitLab