diff --git a/css/style.css b/css/style.css
index 6e4444a..d75500d 100644
--- a/css/style.css
+++ b/css/style.css
@@ -192,6 +192,15 @@ footer {
overflow-x: hidden;
}
+.tutorial {
+ background-color: #fff;
+ color: #222;
+ font-size: 12px;
+ min-height: 20px;
+ overflow-x: hidden;
+ padding: 5px;
+}
+
.button {
background-color: #fff;
border: 1px solid #bbb;
diff --git a/index.html b/index.html
index 8e42783..aba9792 100644
--- a/index.html
+++ b/index.html
@@ -631,12 +631,81 @@
+
+
+
+
+
+
+ - How to input and run the following adder program to calculate 1 + 2 = 3:
+
+
+
+ LDA 0080H ; 00 111 010
+ ; 10 000 000
+ ; 00 000 000
+ MOV B,A ; 01 000 111
+ LDA 0081H ; 00 111 010
+ ; 10 000 001
+ ; 00 000 000
+ ADD B ; 10 000 000
+ STA 0082H ; 00 110 010
+ ; 10 000 010
+ ; 00 000 000
+ JMP 0000H ; 11 000 011
+ ; 00 000 000
+ ; 00 000 000
+
+
+ - Turn on the computer.
+ - Set switches A7 - A0 to 00 111 010 (up for 1, down for 0).
+ - Click "DEPOSIT".
+ - Set switches A7 - A0 to 10 000 000.
+ - Click "DEPOSIT NEXT".
+ - Repeat step 4-5 to input the following bytes one by one: 00 000 000, 01 000 111, 00 111 010, 10 000 001, 00 000 000, 10 000 000, 00 110 010, 10 000 010, 00 000 000, 11 000 011, 00 000 000, 00 000 000.
+ - Set switches A7 - A0 to 10 000 000.
+ - Click "EXAMINE"
+ - Set switches A7 - A0 to 00 000 001 (the first number to be added, or 1 in decimal).
+ - Click "DEPOSIT".
+ - Set switches A7 - A0 to 00 000 010 (the second number to be added, or 2 in decimal).
+ - Click "DEPOSIT NEXT".
+ - Click "RESET".
+ - Click "RUN" and wait for a few seconds.
+ - Click "STOP".
+ - Set switches A7 - A0 to 10 000 010 (the address that holds the sum).
+ - Click "EXAMINE"
+ - The LEDs D7 - D0 show the result 00 000 011 (3 in decimal).
+ - Turn off the computer.
+
+
+
+
+
+
+
+