Fix comments in ULP MOVE instruction examples

Merges https://github.com/espressif/esp-idf/pull/2992
This commit is contained in:
fivdi
2019-01-27 18:01:18 +01:00
committed by Ivan Grokhotkov
parent d43e3e7fc6
commit 178c9d15de

View File

@ -336,9 +336,9 @@ Note that when accessing RTC memories and RTC registers, ULP coprocessor has low
**Examples**::
1: MOVE R1, R2 //R1 = R2 >> R3
1: MOVE R1, R2 //R1 = R2
2: MOVE R1, 0x03 //R1 = R2 >> 0x03
2: MOVE R1, 0x03 //R1 = 0x03
3: .set value1, 0x03 //constant value1=0x03
MOVE R1, value1 //R1 = value1