213 | | {{{int (*read) (uint32_t device, uint32_t flags, uint32_t base, uint32_t offset, void* buffer, uint32_t size);</code> |
| 213 | {{{int (*read) (uint32_t device, uint32_t flags, uint32_t base, uint32_t offset, |
| 214 | void* buffer, uint32_t size);</code> |
| 215 | : Read a block of data from the {{{offset</code> in the {{{device</code> with the {{{base</code> address to the provided {{{buffer</code>. |
| 216 | |
| 217 | {{{int (*write) (uint32_t device, uint32_t flags, uint32_t base, uint32_t offset, |
| 218 | const void* buffer, uint32_t size);</code> |
| 219 | : Write a block of data to the {{{offset</code> in the {{{device</code> with the {{{base</code> address from the provided {{{buffer</code>. |
| 220 | |
| 221 | {{{int (*verify) (uint32_t device, uint32_t flags, uint32_t base, uint32_t offset, |
| 222 | const void* buffer, uint32_t size);</code> |
| 223 | : Verify a block of data provided in {{{buffer</code> against to the data at the {{{offset</code> in the {{{device</code> with this {{{base</code> address. |