代码搜索:Byte

找到约 10,000 项符合「Byte」的源代码

代码结果 10,000
www.eeworm.com/read/283498/9016943

asm barrier.asm

; BARRIER.ASM ; ; This sample program demonstrates how to use the Standard Library's ; semaphore objects to synchronize several processes at a barrier. ; This program is similar to the MULTIDOS.AS
www.eeworm.com/read/283498/9016948

asm multi.asm

; Simple program to demonstrate the use of multitasking. .xlist include stdlib.a includelib stdlib.lib .list dseg segment para public 'data' ChildPID word 0 BackGndCnt word
www.eeworm.com/read/283498/9016950

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/283498/9016951

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/283498/9016953

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/283498/9016956

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/283498/9016957

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/283498/9016959

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/283498/9016986

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/283498/9017020

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