diff options
author | Damien George <damien.p.george@gmail.com> | 2015-06-04 23:53:26 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-06-04 23:53:26 +0100 |
commit | 3eece29807f5257091271229dbf41543646eb4e4 (patch) | |
tree | ee9590731400cd2e777dc70d82cc75e14b235fe4 /docs/pyboard/tutorial/assembler.rst | |
parent | 601cfea6a3901e0faeaf7aa4a25df6fd6594208f (diff) | |
download | micropython-3eece29807f5257091271229dbf41543646eb4e4.tar.gz micropython-3eece29807f5257091271229dbf41543646eb4e4.zip |
docs: Change "Micro Python" to "MicroPython" in all places in docs.
Diffstat (limited to 'docs/pyboard/tutorial/assembler.rst')
-rw-r--r-- | docs/pyboard/tutorial/assembler.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/pyboard/tutorial/assembler.rst b/docs/pyboard/tutorial/assembler.rst index 777600fc86..0e265eef10 100644 --- a/docs/pyboard/tutorial/assembler.rst +++ b/docs/pyboard/tutorial/assembler.rst @@ -1,12 +1,12 @@ Inline assembler ================ -Here you will learn how to write inline assembler in Micro Python. +Here you will learn how to write inline assembler in MicroPython. **Note**: this is an advanced tutorial, intended for those who already know a bit about microcontrollers and assembly language. -Micro Python includes an inline assembler. It allows you to write +MicroPython includes an inline assembler. It allows you to write assembly routines as a Python function, and you can call them as you would a normal Python function. @@ -23,7 +23,7 @@ Let's start with the simplest example:: You can enter this in a script or at the REPL. This function takes no arguments and returns the number 42. ``r0`` is a register, and the value in this register when the function returns is the value that is returned. -Micro Python always interprets the ``r0`` as an integer, and converts it to an +MicroPython always interprets the ``r0`` as an integer, and converts it to an integer object for the caller. If you run ``print(fun())`` you will see it print out 42. |