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

Subversion Repositories minsoc

[/] [minsoc/] [trunk/] [sw/] [support/] [support.h] - Blame information for rev 53

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

Line No. Rev Author Line
1 2 rfajardo
/* 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 ();
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
/* memcpy clone */
33
/*
34
extern void *memcpy (void *__restrict __dest,
35
                     __const void *__restrict __src, size_t __n);
36
*/
37
 
38
extern unsigned long excpt_buserr;
39
extern unsigned long excpt_dpfault;
40
extern unsigned long excpt_ipfault;
41
extern unsigned long excpt_tick;
42
extern unsigned long excpt_align;
43
extern unsigned long excpt_illinsn;
44
extern unsigned long excpt_int;
45
extern unsigned long excpt_dtlbmiss;
46
extern unsigned long excpt_itlbmiss;
47
extern unsigned long excpt_range;
48
extern unsigned long excpt_syscall;
49
extern unsigned long excpt_break;
50
extern unsigned long excpt_trap;
51
 
52 36 rfajardo
#endif /* SUPPORT_H */

powered by: WebSVN 2.1.0

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