namecleanpage55,132title'CLEAN --- Filter text file';; CLEAN --- a utility to filter text files.; This program removes all control codes except; for line feeds, carriage returns, and form; feeds, strips off the high bit of all characters,;...
cseg segment assume cs:cseg, ds:cseg, ss:cseg org 100h .386start: mov ax, 13h int 10h mov dx, 3c8h xor al, al out dx, al inc dx mov cx, 256 xor al, allopp: out dx, al out dx, al out dx, al inc al dec cx jnz lopp mov ax, 0a000h mov es, ax fi...
title MSDOS 2.00 Function Library for Lattice Csubttl -;;;;FUNCTION:Sets and returns switch char-;;acter and device availability.;;;;;;CALL:;;;;ret= _charop(al,dl);;int ret;DL return value, ;;int al;charoper function;;int dl;charoper data;;...
...
.model small; It's a flaw of mine … I really like this model; I know I should do a .com with the tiny model.. ; but I just love the small :.stack 100h; Plenty stack ;.386.data info db 30 dup (0)right db 'Right CD$'wrong db 'Wrong CD$'noms...
PAGE ,132 T99vLE CALCCGROUP GROUP CODESEGCODESEG SEGMENT PARA PUBLIC 'CODE' ASSUME CS:CGROUP,DS:CGROUP,ES:CGROUP PUBLIC CALC ORG 100HCALC PROC FAR JMP START;---------------------------------------------------------------------;; ;; DATA ARE...
T99vLE BRK2 -- Break Handling Utilities ModuleTRUE EQU 01H ;boolean trueFALSE EQU 00H ;boolean falseBREAKINT EQU 23H ;dos control-break intrptGETVECTOR EQU 35H ;dos get vector functionSETVECTOR EQU 25H ;dos set vector functionDOS_FUNCTION E...
...
extrn$$main:farcsegsegment para public 'code'; This program is used to set the PSP address for a compiled BASIC program.; The PSP segment is saved at 0:4F2H.; It can also be used to limit the maximum memory available to a compiled; BASIC pr...
;BASLOAD.ASM 07/09/84 - Dkeels;----------------------------------------------------------------------------;This program provides BASIC programs with access to the program loader (LOAD) ;by passing parameters via the system parameter area (...
大家都知道汇编有byte,word,dword,fword,tword等等类型,可是为什么常说...