Changeset 193 for trunk/hal/x86_64/core/hal_interrupt.c
- Timestamp:
- Jul 13, 2017, 9:28:06 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/x86_64/core/hal_interrupt.c
r168 r193 36 36 * Timer interrupt 37 37 */ 38 void hal_timer_intr( struct trapframe*tf)38 void hal_timer_intr(hal_cpu_context_t *tf) 39 39 { 40 40 x86_printf("-> got timer: rip=%Z (th=%Z)\n", tf->tf_rip, … … 48 48 * Serial Port (COM1) interrupt 49 49 */ 50 void hal_com1_intr( struct trapframe*tf)50 void hal_com1_intr(hal_cpu_context_t *tf) 51 51 { 52 52 static char prev; … … 122 122 * Keyboard interrupt (8042 PS/2) 123 123 */ 124 void hal_keyboard_intr( struct trapframe*tf)124 void hal_keyboard_intr(hal_cpu_context_t *tf) 125 125 { 126 126 uint64_t val;
Note: See TracChangeset
for help on using the changeset viewer.