The MASM Forum Archive 2004 to 2012

Project Support Forums => MASM32 => Topic started by: Jimg on October 10, 2009, 02:46:03 PM

Title: 1394bus.inc
Post by: Jimg on October 10, 2009, 02:46:03 PM
when I try to assemble a program including 1394bus.inc, I get the errors:

F:\masm32\INCLUDE\1394bus.inc(5) : error A2048: nondigit in number
F:\masm32\INCLUDE\1394bus.inc(6) : error A2048: nondigit in number
F:\masm32\INCLUDE\1394bus.inc(10) : fatal error A1010: unmatched block nesting
Title: Re: 1394bus.inc
Post by: hutch-- on October 10, 2009, 02:52:11 PM
Jim,

This is the sum total of that include file.


  ; ===========================================
  ; 1394bus.inc copyright MASM32 1998 - 2005
  ; ===========================================

IFNDEF 1394BUS_INC
1394BUS_INC equ <1>

Bus1394RegisterPortDriver PROTO :DWORD

ELSE
echo -----------------------------------------
echo WARNING Duplicate include file 1394bus.inc
echo -----------------------------------------
ENDIF


Just try a mod on the file as it may be squarking on the equate having a leading number.


  ; ===========================================
  ; 1394bus.inc copyright MASM32 1998 - 2005
  ; ===========================================

IFNDEF x1394BUS_INC
x1394BUS_INC equ <1>

Bus1394RegisterPortDriver PROTO :DWORD

ELSE
echo -----------------------------------------
echo WARNING Duplicate include file 1394bus.inc
echo -----------------------------------------
ENDIF
Title: Re: 1394bus.inc
Post by: Jimg on October 10, 2009, 03:16:47 PM
Right.  Just brought it up for the next masm32 release.