You are not logged in.


#1 2005-12-28 00:43:31

Buddy
Guest

Any C/C++ compiler that uses fasm as a backend?

Hello, im trying to develop a kernel in C and ASM, although GCC's inline assembler (GAS) is not the best, I know how to make gcc accept .intel_syntax its just not the best. Is there any way to make gcc use fasm? or is there any compiler thats (good) and uses fasm for its inline assembley?

any help would be nice smile

 

#2 2005-12-28 15:12:04

Dex4u
Active member
Registered: 2005-02-19
Posts: 132
PM

Re: Any C/C++ compiler that uses fasm as a backend?

I came a cross this, but have no more info on it use's etc, as i do not use C compilers.
http://freshmeat.net/projects/simplec/? … _id=205235

Offline

 

#3 2006-01-11 00:25:46

smiddy
Active member
Registered: 2005-02-15
Posts: 183
PM

Re: Any C/C++ compiler that uses fasm as a backend?

Nice, people are getting to FASM with a C Compiler!

BTW, Happy New Year!


- [color=red]s[/color][color=blue]m[/color][color=red]i[/color][color=blue]d[/color][color=red]d[/color][color=blue]y[/color]

Offline

 

#4 2006-01-13 09:02:08

bubach
Administrator
From: Trollhättan, Sweden
Registered: 2005-02-15
Posts: 367
PM  Website

Re: Any C/C++ compiler that uses fasm as a backend?

hmm.. "crc" made it? cool.

Happy new year! I'm sorry that i haven't been very active or done anything on BOS lately.
I was planning to release the new version sometime around xmas or new years eve, but
i got busy making a "big" homepage for some extra $... :S

Offline

 

#5 2006-01-13 18:47:39

Dex4u
Active member
Registered: 2005-02-19
Posts: 132
PM

Re: Any C/C++ compiler that uses fasm as a backend?

bubach wrote:

i got busy making a "big" homepage for some extra $... :S

Cool  smile .

Offline

 

#6 2006-05-30 20:07:45

fasmiq
Member
Registered: 2006-05-29
Posts: 15
PM

Re: Any C/C++ compiler that uses fasm as a backend?

Offline

 

#7 2006-05-31 21:43:24

bubach
Administrator
From: Trollhättan, Sweden
Registered: 2005-02-15
Posts: 367
PM  Website

Re: Any C/C++ compiler that uses fasm as a backend?

Thats pretty intresting, i'll check it out. Thanks

Offline

 

#8 2006-10-21 17:29:35

fasmiq
Member
Registered: 2006-05-29
Posts: 15
PM

Re: Any C/C++ compiler that uses fasm as a backend?

Linux Makefile :

Code:

CC=./macc.exe

all: func.asm

func.asm: func.c 
    wine $(CC) func
    cat func.c func.a > func.asm
    rm -f func.a

clean:
    rm -f func.asm func.a

Offline

 

 

Board footer

Powered by PunBB
BOS homepage © Copyright 2005 Christoffer Bubach
Strict XHTML and valid CSS.