view target-utils/libbase/waitarm.S @ 493:35d3f4c26b96

loadtools/scripts/c155.init: WS=4 setting matching official fw
author Mychaela Falconia <falcon@freecalypso.org>
date Fri, 24 May 2019 06:27:32 +0000
parents 6228d27738d1
children 06ad5e30e8d0
line wrap: on
line source

/*
 * This assembly module provides a wait_ARM_cycles() function just like
 * in TI's firmware; it is meant to gradually replace and phase out
 * osmo_delay_ms().  One loop count for this function equals 5 ARM clock
 * cycles when running out of IRAM.
 */

	.text
	.code	32
	.globl	wait_ARM_cycles
wait_ARM_cycles:
	cmp	r0, #0
	bxeq	lr
1:	sub	r0, r0, #1
	cmp	r0, #0
	bne	1b
	bx	lr