代码搜索:MOV模块
找到约 10,000 项符合「MOV模块」的源代码
代码结果 10,000
www.eeworm.com/read/119473/14829526
asm latency.asm
; This program measures the latency of an INT 08 ISR.
; It works by reading the timer chip immediately upon entering
; the INT 08 ISR By averaging this value for some number of
; executions, we ca
www.eeworm.com/read/119473/14829527
asm latency2.asm
; This program measures the latency of an INT 01ch ISR.
; It works by reading the timer chip immediately upon entering
; the INT 01ch ISR By averaging this value for some number of
; executions, w
www.eeworm.com/read/119473/14829554
asm transmit.asm
; TRANSMIT.ASM
;
; This program is the transmitter portion of the programs that transmit files
; across a Laplink compatible parallel cable.
;
; This program assumes that the user want to use LPT
www.eeworm.com/read/119473/14829589
asm pgm6_5.asm
; Bit Operations and SETcc Instructions
.386 ;So we can use extended registers
option segment:use16 ; and addressing modes.
dseg segment para public 'data'
; Some type definitions for
www.eeworm.com/read/119473/14829603
ibm ex6_6.ibm
; IBML Sample program #6.
; This code compares the execution
; time of the MUL instruction vs.
; various shift and add equivalents.
#repetitions 480000
#unravel 1
; The following check check
www.eeworm.com/read/119473/14829604
asm pgm6_4.asm
; Shift and Rotate Instructions
.386 ;So we can use extended registers
option segment:use16 ; and addressing modes.
dseg segment para public 'data'
; The following structure holds the
www.eeworm.com/read/119473/14829605
asm proj6_1.asm
; PROJ6_1.ASM
; Project #1: Write a short "GetLine routine that reads up to 80 characters
; from the user and places the characters in successive locations in a buffer
; in the data segment. You c
www.eeworm.com/read/119473/14829612
asm index.asm
; INDEX- computes the offset of one string within another.
;
; On entry:
;
; ES:DI- Points at the test string that INDEX will search for
; in the source string.
; DS:SI- Points at the sour
www.eeworm.com/read/119473/14829616
asm ts.asm
;****************************************************************************
;
; TS: A "Text Statistics" package which demonstrates the use of the UCR
; Standard Library Package.
;
; Note: The
www.eeworm.com/read/119473/14829619
asm delete.asm
; DELETE - removes some substring from a string.
;
; On entry:
;
; DS:SI Points at the source string.
; DX Index into the string of the start of the substring
; to delete.
; CX Length o