aboutsummaryrefslogtreecommitdiff
path: root/VexRiscvSocSoftware/projects/raw/dhrystone/src/main.c
blob: 450225671dc4261cfd6503552f40bb6569a066ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#include <stdio.h>
#include <string.h>
#include <stdint.h>
#include <stdlib.h>


#define TEST_COM_BASE ((volatile uint32_t*)(0xF00FFF00))

extern void main2();

int main() {
	main2();

	TEST_COM_BASE[8] = 0;
}


void irqCallback(int irq){

}