diff options
author | Damien George <damien.p.george@gmail.com> | 2015-06-26 12:35:17 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-06-26 12:35:17 +0100 |
commit | abfd4da287456f5e15b24251333dbdca934b2975 (patch) | |
tree | bd2aa06c431d5d85d05a292559cd14880fc39f80 /docs/pyboard/tutorial/assembler.rst | |
parent | 59fba2d6ea31c134c9c0b88dc73cd25b236f167c (diff) | |
download | micropython-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.rst | 6 |
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>`. |