Changeset 97b64c9 in mainline for arch/ia32/src/asm.S
- Timestamp:
- 2006-03-15T12:29:52Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f8973c00
- Parents:
- 8965838e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/asm.S
r8965838e r97b64c9 81 81 push %eax 82 82 83 # Test if this is interrupt with error word or not 84 movl $(1<<\i), %eax 83 /* 84 * Test if this is interrupt with error word or not. 85 * Be careful about width of the shift. 86 */ 87 .iflt \i-32 88 movl $(1<<\i), %eax 89 .else 90 movl $0, %eax 91 .endif 85 92 andl $ERROR_WORD_INTERRUPT_LIST,%eax 86 93
Note:
See TracChangeset
for help on using the changeset viewer.