Author Topic: NASM chookes on this macro, why?  (Read 8289 times)

nobody

  • Guest
NASM chookes on this macro, why?
« on: March 17, 2006, 12:59:00 PM »
How do I make a calltable, the easier way in NASM, similar to this ?

Window.MessagesJumpTable:
 0 0                                            ;1
 Window.WMDestroy                               ;2
 0 0                                            ;4
 Window.WMSize                                  ;5
 Window.WMActivate                              ;6
 Window.WMSetFocus                              ;7
 Window.WMKillFocus                             ;8
 0 0 0 0 0 0                                    ;14


.........


]

nobody

  • Guest
Re: NASM chookes on this macro, why?
« Reply #1 on: March 17, 2006, 12:59:51 PM »
How do I make a calltable, the easier way in NASM, similar to this ?

Window.MessagesJumpTable:
0 0 ;1
Window.WMDestroy ;2
0 0 ;4
Window.WMSize ;5
Window.WMActivate ;6
Window.WMSetFocus ;7
Window.WMKillFocus ;8
0 0 0 0 0 0 ;14


.........


]

nobody

  • Guest
Re: NASM chookes on this macro, why?
« Reply #2 on: March 18, 2006, 03:54:50 PM »
So where's that macro NASM
is supposedly choking on?