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