This is the specs of the compiler:
gcc-3.0 3.0.2
nasm 0.98

and edited the makefile.unix this way:

### for normal optimization, full warnings
#CFLAGS    = -O -Wall
### for common optimizations, full warnings except unused vars
# CFLAGS    = -O2 -Wall -Wno-unused
### this should work with all compilers 
# CFLAGS    =
### to get full optimization under gcc/x Intel based OS's..
 CFLAGS    = -O3 -march=i686 -Wall -Wno-unused -funroll-loops \
#  -fstrength-reduce -fomit-frame-pointer -ffast-math -malign-functions=2 \
#  -malign-jumps=2 -malign-loops=2
### for Linux/PowerPC use following opts

but when it comes to compile z80 i get a lot of error about asm (add) and
other function, what im doing wrong??
My processor is a PII 350 , what march do i have to use because with
march=i686 y get the errors but with march=i486 compile fine but the xmame
has the same speed that common optimizations.
TIA

_______________________________________________
Xmame mailing list
[EMAIL PROTECTED]
http://toybox.twisted.org.uk/mailman/listinfo/xmame

Reply via email to