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
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
Right. Just brought it up for the next masm32 release.