Changeset 22af3af in mainline
- Timestamp:
- 2009-08-22T19:46:59Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 21d8020
- Parents:
- e5792d1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/ddi/irq.h
re5792d1 r22af3af 37 37 38 38 typedef enum { 39 /** Read 1 byte from the I/O space. */ 39 40 CMD_PIO_READ_8 = 1, 41 /** Read 2 bytes from the I/O space. */ 40 42 CMD_PIO_READ_16, 43 /** Read 4 bytes from the I/O space. */ 41 44 CMD_PIO_READ_32, 45 /** Write 1 byte to the I/O space. */ 42 46 CMD_PIO_WRITE_8, 47 /** Write 2 bytes to the I/O space. */ 43 48 CMD_PIO_WRITE_16, 49 /** Write 4 bytes to the I/O space. */ 44 50 CMD_PIO_WRITE_32, 51 /** 52 * Perform a bit test on the source argument and store the result into 53 * the destination argument. 54 */ 45 55 CMD_BTEST, 56 /** 57 * Predicate the execution of the following N commands by the boolean 58 * value of the source argument. 59 */ 46 60 CMD_PREDICATE, 61 /** Accept the interrupt. */ 47 62 CMD_ACCEPT, 63 /** Decline the interrupt. */ 48 64 CMD_DECLINE, 49 65 CMD_LAST
Note:
See TracChangeset
for help on using the changeset viewer.