From abfd4da287456f5e15b24251333dbdca934b2975 Mon Sep 17 00:00:00 2001 From: Damien George Date: Fri, 26 Jun 2015 12:35:17 +0100 Subject: [PATCH] docs: Add link from pyboard asm tutorial to asm reference. --- docs/pyboard/tutorial/assembler.rst | 6 ++++++ 1 file changed, 6 insertions(+) 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 `.