Changeset 45 for trunk/hal/x86_64/hal_kentry.S
- Timestamp:
- Jun 23, 2017, 11:55:08 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/x86_64/hal_kentry.S
r29 r45 36 36 .type hal_trap_entry, @function 37 37 38 /* 39 * General exceptions. 40 */ 38 41 ASM_ENTRY(x86_trap00) 39 42 ZTRAPENTRY(T_DIVIDE) … … 111 114 ZTRAPENTRY(T_RESERVED) 112 115 116 /* 117 * LAPIC interrupts. 118 */ 119 ASM_ENTRY(x86_spurious) 120 ZTRAPENTRY(T_ASTFLT) 121 122 123 113 124 /* 114 125 * Arguments pushed on the stack: … … 128 139 .data 129 140 .globl x86_traps 141 .globl x86_intrs 130 142 .type x86_traps, @object 143 .type x86_intrs, @object 131 144 132 145 .align 64 … … 149 162 .quad x86_trap1e, x86_trap1f 150 163 164 x86_intrs: 165 .quad x86_spurious 166
Note: See TracChangeset
for help on using the changeset viewer.