代码搜索:byte
找到约 10,000 项符合「byte」的源代码
代码结果 10,000
www.eeworm.com/read/119473/14829768
asm shmapp4.asm
; SHMAPP4.ASM
;
; This is a shared memory application that uses the dynamic shared memory
; TSR (SHMALLOC.ASM). This program assumes the user has already run the
; SHMAPP3 program to insert a str
www.eeworm.com/read/119473/14829769
asm shmapp3.asm
; SHMAPP3.ASM
;
; This is a shared memory application that uses the dynamic shared memory
; TSR (SHMALLOC.ASM). This program inputs a string from the user and
; passes that string to SHMAPP4.ASM
www.eeworm.com/read/119473/14829770
asm multidos.asm
; MULTIDOS.ASM
;
; This program demonstrates how to use semaphores to protect DOS calls.
.xlist
include stdlib.a
includelib stdlib.lib
.list
dseg segment para public 'data'
D
www.eeworm.com/read/119473/14829771
asm shmapp2.asm
; SHMAPP2.ASM
;
; This is a shared memory application that uses the static shared memory
; TSR (SHARDMEM.ASM). This program assumes the user has already run the
; SHMAPP1 program to insert a stri
www.eeworm.com/read/119473/14829772
asm int24.asm
; Sample INT 24h critical error handler.
;
; This code demonstrates a sample critical error handler.
; It patches into INT 24h and displays an appropriate error
; message and asks the user if they
www.eeworm.com/read/119473/14829773
asm shmapp1.asm
; SHMAPP1.ASM
;
; This is a shared memory application that uses the static shared memory
; TSR (SHARDMEM.ASM). This program inputs a string from the user and
; passes that string to SHMAPP2.ASM t
www.eeworm.com/read/119473/14829787
asm fileio.asm
; FILEIO
;
; This program copies the input file to the output file and adds line
; numbers while it is copying the file.
include stdlib.a
includelib stdlib.lib
dseg segment para publ
www.eeworm.com/read/119473/14829792
asm ex13_1b.asm
; EX13_1b.asm
;
; This program copies one file to another using blocked I/O.
; Run this program and time its execution. Compare the execution time of
; this program against that of the character
www.eeworm.com/read/119473/14829793
asm lexer.asm
; Lexer.asm
;
; This program displays the individual components on a DOS command line.
include stdlib.a
includelib stdlib.lib
cseg segment byte public 'CODE'
assume cs:cseg, ds:dse
www.eeworm.com/read/119473/14829794
asm hexdump.asm
include stdlib.a
includelib stdlib.lib
cseg segment byte public 'CODE'
assume cs:cseg, ds:dseg, es:dseg, ss:sseg
; Note CR and LF are already defined in STDLIB.A
tab equ 09h
Mai