Page 1 of 1

Fasm IDE

Posted: Fri Feb 01, 2008 4:37 pm
by bloodhound23
I really don't wan't to install wine as I hate windows. Is there a IDE for fasm that runs on linux?

Posted: Fri Feb 01, 2008 10:29 pm
by Zacariaz
i would be surprised if the sources were not avalible. I don't think it would be to much trouble to compile the IDE curently use under windows for linux, but maybe im terible wrong. Anywaym i wouldnt know how to do it.

when that is said i really dont understand the need for an IDE.

Posted: Fri Feb 01, 2008 10:36 pm
by Brynet-Inc
If the IDE was written in Assembler, it's probably using the Windows API.

How exactly would he "compile" it for Linux Zacariaz? :lol:

Posted: Sat Feb 02, 2008 7:20 am
by Zacariaz
when i wrote it i was not completely sober :oops: but asuming the code is portable, why not?

Posted: Sat Feb 02, 2008 7:52 am
by lukem95
just because it is an IDE for fasm, doesn't mean its written in asm...

although i know of very few GUI's for windows that have been written using a portable library.

Posted: Thu Feb 07, 2008 6:58 am
by zaleschiemilgabriel
Actually, it IS written in ASM, FASM to be more precise. The Windows GUI for FASM is called FASMW and it is self-compilable and doesn't use any portable libraries. However, the interface is pretty simple and the number of Windows API is kept to a minimum. I think anyone who knows Linux programming AND Windows programming can easily port it, or the syntax highlighting can be added to an existing Linux editor like Emacs.

Posted: Thu Feb 07, 2008 7:24 am
by bloodhound23
In case you haven't noticed assembly is a lot more complex than C much harder to port, just look at the fasmw code.

Posted: Thu Feb 07, 2008 8:12 am
by zaleschiemilgabriel
FASMW happens to be my favorite IDE, and I HAVE looked at the code. It only looks scary because it's written in assembly. The fact is that anyone who knows how to write "Hello world" in colored text in a Linux window can create this interface.