Newer
Older
uwuboot / include / util.h
@profi200 profi200 on 16 Feb 2016 117 bytes Initial commit
#pragma once

static void sleep_wait(u32 cycles)
{
	cycles >>= 2;
	while(cycles)
	{
		__asm("nop");
		cycles--;
	}
}