Changeset d6dcdd2e in mainline for arch/ia32/src/delay.s
- Timestamp:
- 2005-09-13T21:20:56Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 01e48c1
- Parents:
- b1cf98c
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/delay.s
rb1cf98c rd6dcdd2e 37 37 38 38 asm_delay_loop: 39 pushl %ecx 40 movl 8(%esp),%ecx # move argument to %ecx 39 movl 4(%esp),%ecx # move argument to %ecx 41 40 0: lahf 42 41 dec %ecx 43 42 jnz 0b 44 popl %ecx45 43 ret 46 44 47 45 asm_fake_loop: 48 pushl %ecx 49 movl 8(%esp),%ecx # move argument to %ecx 46 movl 4(%esp),%ecx # move argument to %ecx 50 47 0: lahf 51 48 dec %ecx 52 49 jz 0b 53 popl %ecx54 50 ret
Note:
See TracChangeset
for help on using the changeset viewer.