clock.s

来自「标准c库代码,可以应用于各个系统提供了大量的基本函数」· S 代码 · 共 46 行

S
46
字号
/* This is file CLOCK.S *//*** Copyright (C) 1993 DJ Delorie, 24 Kirsten Ave, Rochester NH 03867-2954**** This file is distributed under the terms listed in the document** "copying.dj", available from DJ Delorie at the address above.** A copy of "copying.dj" should accompany this file; if not, a copy** should be available from where this file was obtained.  This file** may not be distributed without a verbatim copy of "copying.dj".**** This file is distributed WITHOUT ANY WARRANTY; without even the implied** warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.**** Modified by C. Sandmann for DPMI support (sandmann@clio.rice.edu)*/	.dataclock_init:	.long	0	.text	.globl _clock_clock:	call	_rawclock	imull	$54931,%eax,%eax	ret		.align  4,0x90	.globl	_rawclock_rawclock:	movzwl	__core_select,%eax	testl	%eax,%eax	je	old_clock	/* Image run with pre-DPMI extender */	movw	%ax,%gs	movl	%gs:0x46c(,1),%eax	jmp	check_inittedold_clock:	movl	0xe000046c,%eaxcheck_initted:	cmp	$0,clock_init	jne	clock_initted	movl	%eax,clock_initclock_initted:	subl	clock_init,%eax	ret

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?