home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Stars of Shareware: Programmierung
/
SOURCE.mdf
/
programm
/
msdos
/
asm
/
ucrstdlb
/
lwrtbl.asm
< prev
next >
Wrap
Assembly Source File
|
1991-10-12
|
399b
|
34 lines
stdData segment para public 'sldata'
;
;
;
public $lwrtbl
;
; Output all chars up to the upper case letters here.
;
$lwrtbl equ this byte
i = 0
rept 'A'
db i
i = i + 1
endm
;
; Output uc for lc here
;
i = 'a'
rept 26
db i
i = i+1
endm
;
; Output all other characters here.
;
i = 'Z'+1
rept 255-'Z'
db i
i = i+1
endm
;
stdData ends
end