From 7c9728ef1546a0a11fc433f254423387ce66575e Mon Sep 17 00:00:00 2001 From: dz Date: Fri, 30 Sep 2016 23:40:19 +0200 Subject: [PATCH] update --- README.md | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 41fa162..cc90f93 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,26 @@ # TetrOS -TetrOS is a small feature rich Tetris clone which is written in Assembly, -fits completely into a 512 byte boot sector and which is executed during the -boot sequence. It does not need any existing operating system. +TetrOS is a small *feature rich* Tetris clone which is written in Assembly. +It fits completely into a 512 byte boot sector and is executed during the +boot sequence. It does not need any existing operating system. TetrOS is its own +operating system, hence the suffix OS in its name. -Features +This is how it looks like: + +![TetrOS - Tetris in 512 byte boot sector](https://github.com/daniel-e/mbr_tetris/blob/master/tetros_tetris_screenshot.png) + +## Features * Each brick shape has a unique color. * Blinking cursor is not visible. * Left and right arrow to move a brick. * Up arrow to rotate a brick. * Down arrow to drop a brick. +* Game over detection. It stops if a new brick could not be placed. +* Selects the next brick at random via a linear congruential generator. +* Shows a nice playing field. -Features missing due to size limits +## Features missing due to size limits * Scores and highscores. * Intro. * Game over message. +* Show next brick. +* Increase speed.