OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [freertos-6.1.1/] [Demo/] [OpenRISC_SIM_GCC/] [arch/] [support.h] - Blame information for rev 615

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 584 jeremybenn
/* Support file for or32 tests.  This file should is included
2
   in each test. It calls main() function and add support for
3
   basic functions */
4
 
5
#ifndef SUPPORT_H
6
#define SUPPORT_H
7
 
8
#include <stdarg.h>
9
#include <stddef.h>
10
#include <limits.h>
11
 
12
/* Register access macros */
13
#define REG8(add) *((volatile unsigned char *)(add))
14
#define REG16(add) *((volatile unsigned short *)(add))
15
#define REG32(add) *((volatile unsigned long *)(add))
16
 
17
/* For writing into SPR. */
18
void mtspr(unsigned long spr, unsigned long value);
19
 
20
/* For reading SPR. */
21
unsigned long mfspr(unsigned long spr);
22
 
23
/* Function to be called at entry point - not defined here.  */
24
int main(int argc, char **argv);
25
 
26
/* Prints out a value */
27
void report(unsigned long value);
28
 
29
/* return value by making a syscall */
30
extern void or32_exit (int i) __attribute__ ((__noreturn__));
31
 
32
/* Timer functions */
33
extern void start_timer(int);
34
extern unsigned int read_timer(int);
35
 
36
 
37
extern unsigned long excpt_buserr;
38
extern unsigned long excpt_dpfault;
39
extern unsigned long excpt_ipfault;
40
extern unsigned long excpt_tick;
41
extern unsigned long excpt_align;
42
extern unsigned long excpt_illinsn;
43
extern unsigned long excpt_int;
44
extern unsigned long excpt_dtlbmiss;
45
extern unsigned long excpt_itlbmiss;
46
extern unsigned long excpt_range;
47
extern unsigned long excpt_syscall;
48
extern unsigned long excpt_break;
49
extern unsigned long excpt_trap;
50
 
51
 
52
#endif /* SUPPORT_H */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.