aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorPavel Pisa <pisa@cmp.felk.cvut.cz>2019-02-14 15:19:07 +0100
committerGitHub <noreply@github.com>2019-02-14 15:19:07 +0100
commit24b8f80b1ac1871e45abe91739afe9245b91cb2a (patch)
treea385c7cba172a92e0fa870ee5a93486af8d286b3 /README.md
parente09239f9c4917271efd8dba7e57ac529eacaa98a (diff)
downloadqtmips-24b8f80b1ac1871e45abe91739afe9245b91cb2a.tar.gz
qtmips-24b8f80b1ac1871e45abe91739afe9245b91cb2a.tar.bz2
qtmips-24b8f80b1ac1871e45abe91739afe9245b91cb2a.zip
README: correct code snippets formatting.
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 8 insertions, 8 deletions
diff --git a/README.md b/README.md
index 67580a1..99a80c2 100644
--- a/README.md
+++ b/README.md
@@ -52,17 +52,17 @@ make
Or compile the application with static libraries
-'''
+```
mkdir QtMips-build
cd QtMips-build
qmake CONFIG+=static" "CONFIG+=staticlib" -recursive ../QtMips/qtmips.pro
-'''
+```
Alternativelly, you can setup
-'''
+```
LD_LIBRARY_PATH=/path_to_QtMips/qtmips_machine /path_to_QtMips/qtmips_osemu
-'''
+```
Accepted binary formats
------------------------
@@ -98,12 +98,12 @@ of writtent word is transmitted to terminal window.
Definition of peripheral base address and registers
offsets follows.
-'''
+```
#define SERIAL_PORT_BASE 0xffffc000
#define SERP_ST_REG_o 0x00
#define SERP_ST_REG_TX_BUSY_m 0x1
#define SERP_TX_REG_o 0x04
-'''
+```
The another peripheral allows to set three bytes values
concatenated to single word from user panel and
@@ -112,7 +112,7 @@ format ('LED_LINE' register). There are two other
words writtable which define color of RGB LED 1 and 2
(registers 'LED_RGB1' and 'LED_RGB2').
-'''
+```
#define SPILED_REG_BASE 0xffffc100
#define SPILED_REG_LED_LINE_o 0x004
@@ -122,7 +122,7 @@ words writtable which define color of RGB LED 1 and 2
#define SPILED_REG_KBDRD_KNOBS_DIRECT_o 0x020
#define SPILED_REG_KNOBS_8BIT_o 0x024
-'''
+```
Limitations of the Implementation
---------------------------------