home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng)
/
ProfitPress-MegaCDROM2.B6I
/
PROG
/
ASSEMBLY
/
STDLIB.ZIP
/
LWRTBL.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Assembly Source File
|
1990-06-01
|
417 b
|
35 lines
stdlib segment para public 'slcode'
assume cs:stdlib
;
;
;
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
;
stdlib ends
end