代码搜索:MOV模块

找到约 10,000 项符合「MOV模块」的源代码

代码结果 10,000
www.eeworm.com/read/119473/14829620

asm substr.asm

; Substring function. ; ; HLL form: ; ;procedure substring(var Src:string; ; Index, Length:integer; ; var Dest:string); ; ; Src- Address of a source string. ; Index- Index into the sour
www.eeworm.com/read/119473/14829624

asm insert.asm

; INSERT- Inserts one string into another. ; ; On entry: ; ; DS:SI Points at the source string to be inserted ; ; ES:DI Points at the destination string into which the source ; string will be i
www.eeworm.com/read/119473/14829625

asm concat.asm

; Concat- Copies the string pointed at by SI to the string ; rointed at by DI and then concatenates the string; ; pointed at by BX to the destination string. ; ; On entry- ; ; DS:SI- Poi
www.eeworm.com/read/119473/14829636

asm iterator.asm

.286 ;For PUSH imm instr. .xlist include stdlib.a includelib stdlib.lib .list ; Some "cute" equates: Iterator textequ endi textequ wp textequ ;
www.eeworm.com/read/119473/14829637

asm ex12_2.asm

; EX12_2.asm ; ; Program to demonstrate the ENTER and LEAVE instructions in Chapter 12. ; ; This program simulates the following Pascal code: ; ; program EnterLeave; ; var i:integer; ; ; p
www.eeworm.com/read/119473/14829755

asm ex9_2.asm

dseg segment para public 'data' I word 0 J word 0 K word 0 dseg ends cseg segment para public 'code' assume cs:cseg, ds:dseg ; This program is useful for debugging purpose
www.eeworm.com/read/119473/14829764

asm shardmem.asm

; SHARDMEM.ASM ; ; This TSR sets aside a 64K shared memory region for other processes to use. ; ; Usage: ; ; SHARDMEM - Loads resident portion and activates ; shared memory capabilities.
www.eeworm.com/read/119473/14829774

asm amaze.asm

; AMAZE.ASM ; ; A maze generation/solution program. ; ; This program generates an 80x25 maze and directly draws the maze on the ; video display. It demonstrates the use of coroutines within a pr
www.eeworm.com/read/119473/14829782

asm pgm11_1.asm

; Pgm11_1.asm ; ; Screen Aids. ; ; This program provides some useful screen manipulation routines ; that let you do things like position the cursor, save and restore ; the contents of the displa
www.eeworm.com/read/119473/14829785

asm ex13_1a.asm

; EX13_1a.asm ; ; This program copies one file to another using character at a time I/O. ; It is easy to write, read, and understand, but character at a time I/O ; is quite slow. Run this program