- Timestamp:
- 2006-06-20T11:15:34Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1e0a5fc
- Parents:
- f260256
- Location:
- arch/ia32/src/drivers
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/drivers/ega.c
rf260256 r3c5006a0 27 27 */ 28 28 29 29 /** @addtogroup ia32 30 30 * @{ 31 31 */ 32 /** @file 32 /** 33 * @file 34 * @brief EGA driver. 33 35 */ 34 36 … … 145 147 } 146 148 147 149 /** @} 148 150 */ 149 -
arch/ia32/src/drivers/i8254.c
rf260256 r3c5006a0 27 27 */ 28 28 29 29 /** @addtogroup ia32 30 30 * @{ 31 31 */ 32 /** @file 32 /** 33 * @file 34 * @brief i8254 chip driver. 35 * 36 * Low level time functions. 33 37 */ 34 38 … … 48 52 #include <interrupt.h> 49 53 50 /*51 * i8254 chip driver.52 * Low level time functions.53 */54 55 54 #define CLK_PORT1 0x40 56 55 #define CLK_PORT4 0x43 57 58 56 59 57 #define CLK_CONST 1193180 … … 138 136 } 139 137 140 138 /** @} 141 139 */ 142 -
arch/ia32/src/drivers/i8259.c
rf260256 r3c5006a0 27 27 */ 28 28 29 29 /** @addtogroup ia32 30 30 * @{ 31 31 */ 32 /** @file 32 /** 33 * @file 34 * @brief PIC driver. 35 * 36 * Programmable Interrupt Controller for UP systems based on i8259 chip. 33 37 */ 34 38 … … 40 44 #include <print.h> 41 45 #include <interrupt.h> 42 43 /*44 * This is the PIC driver.45 * Programmable Interrupt Controller for UP systems.46 */47 46 48 47 static void pic_spurious(int n, istate_t *istate); … … 132 131 } 133 132 134 133 /** @} 135 134 */ 136 -
arch/ia32/src/drivers/vesa.c
rf260256 r3c5006a0 27 27 */ 28 28 29 29 /** @addtogroup ia32 30 30 * @{ 31 31 */ 32 /** @file 32 /** 33 * @file 34 * @brief VESA frame buffer driver. 33 35 */ 34 36 … … 71 73 #endif 72 74 73 75 /** @} 74 76 */ 75
Note:
See TracChangeset
for help on using the changeset viewer.