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

Subversion Repositories core_arm

[/] [core_arm/] [trunk/] [vhdl/] [bus/] [c_model/] [apbmst.h] - Rev 2

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

#ifndef APBMST_H
#define APBMST_H
 
#define APBMST_MAXSLAVE  2
 
 
typedef int (* apb_write)();
typedef int (* apb_read)();
 
typedef struct _apb_slave {
  apb_write write;
  apb_read read;
 
  unsigned int start, end;
  void *c;
} apb_slave;
 
typedef struct _apbmst {
  apb_slave slaves[APBMST_MAXSLAVE]; 
} apbmst;
 
#endif
 

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

powered by: WebSVN 2.1.0

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