BlinkenArea - GitList
Repositories
Blog
Wiki
mips_sys
Code
Commits
Branches
Tags
Search
Tree:
3bee72b
Branches
Tags
master
mips_sys
fw
cyc_cnt.c
added cycle counter peripheral
Stefan Schuermans
commited
3bee72b
at 2012-02-12 00:02:27
cyc_cnt.c
Blame
History
Raw
#include "cyc_cnt.h" /** * @brief read cycle counter * @return cycle counter value */ unsigned int cyc_cnt_read(void) { volatile unsigned int *p_cyc_cnt = (volatile unsigned int *)0x80001000; return *p_cyc_cnt; }