News:

MASM32 SDK Description, downloads and other helpful links
MASM32.com New Forum Link
masmforum WebSite

1394bus.inc

Started by Jimg, October 10, 2009, 02:46:03 PM

Previous topic - Next topic

Jimg

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

hutch--

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
Download site for MASM32      New MASM Forum
https://masm32.com          https://masm32.com/board/index.php

Jimg

Right.  Just brought it up for the next masm32 release.