diff --git a/README.md b/README.md
index e45d3c2..e323e78 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
## A [Chip-8](http://www.cs.columbia.edu/~sedwards/classes/2016/4840-spring/designs/Chip8.pdf) emulator written in Kotlin
-
+
# How to run
@@ -35,7 +35,7 @@ timerFuture = executor.scheduleAtFixedRate(timerTick, 0, 16L, TimeUnit.MILLISECO
```
-
+
The next two bytes are then masked and turned into instructions. All the op codes can be found in the `[Ops.kt](https://github.com/cbeust/chip8/blob/master/src/main/kotlin/com/beust/chip8/Ops.kt)` file. Here is an example:
@@ -66,18 +66,18 @@ interface Display {
For example, here is a text based renderer:
-
+
The emulator window will resize gracefully:
-
+
You can also easily alter other aspects of the renderer:
-
+