summaryrefslogtreecommitdiffstatshomepage
path: root/docs/pyboard/tutorial/assembler.rst
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2015-06-26 12:35:17 +0100
committerDamien George <damien.p.george@gmail.com>2015-06-26 12:35:17 +0100
commitabfd4da287456f5e15b24251333dbdca934b2975 (patch)
treebd2aa06c431d5d85d05a292559cd14880fc39f80 /docs/pyboard/tutorial/assembler.rst
parent59fba2d6ea31c134c9c0b88dc73cd25b236f167c (diff)
downloadmicropython-abfd4da287456f5e15b24251333dbdca934b2975.tar.gz
micropython-abfd4da287456f5e15b24251333dbdca934b2975.zip
docs: Add link from pyboard asm tutorial to asm reference.
Diffstat (limited to 'docs/pyboard/tutorial/assembler.rst')
-rw-r--r--docs/pyboard/tutorial/assembler.rst6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/pyboard/tutorial/assembler.rst b/docs/pyboard/tutorial/assembler.rst
index b5f0471c0f..7c6cf44c4b 100644
--- a/docs/pyboard/tutorial/assembler.rst
+++ b/docs/pyboard/tutorial/assembler.rst
@@ -123,3 +123,9 @@ The following example flashes the green LED. It flashes it ``r0`` times. ::
label(loop_entry)
cmp(r0, 0)
bgt(loop1)
+
+Further reading
+---------------
+
+For further information about supported instructions of the inline assembler,
+see the :ref:`reference documentation <asm_thumb2_index>`.