The MASM Forum Archive 2004 to 2012

Project Support Forums => The GeneSys Development System => User Contributed Code => Topic started by: Vortex on December 20, 2008, 10:43:10 AM

Title: Uppercase\lowercase convertions
Post by: Vortex on December 20, 2008, 10:43:10 AM
Here are two functions converting strings to uppercase and lowercase.


.386
.model flat, stdcall
option casemap:none

include     \GeneSys\include\windows.inc
include     \GeneSys\include\kernel32.inc
include     \GeneSys\include\GeneSys.inc

includelib  \GeneSys\lib\kernel32.lib
includelib  \GeneSys\lib\GeneSys.lib

uppercase   PROTO :DWORD
lowercase   PROTO :DWORD

.data

str1        db 'string converted to uppercase.',13,10,0
str2        db 'THIS STRING CONVERTED TO LOWERCASE.',0

.code

start:

    invoke  uppercase,ADDR str1
    invoke  ConsoleOut,eax
    invoke  lowercase,ADDR str2
    invoke  ConsoleOut,eax
    invoke  ExitProcess,0

END start

[attachment deleted by admin]
Title: Re: Uppercase\lowercase convertions
Post by: Vortex on December 27, 2008, 12:52:32 PM
Removed the unnecessary forward conditional jump in the lowercase routine.

[attachment deleted by admin]