root/ascommon/equ8.hpp

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. strcmp

// $Log: equ8.hpp,v $
// Revision 1.2  2011/03/25 21:47:31  doug
// *** empty log message ***
//
// Revision 1.1  2011/03/25 07:19:17  doug
// Initial revision
//

char dir_equ8[] = "$Id: equ8.hpp,v 1.2 2011/03/25 21:47:31 doug Exp doug $";

// Copyright(c)2011 Douglas W. Goodall, United States.
        
        if(0 == strcmp(strupr(g_szOpcode),"EQU8")) {
                fprintf(g_flog,"Processing EQU8 directive\n");
                if(0 != strlen(g_szParms)) {
                        g_iLineType = TYPE_DIR;
                        g_pCSymbols->add(g_szLabel,
                                   TYPE_U8,
                                   (unsigned char)(resolvep8(g_szParms)&0xff));
                        g_bU8 = TRUE;
                        g_iErrorNo ^= ERROR_UNKOP;
                } 
        }

/* [<][>][^][v][top][bottom][index][help] */