# M68000 C Cross-Compiler # ======================= # # - Running the compiler # At the command prompt simply use the command: # # > m68k-coff-gcc -S -O{1,2,3} filename.c # # The -S option indicates to compile to assembly and will output # "filename.s" # # The -O{1,2,3} option indicates the optimization level of the compiler # -O1 is the lowest level of code optimization (smaller/faster assembly # programs). -O3 is the highest level of code optimization. # # - Example # # > m68k-coff_gcc -S -O2 tutorial.c #