diff options
| author | Alex Kiselev <[email protected]> | 2024-09-05 15:11:35 +0200 |
|---|---|---|
| committer | Alex Kiselev <[email protected]> | 2024-09-05 15:11:35 +0200 |
| commit | 416dfac3fd596c6fcc5b299886426eb40a42ecaa (patch) | |
| tree | e2e6351de362fd8068053947ac51ce775d881085 | |
| parent | 5d619e5c4ba36fdf4fe5bc6ffb34f18dc7076ac5 (diff) | |
Comment style changed according to conversation
3 files changed, 6 insertions, 6 deletions
diff --git a/ports/cortex_m0/ac5/example_build/tx_initialize_low_level.s b/ports/cortex_m0/ac5/example_build/tx_initialize_low_level.s index 0c19cc2f..719b6b8c 100644 --- a/ports/cortex_m0/ac5/example_build/tx_initialize_low_level.s +++ b/ports/cortex_m0/ac5/example_build/tx_initialize_low_level.s @@ -177,8 +177,8 @@ _tx_initialize_low_level ; LDR r0, =0xE000E000 ; Build address of NVIC registers LDR r1, =0 - STR r1, [r0, #0x10] // Reset SysTick Control - STR r1, [r0, #0x18] // Reset SysTick Counter Value + STR r1, [r0, #0x10] ; Reset SysTick Control + STR r1, [r0, #0x18] ; Reset SysTick Counter Value LDR r1, =SYSTICK_CYCLES STR r1, [r0, #0x14] ; Setup SysTick Reload Value MOVS r1, #0x7 ; Build SysTick Control Enable Value diff --git a/ports/cortex_m0/iar/example_build/tx_initialize_low_level.s b/ports/cortex_m0/iar/example_build/tx_initialize_low_level.s index 09742ecc..49245c6b 100644 --- a/ports/cortex_m0/iar/example_build/tx_initialize_low_level.s +++ b/ports/cortex_m0/iar/example_build/tx_initialize_low_level.s @@ -126,8 +126,8 @@ _tx_initialize_low_level: ; LDR r0, =0xE000E000 ; Build address of NVIC registers LDR r1, =0 - STR r1, [r0, #0x10] // Reset SysTick Control - STR r1, [r0, #0x18] // Reset SysTick Counter Value + STR r1, [r0, #0x10] ; Reset SysTick Control + STR r1, [r0, #0x18] ; Reset SysTick Counter Value LDR r1, =SYSTICK_CYCLES STR r1, [r0, #0x14] ; Setup SysTick Reload Value MOVS r1, #0x7 ; Build SysTick Control Enable Value diff --git a/ports/cortex_m0/keil/example_build/tx_initialize_low_level.s b/ports/cortex_m0/keil/example_build/tx_initialize_low_level.s index 0c19cc2f..719b6b8c 100644 --- a/ports/cortex_m0/keil/example_build/tx_initialize_low_level.s +++ b/ports/cortex_m0/keil/example_build/tx_initialize_low_level.s @@ -177,8 +177,8 @@ _tx_initialize_low_level ; LDR r0, =0xE000E000 ; Build address of NVIC registers LDR r1, =0 - STR r1, [r0, #0x10] // Reset SysTick Control - STR r1, [r0, #0x18] // Reset SysTick Counter Value + STR r1, [r0, #0x10] ; Reset SysTick Control + STR r1, [r0, #0x18] ; Reset SysTick Counter Value LDR r1, =SYSTICK_CYCLES STR r1, [r0, #0x14] ; Setup SysTick Reload Value MOVS r1, #0x7 ; Build SysTick Control Enable Value |
