The MASM Forum

64 bit assembler => UASM Assembler Development => Topic started by: TouEnMasm on December 11, 2020, 08:57:20 PM

Title: compiling Jwasm UASM with Visual studio 2019
Post by: TouEnMasm on December 11, 2020, 08:57:20 PM
Hello,
I try to compile various source of Jwasm  and Uasm.
There is various errors who are generarated and not too much hard to correct.
One in particular put me on the trouble and is generated by the isspace on a comment ( comment or ;)
The error is a debug assertion failed given by the isspace function   
Any experiment on this ?.
Title: Re: compiling Jwasm UASM with Visual studio 2019
Post by: TimoVJL on December 11, 2020, 09:56:34 PM
isspace is just a macro.
ucrt might have a low level  function for it.
EDIT: ucrtbase have a function for it.
Title: Re: compiling Jwasm UASM with Visual studio 2019
Post by: morgot on December 12, 2020, 12:20:02 AM
You can use Pelles C and UASM (Timo make some tools...)
Title: Re: compiling Jwasm UASM with Visual studio 2019
Post by: TimoVJL on December 12, 2020, 12:55:53 AM
MS Visual C++ is good for UAsm, i just wanted sources to be in C and be compilable with several compilers.
Even i made suggestions of changes for Pelles C, UAsm should be in current C format, not in Microsoft own C++ format.
Title: Re: compiling Jwasm UASM with Visual studio 2019
Post by: habran on December 12, 2020, 10:37:24 PM
isspace() has problems to handle some characters
I was using before character "¦''  in .for() loop which is 0xA6, and isspace() was stumbling on it
Title: Re: compiling Jwasm UASM with Visual studio 2019
Post by: nidud on December 13, 2020, 01:05:42 AM
deleted
Title: Re: compiling Jwasm UASM with Visual studio 2019
Post by: TouEnMasm on December 13, 2020, 05:34:27 AM

Found the problem

c proto   // _Check_return_ _CRT_JIT_INTRINSIC _ACRTIMP int __cdecl isspace(_In_ int _C);  // _C is int = DWORD

here what wait the function
static void StartComment( const char *p )                                                                 <<< passed a char
/***************************************/
{
    while ( zisspace( *p ) ) p++;
    if ( *p == NULLC ) {
        EmitError( COMMENT_DELIMITER_EXPECTED );
        return;
    }
    ModuleInfo.inside_comment = *p++;
    if( strchr( p, ModuleInfo.inside_comment ) )
        ModuleInfo.inside_comment = NULLC;
    return;
}

so i have replace isspace par zisspace  following what say msdn of the function

Quote
int __cdecl zisspace(_In_ char _C)
{
    int result=0;
    if (_C == 0x0D | _C == 0x20 | _C == 0x09)
        result = 1;
    return result;
}


+ corrections of local non initialised to 0
  :eusa_dance: Now I have a JWASM 2.13 builded by myself with visual studio 2019