flat assembler
Message board for the users of flat assembler.

Index > Unix > 64-bit FASM for 64-bit OpenBSD?

Author
Thread Post new topic Reply to topic
dfeustel



Joined: 19 Aug 2007
Posts: 2
dfeustel 19 Aug 2007, 19:00
I cannot link the 32-bit fasm object module because
I am running 64-bit OpenBSD. Is there a 64-bit
fasm object module available for me to link with?
Post 19 Aug 2007, 19:00
View user's profile Send private message Reply with quote
Chewy509



Joined: 19 Jun 2003
Posts: 297
Location: Bris-vegas, Australia
Chewy509 19 Aug 2007, 23:28
Sorry no 64bit version of fasm.

For the *BSDs, you need to install the base 32bit libraries (available through the ports/packages) and enable use of 32bit executables, and then manually link the 32bit fasm.o to the base libraries... (There are a few posts in here related to FreeBSD and the same problem).

To manually link on FreeBSD 6.1 AMD64 I use:

Code:
gcc /usr/lib32/crt1.o /usr/lib32/crti.o /usr/lib32/crtbegin.o /usr/lib32/crtend.o /usr/lib32/crtn.o -L/usr/lib32 fasm.o -o fasm    


then copy "fasm" to /usr/local/bin

Hope this helps
Post 19 Aug 2007, 23:28
View user's profile Send private message Visit poster's website Reply with quote
dfeustel



Joined: 19 Aug 2007
Posts: 2
dfeustel 20 Aug 2007, 00:03
Unfortunately, there is no 32-bit execution mode in 64-bit OpenBSD.
Similarly, there is no 64-bit execution mode in 32-bit OpenBSD.
(There also is no 64-bit Linux emulation mode)
But I am making progress in assembling a 64-bit version of fasm using
yasm. I am using Phil Budne's CSnobol4 (also running in 64-bit mode)
to automate the conversion of fasm syntax to yasm syntax for the port.
The conversion so far is pretty straight forward.
Post 20 Aug 2007, 00:03
View user's profile Send private message Reply with quote
LocoDelAssembly
Your code has a bug


Joined: 06 May 2005
Posts: 4624
Location: Argentina
LocoDelAssembly 20 Aug 2007, 00:39
dfeustel, but be carefull about the conversion. fasm uses 32-bit pointers so OpenBSD should always assign memory on addresses below to 2^32 to work properly (or this converting utility must have some magic feature to detect memory references and change the instructions to use 64-bit registers).
Post 20 Aug 2007, 00:39
View user's profile Send private message Reply with quote
Chewy509



Joined: 19 Jun 2003
Posts: 297
Location: Bris-vegas, Australia
Chewy509 20 Aug 2007, 02:03
dfeustel wrote:
Unfortunately, there is no 32-bit execution mode in 64-bit OpenBSD.

To be honest, I didn't realise that. Sad Sorry. Seems rather strange though. I guess the OpenBSD developers have their reasons.

As LocoDelAssembly mentioned, be very careful with conversion utilities...

Not to start a flame war or anything, any reason why OpenBSD over FreeBSD? If you're stuck on OpenBSD, then NASM (the latest beta's) and YASM (or gas) are your only real choices... (Even though I wish you luck with converting fasm to be 64bit).
Post 20 Aug 2007, 02:03
View user's profile Send private message Visit poster's website Reply with quote
Raedwulf



Joined: 13 Jul 2005
Posts: 375
Location: United Kingdom
Raedwulf 07 Mar 2008, 13:07
Any joy here?

_________________
Raedwulf
Post 07 Mar 2008, 13:07
View user's profile Send private message MSN Messenger Reply with quote
Remy Vincent



Joined: 16 Sep 2005
Posts: 155
Location: France
Remy Vincent 07 Apr 2008, 22:48
I have never used a 64 bit processor...

But does any one know if it is possible to run WINDOWS or LINUX with a 64 bit processor, without compiling the source, JUST interpreting the whole source code?

IF 64 bit processors are not fast enough, we will need to wait 128 bits processors, or even 256 bits processors.

This step if having a compiled version of windows sucks... same, having to use a compiled version of linux sucks too... how long now to wait until the compilation becomes totaly optionnal, so we can have windows and linux with the sources being interpreted in a debugging window .
Post 07 Apr 2008, 22:48
View user's profile Send private message Visit poster's website Reply with quote
sakeniwefu



Joined: 23 Mar 2008
Posts: 29
sakeniwefu 09 Apr 2008, 01:31
fasm works under Linux or Windows 32 emulation in Bochs and QEMU. If DosBox would support unrealmode, it would be more practical though. Where's the FASM lobby? Confused
However fasm speed would be severely affected in those conditions.
Post 09 Apr 2008, 01:31
View user's profile Send private message Reply with quote
sakeniwefu



Joined: 23 Mar 2008
Posts: 29
sakeniwefu 12 Apr 2008, 13:41
Oh, FASM actually works undes DosBox. You just need to use a 32-bit DPMI extender from FreeDOS, for example. It takes 1.8 seconds to assemble itself in my Pentium 4. If you don't care about assembler speed it will do its job. And using DosBox you can access your generated binary directly from the 64-bit host OS.
Post 12 Apr 2008, 13:41
View user's profile Send private message Reply with quote
rugxulo



Joined: 09 Aug 2005
Posts: 2341
Location: Usono (aka, USA)
rugxulo 14 Apr 2008, 23:21
DOSBox relies on 33 external libraries (Linux version?), so they refuse to build statically (I asked!). Lots of Linux distros don't update DOSBox, so you're stuck with old, old versions (very annoying). Anyways, you could always use "STUBIT" (from WDOSX) to make an all-in-one Win32 FASM.EXE (cmdline version). It (modified Win32 .EXE) seems to reassemble itself okay here (DOSBox 0.72, Pentium 4, 1.6 secs.) without needing external DPMI servers although normal WinXP seems to not like running it:

FATAL: Could not allocate 00000000 bytes local application heap!

Just FYI. :-/
Post 14 Apr 2008, 23:21
View user's profile Send private message Visit poster's website Reply with quote
dogman



Joined: 18 Jul 2013
Posts: 114
dogman 23 Jul 2013, 14:00
Why can't one of you brain surgeons just port fasm to x64? Razz
Post 23 Jul 2013, 14:00
View user's profile Send private message 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.