You are not logged in.
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
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
Nice, people are getting to FASM with a C Compiler!
BTW, Happy New Year!
Offline
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
macc.exe
Offline
Thats pretty intresting, i'll check it out. Thanks
Offline
Linux Makefile :
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
Pages: 1