Changeset 57358 in vbox for trunk/src/VBox/Devices/Parallel
- Timestamp:
- Aug 14, 2015 3:16:38 PM (9 years ago)
- Location:
- trunk/src/VBox/Devices/Parallel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Parallel/DevParallel.cpp
r56292 r57358 19 19 */ 20 20 21 /******************************************************************************* 22 * Header Files * 23 *******************************************************************************/ 21 22 /********************************************************************************************************************************* 23 * Header Files * 24 *********************************************************************************************************************************/ 24 25 #define LOG_GROUP LOG_GROUP_DEV_PARALLEL 25 26 #include <VBox/vmm/pdmdev.h> … … 32 33 33 34 34 /******************************************************************************* 35 * Defined Constants And Macros *36 ******************************************************************************* /35 /********************************************************************************************************************************* 36 * Defined Constants And Macros * 37 *********************************************************************************************************************************/ 37 38 #define PARALLEL_SAVED_STATE_VERSION 1 38 39 … … 85 86 86 87 87 /******************************************************************************* 88 * Structures and Typedefs *89 ******************************************************************************* /88 /********************************************************************************************************************************* 89 * Structures and Typedefs * 90 *********************************************************************************************************************************/ 90 91 /** 91 92 * Parallel device state. … … 155 156 156 157 157 /******************************************************************************* 158 * Internal Functions *159 ******************************************************************************* /158 /********************************************************************************************************************************* 159 * Internal Functions * 160 *********************************************************************************************************************************/ 160 161 RT_C_DECLS_BEGIN 161 162 PDMBOTHCBDECL(int) parallelIOPortRead(PPDMDEVINS pDevIns, void *pvUser, RTIOPORT Port, uint32_t *pu32, unsigned cb); -
trunk/src/VBox/Devices/Parallel/DrvHostParallel.cpp
r56292 r57358 18 18 */ 19 19 20 /******************************************************************************* 21 * Header Files * 22 *******************************************************************************/ 20 21 /********************************************************************************************************************************* 22 * Header Files * 23 *********************************************************************************************************************************/ 23 24 #define LOG_GROUP LOG_GROUP_DRV_HOST_PARALLEL 24 25 #include <VBox/vmm/pdmdrv.h> … … 72 73 73 74 74 /******************************************************************************* 75 * Structures and Typedefs *76 ******************************************************************************* /75 /********************************************************************************************************************************* 76 * Structures and Typedefs * 77 *********************************************************************************************************************************/ 77 78 /** 78 79 * Host parallel port driver instance data. … … 157 158 158 159 159 /******************************************************************************* 160 * Defined Constants And Macros *161 ******************************************************************************* /160 /********************************************************************************************************************************* 161 * Defined Constants And Macros * 162 *********************************************************************************************************************************/ 162 163 #define CTRL_REG_OFFSET 2 163 164 #define STATUS_REG_OFFSET 1
Note:
See TracChangeset
for help on using the changeset viewer.