Changeset 8844e70 in mainline for kernel/arch/ia32/src/delay.S
- Timestamp:
- 2016-04-11T17:03:47Z (9 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3b0f1b9a
- Parents:
- 3a34852
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/delay.S
r3a34852 r8844e70 31 31 # 32 32 33 #include <abi/asmtool.h> 34 33 35 .text 34 36 35 .global asm_delay_loop 36 .global asm_fake_loop 37 38 asm_delay_loop: 37 FUNCTION_BEGIN(asm_delay_loop) 39 38 movl 4(%esp),%ecx # move argument to %ecx 40 39 0: lahf … … 42 41 jnz 0b 43 42 ret 43 FUNCTION_END(asm_delay_loop) 44 44 45 asm_fake_loop: 45 FUNCTION_BEGIN(asm_fake_loop) 46 46 movl 4(%esp),%ecx # move argument to %ecx 47 47 0: lahf … … 49 49 jz 0b 50 50 ret 51 FUNCTION_END(asm_fake_loop) 52
Note:
See TracChangeset
for help on using the changeset viewer.