Home
last modified time | relevance | path

Searched refs:R0 (Results 1 – 14 of 14) sorted by relevance

/hal_espressif-3.6.0/components/fatfs/src/
D00history.txt5 R0.00 (February 26, 2006)
11 R0.01 (April 29, 2006)
17 R0.02 (June 01, 2006)
25 R0.02a (June 10, 2006)
31 R0.03 (September 22, 2006)
38 R0.03a (December 11, 2006)
45 R0.04 (February 04, 2007)
54 R0.04a (April 01, 2007)
63 R0.04b (May 05, 2007)
72 R0.05 (August 25, 2007)
[all …]
D00readme.txt1 FatFs Module Source Files R0.13c
/hal_espressif-3.6.0/components/ulp/test/esp32/
Dtest_ulp.c53 I_LD(R0, R3, 0),
55 I_ADDR(R2, R0, R1),
74 I_MOVI(R0, 34), // r0 = dst
81 I_ST(R3, R0, 0), // dst[0] = r3
82 I_ADDI(R0, R0, 1),
138 I_ST(R0, R1, 0),
140 I_ST(R0, R1, 1),
142 I_ST(R0, R1, 2),
144 I_ST(R0, R1, 3),
149 I_LD(R0, R1, 4),
[all …]
/hal_espressif-3.6.0/components/ulp/
DREADME.rst8 I_LD(R0, R3, 0), // R0 <- RTC_SLOW_MEM[R3 + 0]
10 I_ADDR(R2, R0, R1), // R2 <- R0 + R1
19 …uction. Arguments of these preprocessor defines can be register numbers (``R0 — R3``) and literal …
34 I_MOVI(R0, 34), // R0 <- 34
41 I_ST(R3, R0, 0), // R3 -> RTC_SLOW_MEM[R0 + 0]
42 I_ADDI(R0, R0, 1), // R0++
43 M_BL(1, 64), // if (R0 < 64) goto label_1
91 …pose registers. All registers have same functionality, with one exception. R0 register is used by …
/hal_espressif-3.6.0/components/wpa_supplicant/src/crypto/
Dsha1-internal.c144 #define R0(v,w,x,y,z,i) \ macro
198 R0(a,b,c,d,e, 0); R0(e,a,b,c,d, 1); R0(d,e,a,b,c, 2); R0(c,d,e,a,b, 3); in SHA1Transform()
199 R0(b,c,d,e,a, 4); R0(a,b,c,d,e, 5); R0(e,a,b,c,d, 6); R0(d,e,a,b,c, 7); in SHA1Transform()
200 R0(c,d,e,a,b, 8); R0(b,c,d,e,a, 9); R0(a,b,c,d,e,10); R0(e,a,b,c,d,11); in SHA1Transform()
201 R0(d,e,a,b,c,12); R0(c,d,e,a,b,13); R0(b,c,d,e,a,14); R0(a,b,c,d,e,15); in SHA1Transform()
/hal_espressif-3.6.0/examples/system/deep_sleep/main/
Ddeep_sleep_example_main.c371 I_LD(R0, R2, 0), in start_ulp_temperature_monitoring()
375 I_MOVR(R0, R3), in start_ulp_temperature_monitoring()
376 I_ST(R0, R2, 0), in start_ulp_temperature_monitoring()
380 I_ADDI(R1, R0, max_temp_diff - 1), in start_ulp_temperature_monitoring()
386 I_SUBI(R1, R0, max_temp_diff - 1), in start_ulp_temperature_monitoring()
/hal_espressif-3.6.0/docs/en/api-guides/
Dulp_instruction_set.rst6 ULP coprocessor has 4 16-bit general purpose registers, labeled R0, R1, R2, R3. It also has an 8-bi…
471 **JUMPR** – Jump to a relative offset (condition based on R0)
481 - *EQ* (equal) – jump if value in R0 == threshold
482 - *LT* (less than) – jump if value in R0 < threshold
483 - *LE* (less or equal) – jump if value in R0 <= threshold
484 - *GT* (greater than) – jump if value in R0 > threshold
485 - *GE* (greater or equal) – jump if value in R0 >= threshold
512 …ive address if condition is true. Condition is the result of comparison of R0 register value and t…
516 1:pos: JUMPR 16, 20, GE // Jump to address (position + 16 bytes) if value in R0 >= 20
518 2: // Down counting loop using R0 register
[all …]
Dulps2_instruction_set.rst6 ULP coprocessor has 4 16-bit general purpose registers, labeled R0, R1, R2, R3. It also has an 8-bi…
710 **JUMPR** – Jump to a relative offset (condition based on R0)
720 - *EQ* (equal) – jump if value in R0 == threshold
721 - *LT* (less than) – jump if value in R0 < threshold
722 - *LE* (less or equal) – jump if value in R0 <= threshold
723 - *GT* (greater than) – jump if value in R0 > threshold
724 - *GE* (greater or equal) – jump if value in R0 >= threshold
744 …ive address if condition is true. Condition is the result of comparison of R0 register value and t…
748 1:pos: JUMPR 16, 20, GE // Jump to address (position + 16 bytes) if value in R0 >= 20
750 2: // Down counting loop using R0 register
[all …]
/hal_espressif-3.6.0/components/esptool_py/esptool/docs/en/esptool/
Dconfiguration-file.rst76 custom_reset_sequence = D0|R1|W0.1|D1|R0|W0.5|D0
121 - Consists of individual commands divided by ``|`` (e.g. ``R0|D1|W0.5``).
122 - Commands (e.g. ``R0``) are defined by a code (``R``) and an argument (``0``).
138 For example: ``D0|R1|W0.1|D1|R0|W0.5|D0`` represents the following classic reset sequence:
/hal_espressif-3.6.0/components/ulp/include/esp32s3/
Dulp.h36 #define R0 0 /*!< general purpose register 0 */ macro
/hal_espressif-3.6.0/components/ulp/include/esp32s2/
Dulp.h36 #define R0 0 /*!< general purpose register 0 */ macro
/hal_espressif-3.6.0/components/ulp/include/esp32/
Dulp.h36 #define R0 0 /*!< general purpose register 0 */ macro
/hal_espressif-3.6.0/docs/en/
DCOPYRIGHT.rst147 TJpgDec - Tiny JPEG Decompressor R0.01 (C)ChaN, 2011
/hal_espressif-3.6.0/components/freertos/
DHistory.txt2172 + GCC LPC2000 code now explicitly uses R0 rather than letting the assembler