flat assembler
Message board for the users of flat assembler.

Index > Main > Times Using Fasm

Author
Thread Post new topic Reply to topic
nathanpc



Joined: 23 Aug 2009
Posts: 40
Location: Brazil
nathanpc 23 Jun 2010, 18:08
Hello,
I have a Nasm program that I'm converting to Fasm syntax, but I have something like this:
Code:
buffer times 64 db 0    

But when I compile it, I got this:
Code:
cn2.asm [1238]:
buffer times 64 db 0
error: illegal instruction.    

What I should do?

Best Regards,
Nathan Paulino Campos

_________________
Developer: C++, Java, C/C++, Java ME, Java EE, Pascal, Assembly(8086, 6502, z80, ARM and MIPS), Delphi, Visual Basic, Pascal, Ruby and Perl
Post 23 Jun 2010, 18:08
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger ICQ Number Reply with quote
revolution
When all else fails, read the source


Joined: 24 Aug 2004
Posts: 20335
Location: In your JS exploiting you and your system
revolution 23 Jun 2010, 18:11
Code:
buffer: times 64 db 0    
Post 23 Jun 2010, 18:11
View user's profile Send private message Visit poster's website Reply with quote
nathanpc



Joined: 23 Aug 2009
Posts: 40
Location: Brazil
nathanpc 23 Jun 2010, 18:15
Thanks very much! Smile
Post 23 Jun 2010, 18:15
View user's profile Send private message Send e-mail Visit poster's website AIM Address Yahoo Messenger MSN Messenger ICQ Number Reply with quote
revolution
When all else fails, read the source


Joined: 24 Aug 2004
Posts: 20335
Location: In your JS exploiting you and your system
revolution 23 Jun 2010, 18:17
If you need the buffer sized you can do this:
Code:
buffer db 64 dup 0    
or this:
Code:
label buffer byte
times 64 db 0    
Post 23 Jun 2010, 18:17
View user's profile Send private message Visit poster's website Reply with quote
Display posts from previous:
Post new topic Reply to topic

Jump to:  


< Last Thread | Next Thread >
Forum Rules:
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


Copyright © 1999-2024, Tomasz Grysztar. Also on GitHub, YouTube.

Website powered by rwasa.