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

Subversion Repositories or1k

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 229 to Rev 230
    Reverse comparison

Rev 229 → Rev 230

/trunk/or1ksim/sim-config.h
51,9 → 51,10
int jitter; /* CZ 250801 - in msecs...time to block */
unsigned long baseaddr; /* Naturally aligned base address */
} uarts[NR_UARTS];
struct {
unsigned long baseaddr;
} dmas[NR_DMAS];
struct {
unsigned long baseaddr;
unsigned irq;
} dmas[NR_DMAS];
int simdebug; /* Simulator debugging */
int profile; /* Is profiler running */
FILE *fprof; /* profiler file */
/trunk/or1ksim/sim-config.c
23,6 → 23,7
#include "sim-config.h"
#include "abstract.h"
#include "spr_defs.h"
#include "pic.h"
 
struct config config;
 
40,7 → 41,8
config.uarts[0].txfile = "/tmp/uart0.tx";
config.uarts[0].baseaddr = 0x80000000;
config.uarts[0].jitter = -1; /* Async behavior */
config.dmas[0].baseaddr = 0x90000000;
config.dmas[0].baseaddr = 0x90000000;
config.dmas[0].irq = INT_DMA;
config.simdebug = 0;
config.profile = 0;
config.iprompt = 0;

powered by: WebSVN 2.1.0

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