2003-06-10 Marcel Telka <marcel@telka.sk>

* brux/bus.h (bus_t): Changed return type from int to unsigned int for width().


git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@474 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Marcel Telka 22 years ago
parent 38f0004a90
commit 6af3bafa97

@ -1,3 +1,7 @@
2003-06-10 Marcel Telka <marcel@telka.sk>
* brux/bus.h (bus_t): Changed return type from int to unsigned int for width().
2003-06-03 Marcel Telka <marcel@telka.sk>
* brux/cmd.h (cmds): Added external variable declaration.

@ -42,7 +42,7 @@ typedef struct bus bus_t;
struct bus {
void *params;
void (*prepare)( bus_t *bus );
int (*width)( bus_t *bus, uint32_t adr );
unsigned int (*width)( bus_t *bus, uint32_t adr );
void (*read_start)( bus_t *bus, uint32_t adr );
uint32_t (*read_next)( bus_t *bus, uint32_t adr );
uint32_t (*read_end)( bus_t *bus );

Loading…
Cancel
Save